EXC_BAD_ACCESS from sgxTextureGetImageRowBytes

Anyone seen this error before? I can't tell if my iPad 4 is dying or not; other apps work fine, but my app (which is now a near clone of Apple's GLKit example for setting up an OpenGL ES 2.0 iOS app) has started, frequently, crashing.
My application was running fine yesterday, almost a hundred source files (nearly a finished iOS game). Then it starts crashing, and after reverting back to previous revisions, it still kept crashing, and now I've reverted all the way back to its origins (a copy&paste of Apple's source examples), and it crashes with just this:
Code:
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect
    glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
StackTrace:
#0      0x32979c20 in sgxTextureGetImageRowBytes(GLDTextureRec*, unsigned int, unsigned int) ()
#1      0x32979bd2 in CalculateChunkPlaneSizes(GLDTextureRec*, int, unsigned int*, unsigned int*, unsigned int*, unsigned int*) ()
#2      0x3297c336 in sgxConfigureTexturePrivate(GLDTextureRec*) ()
#3      0x3297af88 in glrUpdateTexture ()
#4      0x341a56c0 in gldLoadFramebuffer ()
#5      0x38387bd4 in gleUpdateDrawFramebufferState ()
#6      0x382ffa60 in glClear_Exec ()
#7      0x001221ea in clear ()

Yes. I have been getting it with Excel 2010 and now with Word. Both programs are on Microsoft Office for Mac 2011. I have the 15" Macbook Pro 2.3 GHz Core i7 from mid 2012.
I have been reporting the Error Messages to Microsoft.
I have seen no fix for it on the Net.

Similar Messages

  • EXC_BAD_ACCESS from ExtAudioFileWriteAsync

    I am using audio unit to record our voice. In my callback function I am getting data in AudioBufferList. I have to store this buffer in a file.
    Issue is; When I try to store the buffer in a .caf file, the application is crashing. Below is the code.
    <pre>
    AudioStreamBasicDescription audioFormat;
    audioFormat.mSampleRate = 44100.00;
    audioFormat.mFormatID = kAudioFormatLinearPCM;
    audioFormat.mFormatFlags = kAudioFormatFlagsCanonical;
    audioFormat.mBytesPerPacket = 2;
    audioFormat.mFramesPerPacket = 1;
    audioFormat.mBytesPerFrame = 2;
    audioFormat.mChannelsPerFrame = 1;
    audioFormat.mBitsPerChannel = 16;
    audioFormat.mReserved = 0;
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    if(![[NSFileManager defaultManager] fileExistsAtPath:documentsDirectory])
    [[NSFileManager defaultManager] createDirectoryAtPath:documentsDirectory withIntermediateDirectories:YES attributes:nil error:nil];
    NSString *path = [documentsDirectory stringByAppendingPathComponent:@"audio.caf"];
    if(![[NSFileManager defaultManager] fileExistsAtPath:path])
    NSLog(@"file not exist.");
    NSLog(@"Path : %@", path);
    THIS->url = [NSURL fileURLWithPath:[path retain]];
    err = ExtAudioFileCreateWithURL((CFURLRef)THIS->url, kAudioFileCAFType, &audioFormat, NULL, kAudioFileFlags_EraseFile, &THIS->fOutputAudioFile);
    if(err != noErr){
    printf("create with url: error %d\n", (int)err);
    THIS->state = 2;
    err = ExtAudioFileSetProperty(THIS->fOutputAudioFile, kExtAudioFileProperty_ClientDataFormat, (UInt32)sizeof(audioFormat), &audioFormat);
    if(err != noErr){
    printf("file set property: error %d\n", (int)err);
    err = ExtAudioFileWriteAsync(THIS->fOutputAudioFile, 0, NULL);
    if(err != noErr){
    printf("write async: error %d\n", (int)err);
    return err;
    [pool release];
    err = ExtAudioFileWriteAsync(THIS->fOutputAudioFile, ioData->mNumberBuffers, ioData);
    if(err != noErr){
    printf("file write async: error %d\n", (int)err);
    return err;
    }</pre>
    ERROR:
    <pre>Program received signal: “EXCBADACCESS”.
    #0 0x30d04bb2 in memmove ()
    #1 0x33ba1d1e in AudioRingBuffer::Store ()
    #2 0x33c2269e in ExtAudioFile::WriteFramesAsync ()
    #3 0x33c278c8 in ExtAudioFileWriteAsync ()
    #4 0x00002e74 in PerformThru (inRefCon=0x14d9f0, ioActionFlags=0x2ffe77d4, inTimeStamp=0xa896fc, inBusNumber=0, inNumberFrames=256, ioData=0x14f680) at /Alex/project/ProStudio/TestAudioUnit/Classes/TestAudioUnitAppDelegate.mm:399
    #5 0x33b70896 in AUInputElement::PullInput ()
    #6 0x33b794a0 in AUInputFormatConverter2::InputProc ()
    #7 0x33b5560e in AudioConverterChain::CallInputProc ()
    #8 0x33b5555e in AudioConverterChain::FillBufferFromInputProc ()
    #9 0x33b5537c in BufferedAudioConverter::GetInputBytes ()
    #10 0x33b79390 in CBRConverter::RenderOutput ()
    #11 0x33b5505a in BufferedAudioConverter::FillBuffer ()
    #12 0x33b55362 in BufferedAudioConverter::GetInputBytes ()
    #13 0x33b79390 in CBRConverter::RenderOutput ()
    #14 0x33b5505a in BufferedAudioConverter::FillBuffer ()
    #15 0x33b551ae in AudioConverterChain::RenderOutput ()
    #16 0x33b5505a in BufferedAudioConverter::FillBuffer ()
    #17 0x33b54e2a in AudioConverterFillComplexBuffer ()
    #18 0x33b78f58 in AUConverterBase::RenderBus ()
    #19 0x33c08eea in AURemoteIO::RenderBus ()
    #20 0x33b5666e in AUBase::DoRender ()
    #21 0x33c09698 in AURemoteIO::PerformIO ()
    #22 0x33c09962 in AURIOCallbackReceiver_PerformIO ()
    #23 0x33c02448 in _XPerformIO ()
    #24 0x33b71bea in mshMIGPerform ()
    #25 0x33bd7de0 in MSHMIGDispatchMessage ()
    #26 0x33c0ebae in AURemoteIO::IOThread::Entry ()
    #27 0x33b4a1d8 in CAPThread::Entry ()
    #28 0x30d7d88c in pthreadstart ()
    #29 0x30d72a90 in thread_start ()</pre>
    Please help some one to fix this issue.

    I resolved this problem.
    AudioStreamBasicDescription is wrong. I am setting the ASBD for file creation and also AudioUnit property. Both are different. Thats why it is giving this error.

  • Downloading books from library -error message "Adobe error EXC_BAD_ACCESS".

    When I download books from the library digital editions crashes with this error message "Adobe error EXC_BAD_ACCESS".  Apple support says it's an Adobe issue.  Any idea how to fix?  BTW when I download from KOBO library I do not receive this error.

    When Apple replaced your HD, did they or you, re-install the software that was on your old Drive?
    If you made a clone of your old HD and copied it back, you probably brought back all of your old troubles with it!
    I suggest that you remove CS2 entirely; then run Disk Warrior to repair all of your Dirctories and then do a fresh installation of CS2 from the original DVD.
    Just be sure that you have saved any Actions and other personal Presets somewhere safely before trashing CS2.

  • CIV 5 Wont Open from Steam EXC_BAD_ACCESS(SIGSEGV)

    Please help! Don't know what is causing this
    Process:         Civilization V [345]
    Path:            /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/MacOS/Civilization V
    Identifier:      com.aspyr.civ5xp.steam
    Version:         1.3.1 (112297)
    Code Type:       X86 (Native)
    Parent Process:  launchd [150]
    Date/Time:       2013-08-23 13:13:51.828 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          2466741 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  207 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      0CAB957C-2C17-4FBB-98D2-766EC53F551D
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bda41bf0
    Crashed Thread:  0  MainThrd  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  MainThrd  Dispatch queue: com.apple.main-thread
    0   com.aspyr.civ5xp.steam                  0x007568db lua_getinfo + 177847
    1   com.aspyr.civ5xp.steam                  0x0075603e lua_getinfo + 175642
    2   com.aspyr.civ5xp.steam                  0x0075662a lua_getinfo + 177158
    3   com.aspyr.civ5xp.steam                  0x007567ab lua_getinfo + 177543
    4   com.aspyr.civ5xp.steam                  0x0065a6e1 CvWorldBuilderMapTypeGroup::Contains(char const*) const + 104529
    5   com.aspyr.civ5xp.steam                  0x0065a750 CvWorldBuilderMapTypeGroup::Contains(char const*) const + 104640
    6   com.aspyr.civ5xp.steam                  0x0065adcf CvWorldBuilderMapTypeGroup::Contains(char const*) const + 106303
    7   com.aspyr.civ5xp.steam                  0x0065aec8 CvWorldBuilderMapTypeGroup::Contains(char const*) const + 106552
    8   com.aspyr.civ5xp.steam                  0x004e65de _vsnprintf + 4515605
    9   com.aspyr.civ5xp.steam                  0x004dd9aa _vsnprintf + 4479713
    10  com.aspyr.civ5xp.steam                  0x004ed1c3 _vsnprintf + 4543226
    11  com.aspyr.civ5xp.steam                  0x00002921 0x1000 + 6433
    12  com.apple.HIToolbox                     0x972e5c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    13  com.apple.HIToolbox                     0x972e4ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    14  com.apple.HIToolbox                     0x972e4d55 SendEventToEventTargetWithOptions + 58
    15  com.apple.HIToolbox                     0x97319a24 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    16  com.apple.HIToolbox                     0x972e6080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    17  com.apple.HIToolbox                     0x972e4ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    18  com.apple.HIToolbox                     0x973077f3 SendEventToEventTarget + 52
    19  com.apple.HIToolbox                     0x97490c17 ToolboxEventDispatcher + 86
    20  com.apple.HIToolbox                     0x97490d4f RunApplicationEventLoop + 243
    21  com.aspyr.civ5xp.steam                  0x000028c0 0x1000 + 6336
    22  com.aspyr.civ5xp.steam                  0x00002c4c 0x1000 + 7244
    23  com.aspyr.civ5xp.steam                  0x00002705 0x1000 + 5893
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x93b38382 kevent + 10
    1   libSystem.B.dylib                       0x93b38a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x93b37f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x93b37cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x93b37781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x93b375c6 start_wqthread + 30
    Thread 2:  IOPollingHelperThread
    0   libSystem.B.dylib                       0x93b38382 kevent + 10
    1   steamclient.dylib                       0x18deacc5 OSXHelpers::CIOPollingHelper::RealRun() + 249
    2   libtier0_s.dylib                        0x0644cf3d CatchAndWriteContext_t::Invoke() + 159
    3   libtier0_s.dylib                        0x0644cac8 CatchAndWriteMiniDumpExForVoidPtrFn + 86
    4   libtier0_s.dylib                        0x0644caf2 CatchAndWriteMiniDumpForVoidPtrFn + 37
    5   steamclient.dylib                       0x18deabbb OSXHelpers::CIOPollingHelper::Run() + 41
    6   libtier0_s.dylib                        0x06451314 SteamThreadTools::CThread::ThreadExceptionWrapper(void*) + 16
    7   libtier0_s.dylib                        0x0644cf3d CatchAndWriteContext_t::Invoke() + 159
    8   libtier0_s.dylib                        0x0644cac8 CatchAndWriteMiniDumpExForVoidPtrFn + 86
    9   libtier0_s.dylib                        0x0644caf2 CatchAndWriteMiniDumpForVoidPtrFn + 37
    10  libtier0_s.dylib                        0x0645128c SteamThreadTools::CThread::ThreadProc(void*) + 196
    11  libSystem.B.dylib                       0x93b3f259 _pthread_start + 345
    12  libSystem.B.dylib                       0x93b3f0de thread_start + 34
    Thread 3:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x93b3faa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93b3f75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93b413f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore                0x95abdfd1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                       0x93b3f259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93b3f0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x93b11afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93b12267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94b292df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94b283c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94b281f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x996d7224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x9969e4c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x9969e474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x93b3f259 _pthread_start + 345
    9   libSystem.B.dylib                       0x93b3f0de thread_start + 34
    Thread 5:  JavaScriptCore::Marking
    0   libSystem.B.dylib                       0x93b3faa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93b3f75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93b413f8 pthread_cond_wait$UNIX2003 + 73
    Thread 6:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x93b3faa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93b3f75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93b3f2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x95abe01c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 7:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x93b30ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x94b68c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x93b3f259 _pthread_start + 345
    3   libSystem.B.dylib                       0x93b3f0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x93b37412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93b379a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93b375c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffffff  ebx: 0xbda41bf0  ecx: 0x00000000  edx: 0x066dcf6c
      edi: 0x066dcf00  esi: 0x1d51b330  ebp: 0xbffedef8  esp: 0xbffedeec
       ss: 0x0000001f  efl: 0x00210286  eip: 0x007568db   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0xbda41bf0
    Binary Images:
        0x1000 -   0xb06fe7 +com.aspyr.civ5xp.steam 1.3.1 (112297) <C6132B18-026E-318F-AAEC-646543186A57> /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/MacOS/Civilization V
    0x61c2000 -  0x61dbff3 +gameoverlayrenderer.dylib ??? (???) <C6AD9D84-0A5D-3598-9C2D-81FF881D168A> /Applications/Steam.app/Contents/MacOS/osx32/gameoverlayrenderer.dylib
    0x61f2000 -  0x61f2ffb +steamloader.dylib ??? (???) <04FED4D9-EA7B-3389-8885-307D47EC1AF1> /Applications/Steam.app/Contents/MacOS/osx32/steamloader.dylib
    0x61f5000 -  0x6202ffe +com.aspyr.gameguide 1.0 (677) <41DC5B64-3E0A-3582-B375-8B77F1D5988B> /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/Frameworks/AspyrGameGuide.framework/Versions/A/AspyrGameGuide
    0x620a000 -  0x624dfe2 +libMilesX86.dylib ??? (???) <670EDD99-0C23-3FCC-9407-E59F4CCD269D> /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/MacOS/libMilesX86.dylib
    0x626a000 -  0x626fffb +libsteam_api.dylib ??? (???) <69366E8A-55F3-3281-8080-B963D3AAD33A> /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/MacOS/libsteam_api.dylib
    0x6274000 -  0x6296ff7 +libtbb.dylib ??? (???) <AAA2AFA2-789A-41B8-D03D-C03861305060> /Users/maxjackson/Library/Application Support/Steam/SteamApps/common/Sid Meier's Civilization V/Civilization V.app/Contents/MacOS/libtbb.dylib
    0x62a9000 -  0x62a9ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x6448000 -  0x645cff3 +libtier0_s.dylib ??? (???) <442C2E58-54CE-30F0-92AA-8793C021678B> /Applications/Steam.app/Contents/MacOS/osx32/libtier0_s.dylib
    0x647a000 -  0x6499ffb +libvstdlib_s.dylib ??? (???) <94C6E88E-0EAB-379B-B79C-A506A2F4158A> /Applications/Steam.app/Contents/MacOS/osx32/libvstdlib_s.dylib
    0x64c2000 -  0x64ebfff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x6700000 -  0x670bfff +crashhandler.dylib ??? (???) <3A02A6BF-FCC6-3600-B440-71A02ED288F5> /Applications/Steam.app/Contents/MacOS/osx32/crashhandler.dylib
    0x6722000 -  0x6729fff +com.googlecode.google-breakpad ??? (1.0) <52A4C312-E82C-3FD2-AD6B-71E07E934FA9> /Applications/Steam.app/Contents/MacOS/Frameworks/Breakpad.framework/Versions/A /Breakpad
    0x6733000 -  0x6742fff +breakpadUtilities.dylib ??? (???) <705ACFD7-8CF0-3AB6-9F66-AF306AF3286F> /Applications/Steam.app/Contents/MacOS/Frameworks/Breakpad.framework/Versions/A /Resources/breakpadUtilities.dylib
    0x18787000 - 0x1922cfcf +steamclient.dylib ??? (???) <8879F11E-72A9-3C56-AAB2-9CE4C11650C6> /Applications/Steam.app/Contents/MacOS/osx32/steamclient.dylib
    0x19c8e000 - 0x19f1aff7 +libsteam.dylib ??? (???) <489E1F11-B16B-31AB-A7A8-7730CAE82AD7> /Applications/Steam.app/Contents/MacOS/osx32/libsteam.dylib
    0x1ec84000 - 0x1edfdff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1ee2f000 - 0x1f234fe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1f300000 - 0x1f324fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90043000 - 0x90065fef  com.apple.DirectoryService.Framework 3.6 (621.16) <5566E769-6459-78A7-DD2C-1D3068BD3932> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x906c8000 - 0x90775fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x90776000 - 0x907baff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x907bb000 - 0x908e9fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90b4f000 - 0x918c7fe7  com.apple.WebCore 6534.58 (6534.58.2) <E39A8EB5-2D9F-0459-54E1-E172689616F5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91a0f000 - 0x91ac8fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x91adc000 - 0x91b88fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91de8000 - 0x91e12ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91e13000 - 0x91e24ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91e25000 - 0x91e2bfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91e2c000 - 0x9214cff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9216f000 - 0x92171ff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9217a000 - 0x92185ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x921b4000 - 0x9221efe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92225000 - 0x9222bff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x92340000 - 0x92340ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92373000 - 0x923b6ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923d0000 - 0x923f4ff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92536000 - 0x92586ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9259d000 - 0x925d3fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x9282e000 - 0x92835ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92836000 - 0x92883feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x92884000 - 0x928b7ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x928b8000 - 0x9294afe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9294b000 - 0x9294eff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9294f000 - 0x9295cff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9295d000 - 0x92a5ffe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <316C3B25-6DCA-549A-7728-D5A038F654D8> /usr/lib/libcrypto.0.9.8.dylib
    0x92ff3000 - 0x9311cfe7  com.apple.WebKit 6534.58 (6534.58.2) <D156AE52-5235-2C51-B522-FD3D90E474DA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9311d000 - 0x93139fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x931e4000 - 0x931e9ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x931ea000 - 0x931f6ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x931fc000 - 0x93200ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9327b000 - 0x9327bff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a55000 - 0x93a7bffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93a7c000 - 0x93ab6fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <6C5E60CA-0C64-0112-5FEF-6161954614C4> /usr/lib/libssl.0.9.8.dylib
    0x93b03000 - 0x93b0aff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93b0b000 - 0x93b0efe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93b0f000 - 0x93b10ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93b11000 - 0x93cb8ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x93d40000 - 0x93dc2ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93dc3000 - 0x93eb7ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <061ABF36-8BA9-79C1-6CE7-EC69A4998F51> /usr/lib/libiconv.2.dylib
    0x93eb8000 - 0x93ec2ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93ec3000 - 0x93ee1fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93ee2000 - 0x93f51ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x940eb000 - 0x949ceff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x949cf000 - 0x949d2ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x949e4000 - 0x94ae4fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x94ae5000 - 0x94aebfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94aec000 - 0x94c67fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94c74000 - 0x94c93ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94d9d000 - 0x94dabff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94dac000 - 0x94dbeff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94dbf000 - 0x94dfcff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94dfd000 - 0x94e15ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94e16000 - 0x94eaefe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94eaf000 - 0x94fbbfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95022000 - 0x95025ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95105000 - 0x95158ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95159000 - 0x95215fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95216000 - 0x95510fef  com.apple.QuickTime 7.6.6 (1799) <9C110DFE-9171-20C1-C4E5-62BE8853D18A> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95739000 - 0x9579dffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9579e000 - 0x9583bfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9584a000 - 0x9588cff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9588d000 - 0x958b5ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x958b6000 - 0x95996fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95a8f000 - 0x95a91ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95a92000 - 0x95ab2fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x95ab3000 - 0x95d61fe7  com.apple.JavaScriptCore 6534.58 (6534.58.1) <8A25C759-F46B-D303-23D3-22BBFBDEEBDE> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95d62000 - 0x95d62ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95dc9000 - 0x95dcdff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95e14000 - 0x95e14ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95e15000 - 0x95ec3ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95ed4000 - 0x95f18fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95f19000 - 0x9617fff7  com.apple.security 6.1.2 (55002) <E88E133F-5FB3-446F-B753-2B8AD577B46A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96180000 - 0x961d0fe7  libTIFF.dylib ??? (???) <AB182CEC-188A-F2BC-21E1-0059FD3B2598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x961d1000 - 0x9624bfff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9624c000 - 0x96257ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96258000 - 0x96258ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96259000 - 0x962f4fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x962f5000 - 0x96330ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96331000 - 0x96345ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96346000 - 0x96389ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x972de000 - 0x97602fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97603000 - 0x97603ff7  com.apple.Carbon 150 (152) <095157D7-B4EE-F73D-72E9-6C5EF55C55E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9760e000 - 0x976b6ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x976b7000 - 0x976c1fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x977d1000 - 0x97953fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x97954000 - 0x97954ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97955000 - 0x9795eff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9795f000 - 0x97990ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x979ca000 - 0x97a82feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x97a83000 - 0x97b4efef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97bbe000 - 0x97c1ffe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97c20000 - 0x9840f557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98516000 - 0x98653fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98654000 - 0x98664ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98715000 - 0x98715ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98716000 - 0x987f0fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x987f1000 - 0x98c26ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98c2f000 - 0x98df2feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98df3000 - 0x98e50ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98e71000 - 0x992c2fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x992c3000 - 0x9962eff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99688000 - 0x998f9fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99913000 - 0x99993feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99ae3000 - 0x99b29ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x99b2a000 - 0x99b2bff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9a042000 - 0x9a458ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9a459000 - 0x9a467fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x9a47b000 - 0x9a4b5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x9a972000 - 0x9a993fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a994000 - 0x9a9d5ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9aad4000 - 0x9aadeff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9aadf000 - 0x9ab12fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9ab13000 - 0x9ab28fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9ab29000 - 0x9ab2dff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9ab2e000 - 0x9ab42fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9320423ASG, 298.09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    It likely is a RAM issue.  Big games frequently trip up marginal RAM.

  • Can't update anything from CC on any of my machines

    Process:         Creative Cloud [275]
    Path:            /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
    Identifier:      com.adobe.acc.AdobeCreativeCloud
    Version:         1.5.0.367 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [181]
    Responsible:     Creative Cloud [275]
    User ID:         501
    Date/Time:       2014-05-14 11:25:24.684 -0400
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  2F14E286-B575-A7A5-8A29-329B8DFA6209
    Sleep/Wake UUID: EE9DD9F4-697E-471A-B72E-EC4DB2DB8E49
    Crashed Thread:  10  Dispatch queue: NSOperationQueue 0x78615e30
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000d7c51184
    VM Regions Near 0xd7c51184:
        CG shared images       00000000c7eb2000-00000000c7eba000 [   32K] r--/r-- SM=SHM 
    -->
        VM_ALLOCATE            00000000ffc00000-00000000ffc02000 [    8K] rwx/rwx SM=COW 
    Thread 0:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x931dcb76 __semwait_signal + 10
    1   libsystem_c.dylib             0x93187fb7 nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib             0x93187e62 usleep$UNIX2003 + 60
    3   ElevationManager.dylib         0x02113d10 AAMElevatedProcessLauncher::~AAMElevatedProcessLauncher() + 96
    4   ElevationManager.dylib         0x02113c34 AAMElevatedProcessLauncher::~AAMElevatedProcessLauncher() + 36
    5   ElevationManager.dylib         0x0210c4be ElevationMessageManager::finalize(char const*) + 62
    6   ElevationManager.dylib         0x0210e671 finalize + 113
    7   NXGCore.dylib                 0x00298b16 Applet::unload(std::string) + 502
    8   NXGCore.dylib                 0x00299827 AppletManager::unloadCoreExtensions() + 199
    9   NXGCore.dylib                 0x002996fe AppletManager::Finalize() + 46
    10  NXGCore.dylib                 0x00297323 finalize + 51
    11  com.adobe.acc.AdobeCreativeCloud 0x000ee974 0xe9000 + 22900
    12  com.adobe.acc.AdobeCreativeCloud 0x000f772e 0xe9000 + 59182
    13  com.adobe.acc.AdobeCreativeCloud 0x000eb891 0xe9000 + 10385
    14  com.apple.AppKit               0x9484ab72 -[NSApplication _docController:shouldTerminate:] + 83
    15  com.apple.AppKit               0x9484aa70 __91-[NSDocumentController(NSInternal) _closeAllDocumentsWithDelegate:shouldTerminateSelector:]_block_invoke + 140
    16  com.apple.AppKit               0x9484a7cc -[NSDocumentController(NSInternal) _closeAllDocumentsWithDelegate:shouldTerminateSelector:] + 1604
    17  com.apple.AppKit               0x9484a14b -[NSDocumentController(NSInternal) __closeAllDocumentsWithDelegate:shouldTerminateSelector:] + 266
    18  com.apple.AppKit               0x94849de3 -[NSApplication _shouldTerminate] + 760
    19  com.apple.AppKit               0x9474b968 -[NSApplication terminate:] + 1139
    20  com.adobe.acc.ContainerUI     0x06f5c3ba 0x6f3f000 + 119738
    21  com.adobe.acc.ContainerUI     0x06f536f5 UIMacContainerMainWindow::quit(std::string const&) + 181
    22  com.adobe.acc.ContainerUI     0x06f4cc86 0x6f3f000 + 56454
    23  com.adobe.acc.ContainerUI     0x06f514b5 0x6f3f000 + 74933
    24  com.adobe.acc.ContainerUI     0x06f513b0 MessageHandler::handle(MessageObject const&) + 160
    25  com.adobe.acc.ContainerUI     0x06f4671d ExternalGateway::handleMessage(MessageObject const&) + 61
    26  com.adobe.acc.ContainerUI     0x06f4684f ExternalGateway::processMessageFromOutside(char const*, bool (**)(void const*)) + 127
    27  com.adobe.acc.ContainerUI     0x06f52a5c processMessage + 124
    28  NEX.dylib                     0x06f1bf14 ExternalGateway::sendMessageToApplet(MessageObject const&, char const*, bool (**)(void const*), char const**) + 228
    29  NEX.dylib                     0x06f1bdbe ExternalGateway::handleMessage(MessageObject&, char const*, bool (**)(void const*), char const**) + 94
    30  NEX.dylib                     0x06f1c488 ProcessMessage::InMessage(char const*, bool (**)(void const*)) + 1000
    31  NEX.dylib                     0x06f1188d processMessage + 125
    32  NXGCore.dylib                 0x002abc07 ExternalGateway::sendMessageToApplet(MessageObject const&, char const*, bool (**)(void const*), char const**) + 727
    33  NXGCore.dylib                 0x002ab6d7 ExternalGateway::handleMessage(MessageObject const&, char const*, bool (**)(void const*), char const**) + 151
    34  NXGCore.dylib                 0x002aae96 0x296000 + 85654
    35  libobjc.A.dylib               0x923ab2af -[NSObject performSelector:withObject:] + 70
    36  com.apple.Foundation           0x925a34b2 __NSThreadPerformPerform + 318
    37  com.apple.CoreFoundation       0x90591bff __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    38  com.apple.CoreFoundation       0x90582a8b __CFRunLoopDoSources0 + 235
    39  com.apple.CoreFoundation       0x9058218e __CFRunLoopRun + 1022
    40  com.apple.CoreFoundation       0x90581b1a CFRunLoopRunSpecific + 394
    41  com.apple.CoreFoundation       0x9058197b CFRunLoopRunInMode + 123
    42  com.apple.HIToolbox           0x900a9b7d RunCurrentEventLoopInMode + 259
    43  com.apple.HIToolbox           0x900a9902 ReceiveNextEventCommon + 526
    44  com.apple.HIToolbox           0x900a96dd _BlockUntilNextEventMatchingListInModeWithFilter + 92
    45  com.apple.AppKit               0x944c7389 _DPSNextEvent + 1602
    46  com.apple.AppKit               0x944c68b0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    47  com.apple.AppKit               0x944b919c -[NSApplication run] + 727
    48  libcef.dylib                   0x03bb1287 0x37b0000 + 4199047
    49  libcef.dylib                   0x03bb0d5c 0x37b0000 + 4197724
    50  libcef.dylib                   0x03be23a1 0x37b0000 + 4400033
    51  libcef.dylib                   0x03bfa93e 0x37b0000 + 4499774
    52  libcef.dylib                   0x03be1ada 0x37b0000 + 4397786
    53  libcef.dylib                   0x0426e75f 0x37b0000 + 11265887
    54  HEX.dylib                     0x021679c3 HEXMessageProcessor::runLoop(std::string const&) + 403
    55  HEX.dylib                     0x021606bb 0x215e000 + 9915
    56  HEX.dylib                     0x0215fe87 ProcessMessageManager::processMessage(std::string const&, std::string const&, ProcessMessageOutput&, MessageObject const&) + 71
    57  HEX.dylib                     0x0215f7b3 processMessage + 355
    58  NXGCore.dylib                 0x002abbb7 ExternalGateway::sendMessageToApplet(MessageObject const&, char const*, bool (**)(void const*), char const**) + 647
    59  NXGCore.dylib                 0x002ab6d7 ExternalGateway::handleMessage(MessageObject const&, char const*, bool (**)(void const*), char const**) + 151
    60  NXGCore.dylib                 0x002ac176 ExternalGateway::processMessageFromOutside(char const*, bool (**)(void const*)) + 454
    61  NXGCore.dylib                 0x002972da processMessage + 42
    62  com.adobe.acc.AdobeCreativeCloud 0x000ef2d8 0xe9000 + 25304
    63  com.adobe.acc.AdobeCreativeCloud 0x000f3760 0xe9000 + 42848
    64  com.adobe.acc.AdobeCreativeCloud 0x000eb766 0xe9000 + 10086
    65  com.adobe.acc.AdobeCreativeCloud 0x000ea823 0xe9000 + 6179
    66  com.adobe.acc.AdobeCreativeCloud 0x000efa50 0xe9000 + 27216
    67  com.adobe.acc.AdobeCreativeCloud 0x000ea465 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x931dd992 kevent64 + 10
    1   libdispatch.dylib             0x932128ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x93212546 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x931d7f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x931d716c mach_msg + 68
    2   com.apple.CoreFoundation       0x90582d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x90582301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x90581b1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x9058197b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x925a7095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation           0x925a6f0e -[NSThread main] + 45
    8   com.apple.Foundation           0x925a6e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x931dcace __select + 10
    1   com.apple.CoreFoundation       0x905d2b86 __CFSocketManager + 1158
    2   libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    3   libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    4   libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x931d7f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x931d716c mach_msg + 68
    2   com.apple.CoreFoundation       0x90582d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x90582301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x90581b1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x9058197b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x94670b68 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x931d7f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x931d716c mach_msg + 68
    2   libcef.dylib                   0x03bdf2df 0x37b0000 + 4387551
    3   libcef.dylib                   0x038e10fc 0x37b0000 + 1249532
    4   libcef.dylib                   0x03c0c909 0x37b0000 + 4573449
    5   libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    6   libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    7   libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 6:: PowerSaveBlocker
    0   libsystem_kernel.dylib         0x931dc7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x97563d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x97565bd9 pthread_cond_wait$UNIX2003 + 71
    3   libcef.dylib                   0x03c04cc3 0x37b0000 + 4541635
    4   libcef.dylib                   0x03c0596b 0x37b0000 + 4544875
    5   libcef.dylib                   0x03c05772 0x37b0000 + 4544370
    6   libcef.dylib                   0x03be656c 0x37b0000 + 4416876
    7   libcef.dylib                   0x03be23a1 0x37b0000 + 4400033
    8   libcef.dylib                   0x03bfa93e 0x37b0000 + 4499774
    9   libcef.dylib                   0x03be1ada 0x37b0000 + 4397786
    10  libcef.dylib                   0x03c11971 0x37b0000 + 4594033
    11  libcef.dylib                   0x03c11a0d 0x37b0000 + 4594189
    12  libcef.dylib                   0x03c0c909 0x37b0000 + 4573449
    13  libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    14  libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    15  libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 7:: CVDisplayLink
    0   libsystem_kernel.dylib         0x931dc7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x97563d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x97565bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x9c123540 CVDisplayLink::runIOThread() + 936
    4   com.apple.CoreVideo           0x9c123180 startIOThread(void*) + 159
    5   libsystem_pthread.dylib       0x975615fb _pthread_body + 144
    6   libsystem_pthread.dylib       0x97561485 _pthread_start + 130
    7   libsystem_pthread.dylib       0x97566cf2 thread_start + 34
    Thread 8:: Dispatch queue: NSOperationQueue 0x78615e30
    0   libsystem_kernel.dylib         0x931dc7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x97563d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x97565bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation           0x925a3ffa -[NSCondition wait] + 274
    4   com.apple.Foundation           0x9256d677 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 741
    5   com.apple.Foundation           0x9256d2a5 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 159
    6   NXGCore.dylib                 0x002ab1dd AsyncMessageProcessor::sendViaMainThread(MessageObject const&, std::string&) + 189
    7   NXGCore.dylib                 0x002ab685 ExternalGateway::handleMessage(MessageObject const&, char const*, bool (**)(void const*), char const**) + 69
    8   NXGCore.dylib                 0x002ac176 ExternalGateway::processMessageFromOutside(char const*, bool (**)(void const*)) + 454
    9   C3ContainerBL.dylib           0x06a6d378 ExternalGatewayBase::sendMessage(MessageObject const&) + 88
    10  C3ContainerBL.dylib           0x06a6d301 ExternalGatewayBase::sendMessageToHost(MessageObject const&) + 49
    11  C3ContainerBL.dylib           0x06a9d87d ExternalGateway::sendSyncMessageToApplet(MessageObject&) + 205
    12  C3ContainerBL.dylib           0x06adc04d ApplicationContext::sendSyncMessageToContainerUI(std::string const&, std::string const&) + 189
    13  C3ContainerBL.dylib           0x06a76953 C3ContainerUIManager::quit(std::string const&) + 179
    14  C3ContainerBL.dylib           0x06a9c6cc UniversalSettingsMenuHandler::forceQuit(std::string const&) + 1580
    15  C3ContainerBL.dylib           0x06a9bfee UniversalSettingsMenuHandler::quit(std::string const&) + 1358
    16  C3ContainerBL.dylib           0x06a8bb28 0x6a6c000 + 129832
    17  C3ContainerBL.dylib           0x06a8dcb3 0x6a6c000 + 138419
    18  C3ContainerBL.dylib           0x06a90955 0x6a6c000 + 149845
    19  C3ContainerBL.dylib           0x06a8ea70 MessageHandler::handle(MessageObject const&) + 160
    20  C3ContainerBL.dylib           0x06a9db50 ExternalGateway::processMessageFromOutside(char const*, bool (**)(void const*)) + 144
    21  C3ContainerBL.dylib           0x06a9cd8c processMessage + 124
    22  NXGCore.dylib                 0x002abc07 ExternalGateway::sendMessageToApplet(MessageObject const&, char const*, bool (**)(void const*), char const**) + 727
    23  NXGCore.dylib                 0x002ab6d7 ExternalGateway::handleMessage(MessageObject const&, char const*, bool (**)(void const*), char const**) + 151
    24  NXGCore.dylib                 0x002aac05 0x296000 + 84997
    25  com.apple.CoreFoundation       0x90547ccd __invoking___ + 29
    26  com.apple.CoreFoundation       0x90547b9b -[NSInvocation invoke] + 315
    27  com.apple.Foundation           0x925f7157 -[NSInvocationOperation main] + 217
    28  com.apple.Foundation           0x9254234c -[__NSOperationInternal _start:] + 702
    29  com.apple.Foundation           0x92542081 -[NSOperation start] + 71
    30  com.apple.Foundation           0x92541fa8 __NSOQSchedule_f + 50
    31  libdispatch.dylib             0x93214e11 _dispatch_async_redirect_invoke + 158
    32  libdispatch.dylib             0x93210396 _dispatch_client_callout + 50
    33  libdispatch.dylib             0x93212457 _dispatch_root_queue_drain + 257
    34  libdispatch.dylib             0x93213722 _dispatch_worker_thread2 + 39
    35  libsystem_pthread.dylib       0x97562dab _pthread_wqthread + 336
    36  libsystem_pthread.dylib       0x97566cce start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib         0x931dd046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97562dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x97566cce start_wqthread + 30
    Thread 10 Crashed:: Dispatch queue: NSOperationQueue 0x78615e30
    0   C3ContainerBL.dylib           0x06a71a50 C3ContainerUIManager::sendCommandLineToPanels(std::string const&) + 48
    1   C3ContainerBL.dylib           0x06a862dd 0x6a6c000 + 107229
    2   C3ContainerBL.dylib           0x06a90955 0x6a6c000 + 149845
    3   C3ContainerBL.dylib           0x06a8ea70 MessageHandler::handle(MessageObject const&) + 160
    4   C3ContainerBL.dylib           0x06a9db50 ExternalGateway::processMessageFromOutside(char const*, bool (**)(void const*)) + 144
    5   C3ContainerBL.dylib           0x06a9cd8c processMessage + 124
    6   NXGCore.dylib                 0x002abc07 ExternalGateway::sendMessageToApplet(MessageObject const&, char const*, bool (**)(void const*), char const**) + 727
    7   NXGCore.dylib                 0x002ab6d7 ExternalGateway::handleMessage(MessageObject const&, char const*, bool (**)(void const*), char const**) + 151
    8   NXGCore.dylib                 0x002aac05 0x296000 + 84997
    9   com.apple.CoreFoundation       0x90547ccd __invoking___ + 29
    10  com.apple.CoreFoundation       0x90547b9b -[NSInvocation invoke] + 315
    11  com.apple.Foundation           0x925f7157 -[NSInvocationOperation main] + 217
    12  com.apple.Foundation           0x9254234c -[__NSOperationInternal _start:] + 702
    13  com.apple.Foundation           0x92542081 -[NSOperation start] + 71
    14  com.apple.Foundation           0x92541fa8 __NSOQSchedule_f + 50
    15  libdispatch.dylib             0x93214e11 _dispatch_async_redirect_invoke + 158
    16  libdispatch.dylib             0x93210396 _dispatch_client_callout + 50
    17  libdispatch.dylib             0x93212457 _dispatch_root_queue_drain + 257
    18  libdispatch.dylib             0x93213722 _dispatch_worker_thread2 + 39
    19  libsystem_pthread.dylib       0x97562dab _pthread_wqthread + 336
    20  libsystem_pthread.dylib       0x97566cce start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib         0x931dd046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97562dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x97566cce start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib         0x931dd046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97562dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x97566cce start_wqthread + 30
    Thread 10 crashed with X86 Thread State (32-bit):
      eax: 0xd7c51184  ebx: 0x00000000  ecx: 0x671ba4c1  edx: 0x7c223000
      edi: 0x787586a0  esi: 0xb6695800  ebp: 0xb6695718  esp: 0xb66956f0
       ss: 0x00000023  efl: 0x00010246  eip: 0x06a71a50   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0xd7c51184
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0xe9000 -   0x133ffb +com.adobe.acc.AdobeCreativeCloud (1.5.0.367 - ???) <E46103AD-B4F8-3FFB-AF5D-6474DB728DC5> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
      0x146000 -   0x173ff7 +com.growl.growlframework (1.3 - 1.3) <5C271922-7459-3DCB-BDC2-53135B47CDDC> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
      0x296000 -   0x2c4ffb +NXGCore.dylib (2.5.0.367 - 2.5.0.367) <243A28DE-8C0B-3DAE-AF45-1F5A6719DAE5> /Applications/Utilities/Adobe Creative Cloud/*/NXGCore.dylib
    0x1948000 -  0x19c5ffa  com.apple.xquery (1.3.1 - 30) <A9C347CC-0C9F-395F-BB32-1EE803C28FDC> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x19eb000 -  0x1ba2fe7 +AdobePIM.dylib (2.5.0.367 - 2.5.0.367) <A563409A-7E17-315D-8147-936C9D393484> /Applications/Utilities/Adobe Creative Cloud/*/AdobePIM.dylib
    0x1bba000 -  0x1bd6ffb +CmdCntr.dylib (2.5.0.367 - 2.5.0.367) <AD1BD69B-E969-378B-B930-0F226487131E> /Applications/Utilities/Adobe Creative Cloud/*/CmdCntr.dylib
    0x1be8000 -  0x1bf8ffb +VulcanWrapper.dylib (2.5.0.367 - 2.5.0.367) <CC3812D4-ED1F-3510-BBE8-AD8CB987641B> /Applications/Utilities/Adobe Creative Cloud/*/VulcanWrapper.dylib
    0x1c08000 -  0x1c41ff7 +VulcanMessage5.dylib (5.0.0.75 - 5.0.0.75 © 2013 Adobe Systems, Inc. All rights reserved.) <06D86E7A-4799-30BF-833D-BA96ECE7A353> /Applications/Utilities/Adobe Creative Cloud/*/VulcanMessage5.dylib
    0x1c7f000 -  0x1cbdffb +Analytics.dylib (2.5.0.367 - 2.5.0.367) <1C47D863-3AAD-34E6-B638-9F9C11F0919A> /Applications/Utilities/Adobe Creative Cloud/*/Analytics.dylib
    0x1cd3000 -  0x1d1fff3 +LocManager.dylib (2.5.0.367 - 2.5.0.367) <2511A025-6B80-3A92-8A14-38EB1986A1D3> /Applications/Utilities/Adobe Creative Cloud/*/LocManager.dylib
    0x1d2f000 -  0x1f1bff7 +C3Prefs.dylib (2.5.0.367 - 2.5.0.367) <740711D2-8EF6-3633-A94D-3EFFCF9EBBD3> /Applications/Utilities/Adobe Creative Cloud/*/C3Prefs.dylib
    0x2107000 -  0x2140ff3 +ElevationManager.dylib (2.5.0.367 - 2.5.0.367) <BA68B0EB-2391-3F77-94D3-4B7DB82F25D9> /Applications/Utilities/Adobe Creative Cloud/*/ElevationManager.dylib
    0x215e000 -  0x21b4ffb +HEX.dylib (2.5.0.367 - 2.5.0.367) <C73283CC-34DF-3C07-8DD1-0AF27A28BDDC> /Applications/Utilities/Adobe Creative Cloud/*/HEX.dylib
    0x21d7000 -  0x21d7ff1 +libplugin_carbon_interpose.dylib (31094.5.84) <59574645-ECF2-3D51-BCBE-B072C2B3CADC> /Applications/Utilities/Adobe Creative Cloud/*/libplugin_carbon_interpose.dylib
    0x26ad000 -  0x26b1ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <D5FE0F6F-95E3-3F9D-A6AF-D721CBD801AC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x27e6000 -  0x27ebffb +SibTrayNotification.dylib (1) <E5A95ADD-07D9-354D-AA4C-E102E3CC733C> /Applications/Utilities/Adobe Creative Cloud/*/SibTrayNotification.dylib
    0x2eb2000 -  0x2eb2ffd +cl_kernels (???) <590BE152-6809-4923-B26C-2CE4108D89F4> cl_kernels
    0x37b0000 -  0x684fff3 +libcef.dylib (31094.5.84) <77646F1A-353C-3025-B19E-A9C12C5A17D8> /Applications/Utilities/Adobe Creative Cloud/*/Chromium Embedded Framework.framework/Libraries/libcef.dylib
    0x6a6c000 -  0x6d40feb +C3ContainerBL.dylib (2.5.0.367 - 2.5.0.367) <B9F0A851-1BCD-365C-8DEB-DDE6D2ECC18C> /Applications/Utilities/Adobe Creative Cloud/*/C3ContainerBL.dylib
    0x6f10000 -  0x6f31ff3 +NEX.dylib (2.5.0.367 - 2.5.0.367) <2094017C-9719-3BFD-A672-AA7AD0C84F47> /Applications/Utilities/Adobe Creative Cloud/*/NEX.dylib
    0x6f3f000 -  0x6ffaff3 +com.adobe.acc.ContainerUI (2.5.0.367 - 2.5.0.367) <AAB6A4D5-9019-3F9D-AEFC-94CFBF189E44> /Applications/Utilities/Adobe Creative Cloud/*/C3ContainerUI.bundle/Contents/MacOS/c3containerUI
    0x7023000 -  0x7065fff +NEXUILibrary.dylib (2.5.0.367 - 2.5.0.367) <A8C602F2-99A0-3162-B8C1-FBFABC6E3356> /Applications/Utilities/Adobe Creative Cloud/*/NEXUILibrary.dylib
    0x9482000 -  0x94c8fff +com.adobe.acc.homepanel (2.5.0.367 - 2.5.0.367) <0F8BE22A-1BED-309F-8BFF-858DC50FBE0E> /Applications/Utilities/Adobe Creative Cloud/*/HomePanelUI.bundle/Contents/MacOS/HomePanelUI
    0x94da000 -  0x94eaffb +FilesPanelBL.dylib (2.5.0.367 - 2.5.0.367) <8CEDA2BB-4C2A-32D9-8700-0F11E3167435> /Applications/Utilities/Adobe Creative Cloud/*/FilesPanelBL.dylib
    0x9c04000 -  0x9d09feb +P7Native.dylib (8.0.0.22 - 8.0.0.22) <5A64631D-3C83-32F5-AAFB-6A712D0F81BF> /Applications/Utilities/Adobe Application Manager/*/P7Native.dylib
    0x9d1d000 -  0x9e41ff3 +HomePanelBL.dylib (2.5.0.367 - 2.5.0.367) <C13132E6-62B7-38B6-8A8B-F2951498872A> /Applications/Utilities/Adobe Creative Cloud/*/HomePanelBL.dylib
    0x9e6e000 -  0xa08dffb +AppsPanelBL.dylib (2.5.0.367 - 2.5.0.367) <5106E5E0-5C62-3057-AA43-AE1780D73585> /Applications/Utilities/Adobe Creative Cloud/*/AppsPanelBL.dylib
    0xa123000 -  0xa181ffb +com.adobe.acc.appspanel (2.5.0.367 - 2.5.0.367) <95B64189-B39B-3F89-9400-CB7CE5A9356B> /Applications/Utilities/Adobe Creative Cloud/*/AppsPanelUI.bundle/Contents/MacOS/AppsPanelUI
    0xa19a000 -  0xa1f5ff7 +com.adobe.acc.filespanel (2.5.0.367 - 2.5.0.367) <5686498D-A2B5-319E-B34C-C7A3C52E9AA9> /Applications/Utilities/Adobe Creative Cloud/*/FilesPanelUI.bundle/Contents/MacOS/FilesPanelUI
    0xa208000 -  0xa225ff3 +FontsPanelBL.dylib (2.5.0.367 - 2.5.0.367) <BF08D187-E8E2-3CDC-A993-158F9583B68F> /Applications/Utilities/Adobe Creative Cloud/*/FontsPanelBL.dylib
    0xa234000 -  0xa2a0ffb +com.adobe.acc.fontspanel (2.5.0.367 - 2.5.0.367) <6E6AF181-C111-338E-8710-65912795D217> /Applications/Utilities/Adobe Creative Cloud/*/FontsPanelUI.bundle/Contents/MacOS/FontsPanelUI
    0xa2b7000 -  0xa2c7ff3 +BehancePanelBL.dylib (2.5.0.367 - 2.5.0.367) <099EE855-FAA8-3874-9C48-D0D895048C0C> /Applications/Utilities/Adobe Creative Cloud/*/BehancePanelBL.dylib
    0xa2d2000 -  0xa32fffb +com.adobe.acc.behancepanel (2.5.0.367 - 2.5.0.367) <900EC2CD-751B-3959-9562-10BDA863BB7E> /Applications/Utilities/Adobe Creative Cloud/*/BehancePanelUI.bundle/Contents/MacOS/BehancePanelUI
    0xa343000 -  0xa593ff3 +adobe_oobelib.dylib (8.0.0.21 - 8.0.0.21) <148CFC2B-8678-33AE-BB12-87DC73D5EEE4> /Applications/Utilities/Adobe Application Manager/*/adobe_oobelib.dylib
    0xa5b2000 -  0xa666fff +axlibv7.dylib (8.0.0.21 - 8.0.0.21) <86F7B50A-2C29-311D-9A55-1EEB22A01485> /Applications/Utilities/Adobe Application Manager/*/axlibv7.dylib
    0xa681000 -  0xa771feb +adobe_upgrade.dylib (8.0.0.21 - 8.0.0.21) <5B87E634-A06E-3A10-9A24-84E89368244D> /Applications/Utilities/Adobe Application Manager/*/adobe_upgrade.dylib
    0xa7b1000 -  0xa88fffb +IMSLib.dylib (8.0.0.7 - 8.0.0.7) <81978563-68A5-329C-82C7-372C88D3DA00> /Applications/Utilities/Adobe Application Manager/*/IMSLib.dylib
    0xbb9c000 -  0xbbc1ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xbbd6000 -  0xbbe1ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0xbbf5000 -  0xbd93fff +AppsPanelIL.dylib (2.5.0.367 - 2.5.0.367) <4F691540-E3E0-3089-ABFB-4DBD2CFF2056> /Applications/Utilities/Adobe Creative Cloud/*/AppsPanelIL.dylib
    0xbfc9000 -  0xc301fef +com.adobe.AAM.AdobeUpdaterCoreFramework (UpdaterCore 8.0.0.14 - 8.0.0.14) <7603A001-06DC-327C-85BF-5F4CFA3D844A> /Applications/Utilities/Adobe Application Manager/*/UpdaterCore.framework/UpdaterCore
    0xc423000 -  0xc490ffb +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <82DA9279-45D2-AD40-C86C-F5A94B9DAAFF> /Applications/Utilities/Adobe Application Manager/*/LogSession.framework/LogSession
    0xd544000 -  0xd62fff7  unorm8_bgra.dylib (2.3.58) <2DC35A3D-E1D6-3378-953F-D5EADE3400D2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x40000000 - 0x4045fff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (8.24.11 - 8.2.4) <EB290552-DEBC-3042-A30B-C86D0C2587B2> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD5000GraphicsGLDriver
    0x8fe76000 - 0x8fea8417  dyld (239.4) <2E655535-479B-3E48-ADD3-6278819CA38A> /usr/lib/dyld
    0x90008000 - 0x90016ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9007e000 - 0x903f3ff9  com.apple.HIToolbox (2.1 - 697.4) <8CB677B7-43FC-3534-A685-5A5445C95F7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x903f4000 - 0x903ffff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x90400000 - 0x90408fff  liblaunch.dylib (842.90.1) <B259692D-D60B-3BCE-9E03-32F457CB5046> /usr/lib/system/liblaunch.dylib
    0x90409000 - 0x904fdfff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x904fe000 - 0x904ffffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x90500000 - 0x9050bffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x9050c000 - 0x9070efff  com.apple.CoreFoundation (6.9 - 855.14) <756998B3-F507-3474-AFB2-769FC9CE5263> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9075e000 - 0x9076aff7  com.apple.OpenDirectory (10.9 - 173.90.1) <B7440CD7-04F8-3558-B5AA-FD48381B14DE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9076b000 - 0x9076cfff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x90770000 - 0x90770ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x90771000 - 0x907adff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x907ae000 - 0x908dbff9  com.apple.avfoundation (2.0 - 651.12) <5D46DA01-3CFB-375E-B134-8625EA3466A7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x90a16000 - 0x90a77ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x90a8f000 - 0x90adbff7  libcups.2.dylib (372.2) <ED7CEA7C-9FD7-34E0-B960-268BD6AFA056> /usr/lib/libcups.2.dylib
    0x90adc000 - 0x90b38ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90b39000 - 0x90c70fff  com.apple.desktopservices (1.8.2 - 1.8.2) <CCE6EB2B-1799-349A-8F13-003077CDFF31> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x90c71000 - 0x90ccfffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x90cd0000 - 0x90cd3ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x90cd4000 - 0x90cdffff  libGPUSupportMercury.dylib (9.6) <154C14F4-0561-38CE-9A5F-1F9A9579552C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport Mercury.dylib
    0x90ce0000 - 0x90cf8fff  com.apple.CFOpenDirectory (10.9 - 173.90.1) <13B70F7C-9A4D-3CCA-AEB8-3958F5B6167E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x90cf9000 - 0x90d64ff9  com.apple.Heimdal (4.0 - 2.0) <D26F2F4D-5FD4-3FBF-A28C-1E8215C5ACA1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x90d65000 - 0x90e48ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x90e49000 - 0x90e65ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x90fd2000 - 0x90fddfff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x90fde000 - 0x90fe5ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90fe6000 - 0x910f3ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <677F8044-E8B4-34A8-B7D9-575D7CEA019E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x91195000 - 0x911cbfff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x911cc000 - 0x911ccfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b87000 - 0x91bdcfff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x91bdd000 - 0x91bdefff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x91bdf000 - 0x91c30ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x91c31000 - 0x91c6fff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x91c70000 - 0x91c88ff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x91c8f000 - 0x91d26ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x91d27000 - 0x92011fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x92012000 - 0x92024fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x921f0000 - 0x921f2ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x921f3000 - 0x92243ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x92244000 - 0x92248ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x92249000 - 0x92249fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9224a000 - 0x9231afef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9231b000 - 0x92390ffb  com.apple.framework.IOKit (2.0.1 - 907.90.2) <AFF50D8E-7D1D-38B9-A77E-DF0C0C4C97E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92391000 - 0x925394af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9253a000 - 0x92865ffe  com.apple.Foundation (6.9 - 1056.13) <C33A8984-7E97-36BE-B842-EE4FE35F53EA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92866000 - 0x9286cff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x9286d000 - 0x92876fff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x92877000 - 0x928ecff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x928ed000 - 0x928f0ff7  libdyld.dylib (239.4) <F4604F64-945B-3871-8F26-E9C55488BC27> /usr/lib/system/libdyld.dylib
    0x928f1000 - 0x92a81ff0  GLEngine (9.6) <6A58B9C0-B67E-3FD1-B707-837744D918C2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x92a82000 - 0x92abfffb  libGLImage.dylib (9.6) <EAC640A8-CD71-3AB2-9918-21CACCBCCB0D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x92ac0000 - 0x92ac0fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x92e4b000 - 0x92e59ff3  com.apple.opengl (9.6.0 - 9.6.0) <63941A8D-AACC-3C71-BE8C-4DAA913A1439> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92e5a000 - 0x92e5cfff  com.apple.SecCodeWrapper (3.0 - 1) <066E1E30-2EEA-3166-8F86-D1054B50875B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x92e5d000 - 0x92e5efff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x92e5f000 - 0x92e83fff  libJPEG.dylib (1042) <AEC2D16E-12E6-3D85-933E-6728EBA802A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92e84000 - 0x92ec4ff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92ec5000 - 0x92edfff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x92ee0000 - 0x92eebfff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x92eec000 - 0x92f62ff3  com.apple.securityfoundation (6.0 - 55122.1) <18024F59-DE2B-3FC5-A29F-8F2B27349685> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x92f63000 - 0x92f68ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x92f69000 - 0x92f99ff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x92f9a000 - 0x93004ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x93005000 - 0x93014fff  libGL.dylib (9.6) <58C42A46-27D0-3228-B3C1-EC3923D49BAD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93015000 - 0x93047ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9309e000 - 0x930b1fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x930b2000 - 0x9310bffa  libTIFF.dylib (1042) <0EED8A3F-A7C6-3FE2-8F67-55813D5E543E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9310c000 - 0x9319eff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x931c5000 - 0x931e2ff4  libsystem_kernel.dylib (2422.90.20) <C823B3BD-F818-3D7A-9FB7-9BDE00E2BEA1> /usr/lib/system/libsystem_kernel.dylib
    0x931e3000 - 0x9320eff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9320f000 - 0x93227ffd  libdispatch.dylib (339.90.1) <871AC354-D1B6-3475-889E-AF594448CF43> /usr/lib/system/libdispatch.dylib
    0x93249000 - 0x93271ff7  libRIP.A.dylib (599.20.11) <43C5717D-381A-3015-9BE8-1DDD1C6BA935> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93272000 - 0x932dbfff  com.apple.SystemConfiguration (1.13 - 1.13) <144317BE-7AE5-3B8D-90CD-62DCDE9399E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x932dc000 - 0x932e4ff7  libCGCMS.A.dylib (599.20.11) <BE016E3E-3A65-35F7-A9D4-96684ECB39B0> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x932e5000 - 0x933d0ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x936f8000 - 0x93713ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x93714000 - 0x9372bff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x938f2000 - 0x9391afff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x9391b000 - 0x939e9ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <BE2F37D3-F610-30EE-B106-44B5DAE35603> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x939ea000 - 0x939f4ff2  com.apple.AppSandbox (3.0 - 1) <FE0793BE-50CF-3E3B-82C9-71F7A294E10F> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x939f5000 - 0x939fafff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x939fb000 - 0x93df3fff  com.apple.CoreGraphics (1.600.0 - 599.20.11) <82BA834B-C3D1-39CC-B9C3-5C4C976A3BCD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x93df4000 - 0x93dfeff0  libCGInterfaces.dylib (271) <F78617B0-10DD-3DB0-988A-2407D630519A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/Resources/libCGInterfaces.dylib
    0x93dff000 - 0x93e47fff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x93e48000 - 0x93e85ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x93e86000 - 0x93e86fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93e87000 - 0x93efafff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x93efb000 - 0x9400dffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x9400e000 - 0x94015ffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94039000 - 0x94039ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <85316395-817E-342D-8F41-88838EC6FB63> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9403a000 - 0x9403bfff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x9403c000 - 0x94045fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94048000 - 0x9409bff3  com.apple.CoreMediaIO (407.0 - 4561) <A756270D-CA9A-36CB-B698-3D9EEAB9C50E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9409c000 - 0x9409cfff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9409d000 - 0x940affff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x940b0000 - 0x94220fff  com.apple.QTKit (7.7.3 - 2826.17) <962F9FB1-7E46-3F93-9BAF-E05E7CF8D36D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94221000 - 0x9449dfe7  com.apple.QuickTime (7.7.3 - 2826.17) <E8F7EFCE-41FD-3E30-AAA5-5C232317E9D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9449f000 - 0x950bdff3  com.apple.AppKit (6.9 - 1265.19) <07125263-9E97-3A47-BBD3-6FB462910565> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x950be000 - 0x9532cff6  com.apple.security (7.0 - 55471.14) <7915499B-66CF-39FE-B53C-A11C7775314D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9532d000 - 0x9537dfff  com.apple.opencl (2.3.59 - 2.3.59) <4BEFE83C-1C89-3BB6-A445-9BE680C84FB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9537e000 - 0x953aeff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x953af000 - 0x953e0ff5  com.apple.GSS (4.0 - 2.0) <8C72F861-47F5-3641-9744-B5EF9647C827> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x95414000 - 0x95418ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x954f4000 - 0x95500ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x96404000 - 0x96495fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x96496000 - 0x964a0fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x964a1000 - 0x964a3fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x964a4000 - 0x964ceff7  libsandbox.1.dylib (278.11) <EB4CD5DF-EEDA-3785-9DD5-90FD423591FD> /usr/lib/libsandbox.1.dylib
    0x964cf000 - 0x964d3fff  libheimdal-asn1.dylib (323.15) <2C5FF5E6-F253-387E-959A-B1926DD99B31> /usr/lib/libheimdal-asn1.dylib
    0x964dd000 - 0x9650effa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x9650f000 - 0x96943ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x96944000 - 0x969aaffb  com.apple.CoreUtils (2.0 - 200.34.4) <F14AAB3C-1C8A-37D7-85BE-76646F9F6098> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x969ab000 - 0x969b4ffa  com.apple.CommonAuth (4.0 - 2.0) <7E72F700-6072-3822-8AAF-F14D456F7E7D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x969b5000 - 0x96a90ff7  com.apple.LaunchServices (572.26 - 572.26) <5915A9AC-7928-30B1-9329-94048ADE81D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96a91000 - 0x96ab0ff9  com.apple.framework.Apple80211 (9.3.1 - 931.58) <120A58B6-9DC7-3001-9735-C08661A3ECC0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x96ab1000 - 0x96ab5ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x96ab6000 - 0x96dabff8  com.apple.CoreImage (9.2.7) <AD2199E4-B18B-3CFC-94C4-B1B8D20CFB8B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96dac000 - 0x96e48fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x96e49000 - 0x971b7fff  com.apple.MediaToolbox (1.0 - 1273.49) <236C702F-BC87-3255-A8B3-C7B2C597DBCA> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x971b8000 - 0x971feff7  libcurl.4.dylib (78.90.1) <C97A942D-A5D4-35ED-B239-B9D13DD7107D> /usr/lib/libcurl.4.dylib
    0x971ff000 - 0x97266ffc  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <A02FAF3F-A8F4-3293-9321-AED904B5F069> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x97267000 - 0x973c9ff3  com.apple.CFNetwork (673.2.1 - 673.2.1) <6EA58F7C-35E9-37BF-A6B4-7DDB83A6B432> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x973ca000 - 0x973f5ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x973f6000 - 0x97404fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9745b000 - 0x97559fff  libJP2.dylib (1042) <795B3209-2382-3F31-AEF7-588E4BCAAF06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9755a000 - 0x9755fff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x97560000 - 0x97567ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x97568000 - 0x9756bffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x9756c000 - 0x976c2ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x976c3000 - 0x976c5fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x97930000 - 0x979dcffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x979dd000 - 0x97a46ffa  com.apple.datadetectorscore (5.0 - 354.3) <566882DE-B726-331E-BA89-ACBB3D5BEEC4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x97a47000 - 0x97a48ffa  libsystem_sandbox.dylib (278.11) <E8BE1DF7-2F3D-3202-B807-A85C99220AB6> /usr/lib/system/libsystem_sandbox.dylib
    0x97a49000 - 0x97a64ff6  libPng.dylib (1042) <1ADB59C7-343E-30CA-A8D2-93540C4A2E7D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97a65000 - 0x97a69ffa  libGIF.dylib (1042) <A28C9045-5ACD-35FE-9499-E98B9C5A20D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97a6a000 - 0x97a83fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97a84000 - 0x97d85ffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x97d86000 - 0x97d8efff  libsystem_dnssd.dylib (522.90.2) <A73663C9-CE65-3FF3-B41B-686728BBFB00> /usr/lib/system/libsystem_dnssd.dylib
    0x97e15000 - 0x97e39ff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x98f25000 - 0x98f6bff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x991f3000 - 0x991fbfee  libcldcpuengine.dylib (2.3.58) <A393291F-F561-3424-8BD2-AE4496B85F4A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x991fc000 - 0x9936fffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <AAF3AB26-3BAD-3E5F-8192-9805B7AA1CB1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x993b5000 - 0x993f7fff  libGLU.dylib (9.6) <6A7E248D-3936-3B0D-9BF2-E4F0D2FE5306> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x993f8000 - 0x993f8fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x993f9000 - 0x994e5ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x994e6000 - 0x994e8ffb  libRadiance.dylib (1042) <22E517A8-4725-3175-B5D1-5573FBE780B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x994eb000 - 0x99541ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x99ab0000 - 0x99d14ff7  com.apple.CoreData (107 - 481.01) <85EE4DFF-3A61-3D3B-A818-524F0A427A4D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99d15000 - 0x99d29ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x99d2a000 - 0x99d2dff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99d2e000 - 0x99d32ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x99d33000 - 0x99d33fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x99d34000 - 0x99d4dfff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x99d4e000 - 0x99da1fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x99df8000 - 0x99dfeffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x99dff000 - 0x9a1c4ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9a1c5000 - 0x9a1cfff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <6CD2D996-2972-30A3-B4AD-BB1B816EFDCC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x9a1d0000 - 0x9a34eff8  libGLProgrammability.dylib (9.6) <95E86FA5-8620-38C5-B3CB-885F32569634> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x9a34f000 - 0x9a357ffe  libGFXShared.dylib (9.6) <D75FE2D7-0CF9-351E-9EE3-893F2B2114BE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9a358000 - 0x9a383ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9a384000 - 0x9a388fff  com.apple.IOAccelerator (98.14 - 98.14) <2F453A7B-45B7-313D-AE23-A4D1A1E94D66> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x9a389000 - 0x9a38affd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x9a3bd000 - 0x9a3e9ff7  GLRendererFloat (9.6) <7A6A96FE-472D-3C12-A19C-ADD30A38BB02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat
    0x9a496000 - 0x9a535ff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x9a536000 - 0x9a5fdff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9a5fe000 - 0x9aa23fe3  com.apple.VideoToolbox (1.0 - 1273.49) <A581EEA0-25DF-386C-904D-26E51C3ED640> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9aa2c000 - 0x9aa39ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9aa3a000 - 0x9aa43fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9aaa5000 - 0x9aaddfff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9aade000 - 0x9aaeafff  libkxld.dylib (2422.90.20) <28EAB745-E690-34E7-B9F0-BD05E507173B> /usr/lib/system/libkxld.dylib
    0x9aaeb000 - 0x9aaeeffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x9aaef000 - 0x9ab04ff3  com.apple.AppContainer (3.0 - 1) <017FED4F-AD6E-3A56-806B-A2D33E69EFF9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x9ab74000 - 0x9ac64ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x9ac65000 - 0x9aefeff3  com.apple.RawCamera.bundle (5.04 - 736) <B9CA1B5A-6FA9-3140-BE9F-27A6F3E620B9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9aeff000 - 0x9af54ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9af55000 - 0x9afa4ff1  com.apple.HIServices (1.22 - 467.2) <F47161AA-E19F-3357-862F-5B4C8DA97975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x9afa5000 - 0x9afacff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x9afad000 - 0x9afd6ff5  com.apple.shortcut (2.6 - 2.6) <F9F32E6F-E641-36D0-B648-058D5E146D38> /System/Library/PrivateFrameworks/Shortcut.framework/Vers

    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 page that opens.
    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.
    Click the Clear Display icon in the toolbar. Try the action that you're having trouble with again. Post any messages that appear in the Console window – the text, please, not a screenshot.
    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 A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Installation as restore from backup fails

    Dear all,
    after changing my harddisk in my iMac I want to reinstall Mac OS X using my TimeMachine Backup.
    I'm starting installation process from my original OS X CD's (Version 10.6.3)
    My Backup is from current Mountain Lion Version.
    After a short time installation fails with below stated report, see 10:37:35 marked bold. Does anyone knows anything what to do now?
    Many thanks in advance.
    Kind regards,
    Rainer
    Nov 15 10:34:16 localhost Unknown[81]: Launching the Language Chooser for an OS Install
    Nov 15 10:35:12 localhost configd[65]: subnet_route_if_index: can't get interface name
    Nov 15 10:35:13 localhost LCA[85]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Nov 15 10:35:19 localhost LCA[85]: Using keyboard layout 3
    Nov 15 10:35:24 localhost LCA[85]: Found primary language hint "de"
    Nov 15 10:35:30 localhost LCA[85]: Launching the Installer using language code "German"
    Nov 15 10:35:31 localhost OSInstaller[146]: Mac OS X Installer application started
    Nov 15 10:35:31 localhost OSInstaller[146]: 1 display(s) found.
    Nov 15 10:35:31 localhost OSInstaller[146]: Display[1] is using OpenGL acceleration.
    Nov 15 10:35:31 localhost OSInstaller[146]: @(#)PROGRAM:Install  PROJECT:Install-580
    Nov 15 10:35:31 localhost OSInstaller[146]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-262
    Nov 15 10:35:31 localhost OSInstaller[146]: Hardware: iMac11,3 @ 2.80 GHz (x 4), 4096 MB RAM
    Nov 15 10:35:31 localhost OSInstaller[146]: Running OS Build: Mac OS X 10.6.3 (10D2322a)
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: DYLD_NO_FIX_PREBINDING=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: PWD=/
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: SHLVL=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: OS_INSTALL=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Nov 15 10:35:34 localhost OSInstaller[146]: Using install media product at /System/Installation/Packages
    Nov 15 10:35:34 localhost OSInstaller[146]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Nov 15 10:35:41 localhost OSInstaller[146]: Memory statistics for 'Mac OS X Installation' pane:
    Nov 15 10:35:41 localhost OSInstaller[146]: Physical Memory Allocation:   545 MB wired,     3 MB trapped,    75 MB active,    64 MB inactive,  3409 MB free,  3548 MB usable,  4096 MB total
    Nov 15 10:36:08 localhost OSInstaller[146]: Memory statistics for 'Backup-Quelle auswählen' pane:
    Nov 15 10:36:08 localhost OSInstaller[146]: Physical Memory Allocation:   534 MB wired,     4 MB trapped,    84 MB active,    73 MB inactive,  3401 MB free,  3558 MB usable,  4096 MB total
    Nov 15 10:36:18 localhost OSInstaller[146]: Memory statistics for 'Backup auswählen' pane:
    Nov 15 10:36:18 localhost OSInstaller[146]: Physical Memory Allocation:   535 MB wired,     5 MB trapped,    85 MB active,    75 MB inactive,  3396 MB free,  3556 MB usable,  4096 MB total
    Nov 15 10:36:42 localhost OSInstaller[146]: Using cached backup size 245265096704
    Nov 15 10:36:43 localhost OSInstaller[146]: Memory statistics for 'Zielvolume auswählen' pane:
    Nov 15 10:36:43 localhost OSInstaller[146]: Physical Memory Allocation:   565 MB wired,     3 MB trapped,    88 MB active,    92 MB inactive,  3348 MB free,  3528 MB usable,  4096 MB total
    Nov 15 10:36:53 localhost OSInstaller[146]: Memory statistics for 'Wiederherstellen' pane:
    Nov 15 10:36:53 localhost OSInstaller[146]: Physical Memory Allocation:   591 MB wired,     2 MB trapped,    89 MB active,    95 MB inactive,  3319 MB free,  3503 MB usable,  4096 MB total
    Nov 15 10:36:53 localhost OSInstaller[146]: [RESTORE] erasing disk 'Macintosh HD'
    Nov 15 10:36:53 localhost OSInstaller[146]: [RESTORE] erase started
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] erase completed
    Nov 15 10:37:11 localhost OSInstaller[146]: Physical memory statistics immediately before turning on virtual memory backing store:
    Nov 15 10:37:11 localhost OSInstaller[146]: Physical Memory Allocation:   554 MB wired,     3 MB trapped,    86 MB active,    91 MB inactive,  3362 MB free,  3539 MB usable,  4096 MB total
    Nov 15 10:37:11 localhost OSInstaller[146]: Activated virtual memory backing store at mount point '/Volumes/Macintosh HD'
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] started vm on target disk.
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] ensuring permissions on /Volumes/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] restoring from: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] restoring to: /Volumes/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] filelist: (\n    ".com.apple.backupd.mvlist.plist",\n    ".com.apple.timemachine.supported (vom alten Mac)",\n    ".DocumentRevisions-V100",\n    ".DS_Store",\n    ".file",\n    ".vol",\n    Applications,\n    bin,\n    cores,\n    etc,\n    "Handbu\U0308cher & Informationen",\n    "iPodless.log",\n    Library,\n    "mach_kernel",\n    Network,\n    opt,\n    sbin,\n    System,\n    tmp,\n    Users,\n    usr,\n    var,\n    Volumes,\n    "~",\n    "private/etc",\n    "private/tftpboot",\n    "private/tmp",\n    "private/var"\n)
    Nov 15 10:37:12 localhost OSInstaller[146]: Constructing critical restore paths
    Nov 15 10:37:12 localhost OSInstaller[146]: [RESTORE] 1:      restoring .com.apple.backupd.mvlist.plist
    Nov 15 10:37:12 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.com.apple.backupd.mvlist.plist
    Nov 15 10:37:12 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:13 localhost OSInstaller[146]: [RESTORE] 2:      restoring .com.apple.timemachine.supported (vom alten Mac)
    Nov 15 10:37:13 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.com.apple.timemachine.supported (vom alten Mac)
    Nov 15 10:37:13 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:13 localhost OSInstaller[146]: [RESTORE] 3:      restoring .DocumentRevisions-V100
    Nov 15 10:37:13 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100
    Nov 15 10:37:13 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/5/com.apple.documentVersions/BA945D81-E06 F-4BCD-B189-F64089A3D97F.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/5/com.apple.documentVersions/DD403257-35A C-469F-B4E4-C0B7915D4D85.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/6/com.apple.documentVersions/385B9FB6-FA0 0-4DE4-B279-033627796C6C.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/6/com.apple.documentVersions/D4FEACB2-D2A D-4656-AA58-4D7160575D45.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/7/com.apple.documentVersions/0337BF11-043 8-4132-A301-25518B387A8A.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 4:      restoring .DS_Store
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DS_Store
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 5:      restoring .file
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.file
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 6:      restoring .vol
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.vol
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 7:      restoring Applications
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/Applications
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:35 localhost Unknown[87]: 2012-11-15 10:37:35.556 Mac OS X Installer[146:9f47] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Nov 15 10:47:44 localhost LCA[85]: Child exited with status 11
    Nov 15 10:47:45 localhost Unknown[199]: Launching the Installer Crash Log Viewer
    Nov 15 10:48:26 localhost ReportCrash[198]: Process:         Mac OS X Installer [146]
    Nov 15 10:48:26 localhost ReportCrash[198]: Path:            /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]: Identifier:      Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]: Version:         ??? (???)
    Nov 15 10:48:26 localhost ReportCrash[198]: Code Type:       X86-64 (Native)
    Nov 15 10:48:26 localhost ReportCrash[198]: Parent Process:  LCA [85]
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Date/Time:       2012-11-15 10:47:15.029 -0800
    Nov 15 10:48:26 localhost ReportCrash[198]: OS Version:      Mac OS X 10.6.3 (10D2322a)
    Nov 15 10:48:26 localhost ReportCrash[198]: Report Version:  6
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Nov 15 10:48:26 localhost ReportCrash[198]: Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]: Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Application Specific Information:
    Nov 15 10:48:26 localhost ReportCrash[198]: objc_msgSend() selector name: release
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libobjc.A.dylib                   0x0000000100583120 objc_msgSend + 44
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.CoreFoundation          0x000000010067cd56 _CFAutoreleasePoolPop + 230
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x00000001008ff308 -[NSAutoreleasePool drain] + 158
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.AppKit                  0x0000000100cdb187 -[NSApplication run] + 543
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.AppKit                  0x0000000100cd3e14 NSApplicationMain + 364
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.MacOSXInstaller         0x00000001000048de 0x100000000 + 18654
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   com.apple.MacOSXInstaller         0x0000000100001540 0x100000000 + 5440
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 1:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x00000001003b5b14 sleep + 61
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.installframework        0x00000001000b8413 do_log_watch + 53
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 2:  Dispatch queue: com.apple.libdispatch-manager
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010034708a kevent + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100348f5d _dispatch_mgr_invoke + 154
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x0000000100348c34 _dispatch_queue_invoke + 185
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   libSystem.B.dylib                 0x000000010034875e _dispatch_worker_thread2 + 252
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   libSystem.B.dylib                 0x0000000100348088 _pthread_wqthread + 353
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100347f25 start_wqthread + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 3:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e2fa mach_msg_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010032e96d mach_msg + 59
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.CoreFoundation          0x0000000100694452 __CFRunLoopRun + 1698
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.CoreFoundation          0x00000001006938df CFRunLoopRunSpecific + 575
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.Foundation              0x00000001009694df +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 4:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e35a semaphore_timedwait_signal_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036cbc2 _pthread_cond_wait + 1015
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x0000000100923d73 -[NSCondition waitUntilDate:] + 399
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.Foundation              0x00000001009170c2 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.installframework        0x000000010008ce71 -[IFSession(Jobs) _runMetaQueueEngine] + 88
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 5:  JavaScriptCore: FastMalloc scavenger
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x00000001003b5b14 sleep + 61
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.JavaScriptCore          0x0000000103573380 ***::TCMalloc_PageHeap::scavengerThread() + 96
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.JavaScriptCore          0x0000000103573569 ***::TCMalloc_PageHeap::runScavengerThread(void*) + 9
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 6:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e35a semaphore_timedwait_signal_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036cbc2 _pthread_cond_wait + 1015
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x0000000100923d73 -[NSCondition waitUntilDate:] + 399
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.Foundation              0x00000001009170c2 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.installframework        0x000000010007de77 +[IFDTargetController(WorkerThread) _handleTargetRequests] + 774
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 7:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x000000010096ef4c +[NSThread sleepForTimeInterval:] + 101
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.SystemMigration         0x0000000101dd9750 -[SMManager _suppressSpotlightThread:] + 104
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 8:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100371dce select$DARWIN_EXTSN + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.CoreFoundation          0x00000001006b5ef2 __CFSocketManager + 818
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 9:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010036ff3a pread + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.DesktopServices         0x0000000105c48bf9 TCopyReader::ReadDataFork() + 187
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.DesktopServices         0x0000000105c49df5 TCopyReader::Read(unsigned long long, TCountedPtr<TCFURLInfo> const&, TCountedPtr<TCFURLInfo> const&) + 161
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.DesktopServices         0x0000000105c34b13 TFSCopyOperation::CopyToTarget() + 607
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.DesktopServices         0x0000000105c3698b TFSCopyOperation::DoCopy(TCountedPtr<TCFURLInfo> const&) + 595
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.DesktopServices         0x0000000105c2c706 _NodeOperation + 469
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   ...ple.CoreServices.CarbonCore    0x0000000102b7f5db _FSFileOperationOperate + 438
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 8   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 10:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036ccd1 _pthread_cond_wait + 1286
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   ...ple.CoreServices.CarbonCore    0x0000000102bc860f TSWaitOnCondition + 118
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   ...ple.CoreServices.CarbonCore    0x0000000102b37e0c TSWaitOnConditionTimedRelative + 177
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   ...ple.CoreServices.CarbonCore    0x0000000102b31d17 MPWaitOnQueue + 215
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.DesktopServices         0x0000000105c46f2e TCopyQueue::Dequeue() + 54
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   com.apple.DesktopServices         0x0000000105c4c668 TCopyWriter::WriteDataFork() + 250
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   com.apple.DesktopServices         0x0000000105c4d520 TCopyWriter::Write() + 158
    Nov 15 10:48:26 localhost ReportCrash[198]: 8   com.apple.DesktopServices         0x0000000105c4d79e TCopyWriter::WriteTaskProc(void*) + 72
    Nov 15 10:48:26 localhost ReportCrash[198]: 9   ...ple.CoreServices.CarbonCore    0x0000000102b0a009 PrivateMPEntryPoint + 63
    Nov 15 10:48:26 localhost ReportCrash[198]: 10  libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 11  libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 0 crashed with X86 Thread State (64-bit):
    Nov 15 10:48:26 localhost ReportCrash[198]:   rax: 0x000000010783ce00  rbx: 0x000000011e6fbb00  rcx: 0x000000011e6fbab0  rdx: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]:   rdi: 0x000000011e6fbb00  rsi: 0x00000001005997e2  rbp: 0x00007fff5fbffa70  rsp: 0x00007fff5fbffa38
    Nov 15 10:48:26 localhost ReportCrash[198]:    r8: 0x0000000000000000   r9: 0x000000012072cd40  r10: 0x00000001206c9d80  r11: 0x000000011e6fbab0
    Nov 15 10:48:26 localhost ReportCrash[198]:   r12: 0x0000000107852a00  r13: 0x0000000107852a00  r14: 0x00000001007f43a0  r15: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]:   rip: 0x0000000100583120  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Binary Images:
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100000000 -        0x10000efff  com.apple.MacOSXInstaller 230.1.1 (262) <990CB5E5-76A8-EC2B-E004-5F566553000C> /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100018000 -        0x10003cfff  com.apple.osinstallframework 518.1.2 (580) <F9DA8A6F-26B0-41CC-9290-7F2CC0C278AC> /System/Library/PrivateFrameworks/Install.framework/Frameworks/OSInstall.framew ork/Versions/A/OSInstall
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10005a000 -        0x10005aff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10005d000 -        0x100068ff7  com.apple.framework.Assistant 1.6.0 (14) <123B4B11-5010-E6CB-1A30-F1682ADC9D7D> /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Assistant
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100075000 -        0x100139fff  com.apple.installframework 518.1.2 (580) <7E077B14-EE5C-5EC1-C22C-3B82DDD1A312> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1001ba000 -        0x1001d2ff7  com.apple.InstallerPlugins 4.0 (430.1) <36397131-FA5D-211E-570F-2C8E93E1A845> /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugi ns
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1001e8000 -        0x100229fff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <C86D8BD3-B4C7-2C15-05EB-E8B7F8FA7F14> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10024d000 -        0x1002abff7  com.apple.framework.IOKit 2.0 (???) <A5C63ACA-8159-36EC-384B-49047CB6940C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1002cd000 -        0x1002d3ff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1002dc000 -        0x100311ff7  com.apple.DiskManagement 3.3 (354) <B5FFE5D8-EDC2-FB4D-5E25-8D4027AC1B00> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10032d000 -        0x1004edfef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <39D14F74-5D42-5807-1DBD-18DBEF1F9E46> /usr/lib/libSystem.B.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10057e000 -        0x100634fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <1960E662-D35C-5D98-EB16-D43166AE6A22> /usr/lib/libobjc.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100648000 -        0x1007bdfef  com.apple.CoreFoundation 6.6.1 (550.19) <47D9567E-1D29-80CD-C9B4-761BCD7261FB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1008d6000 -        0x1008d6ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1008d9000 -        0x100b5afe7  com.apple.Foundation 6.6.2 (751.21) <56F582C4-EDF6-F6E6-B03D-1E306A9B5110> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100cd2000 -        0x1016c7fe7  com.apple.AppKit 6.6.5 (1038.29) <AFE260A6-8FA6-030C-2BC9-E2A468999D71> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101cbc000 -        0x101cf1fef  com.apple.framework.Apple80211 6.2.3 (623.1) <F84FD70E-E432-1B1F-532C-79303ADE76C9> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101d05000 -        0x101d3ffff  com.apple.bom 10.0 (164) <316D9EB3-6D33-6E57-F63A-BA4DCFCE9941> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101d4f000 -        0x101d9dfe7  com.apple.PackageKit 1.0.2 (73) <FFCC5D88-BED9-A1F2-7364-2C5F5E6FCDAF> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101dd3000 -        0x101e7bfe7  com.apple.SystemMigration 300.3 (373) <E823F09F-943A-D3F5-3A93-8AB42645C23F> /System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/SystemMi gration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102069000 -        0x102069ff7  com.apple.CoreServices 44 (44) <616722B1-5E79-DCCF-BF5E-0DD5802CCBD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10206c000 -        0x10207bfff  libxar.1.dylib ??? (???) <B0FB9448-F310-C656-215D-2F5FB993B61A> /usr/lib/libxar.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102083000 -        0x102308fef  com.apple.security 6.1.1 (37594) <9E77A468-2140-9C5D-B5EF-76C51C857D4A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1023fe000 -        0x10240fff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102414000 -        0x102422ff7  libkxld.dylib ??? (???) <7E91FA6A-6E0C-F595-FF31-80D0BD5804FC> /usr/lib/system/libkxld.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102426000 -        0x102472fff  libauto.dylib ??? (???) <9B1DB6E8-4D79-B79C-D9EC-85592478F632> /usr/lib/libauto.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10247f000 -        0x10263dfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <3D9313BF-97A4-6B65-E583-F6173E64C3C2> /usr/lib/libicucore.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1026ac000 -        0x102729fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10278a000 -        0x10278eff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102791000 -        0x10284afff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <73E3FA58-51C0-ED7B-C5EB-E8F62AED386B> /usr/lib/libsqlite3.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10285a000 -        0x102867ff7  com.apple.AppleFSCompression 24.3 (1.0) <B1FFA9F9-9473-9EEB-D446-44330652D6A8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10286f000 -        0x10287bfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <ECA200F9-9C46-579A-6447-16B8BFB93D96> /usr/lib/libbz2.1.0.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102880000 -        0x102997fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AFE91118-DBF3-6313-37B8-8A2002C6A46B> /usr/lib/libxml2.2.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1029c0000 -        0x102a90fff  com.apple.CFNetwork 454.9.4 (454.9.4) <D872444D-8A84-1583-4633-767CE10DB4BA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102b03000 -        0x102e36fef  com.apple.CoreServices.CarbonCore 861.6 (861.8) <8622D612-E3BE-C4E9-3253-129790E77F2E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102eaf000 -        0x102ef9ff7  com.apple.Metadata 10.6.3 (507.8) <CABBB8CF-AB18-1C01-DBF7-ADE002967249> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102f23000 -        0x102fe0ff7  com.apple.CoreServices.OSServices 357 (357) <8D588EB3-92CC-3DB8-61E7-637CECCF7688> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10303a000 -        0x1030cafff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103108000 -        0x103143fff  com.apple.AE 496.4 (496.4) <CB905496-4D6B-F26A-399D-840D26DBEE5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10315d000 -        0x1031fdfff  com.apple.LaunchServices 362.1 (362.1) <CC3BE120-AF3C-FE7E-342D-EB2A208AE20E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103243000 -        0x10326bfff  com.apple.DictionaryServices 1.1.1 (1.1.1) <FBE782D5-F5F5-DA3B-EE10-8D6B24BD6C03> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103285000 -        0x10329bfef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032a4000 -        0x1032b3fff  com.apple.NetFS 3.2.1 (3.2.1) <DE59FB56-8536-9999-352A-2016ADCF4FCF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032bc000 -        0x1032e7ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <6589F0FC-41DB-8494-CA8B-487F4E328EB9> /usr/lib/libxslt.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032f2000 -        0x103401fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <804D3424-EB13-4E87-D721-3A0511110A95> /usr/lib/libcrypto.0.9.8.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103466000 -        0x1035ecfe7  com.apple.JavaScriptCore 6531.22 (6531.22.5) <AF2C47DA-4E57-5EC2-8F51-9827C802CFFA> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103657000 -        0x103658ff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10365c000 -        0x103667fff  com.apple.CrashReporterSupport 10.6.3 (250) <C6ADB9F6-5BC8-C45F-2FD4-35AE42367975> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103674000 -        0x103d71067  com.apple.CoreGraphics 1.544.1 (???) <4CFF2265-A2DF-CA9E-9DFB-1F044276A9BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103e63000 -        0x10401dfff  com.apple.ImageIO.framework 3.0.2 (3.0.1) <4178D2C4-CD81-564A-DCB8-EEB52EF56C12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104083000 -        0x104101fff  com.apple.CoreText 3.1.0 (???) <E83F0CB9-B937-FE97-A6B3-9466BA560C8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10413f000 -        0x1041d9fff  com.apple.ApplicationServices.ATS 4.2 (???) <9A9A4671-D498-7C1F-7DBD-3FE4B1A2A276> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104202000 -        0x1042b7fe7  com.apple.ColorSync 4.6.3 (4.6.3) <412C460A-C792-5A15-FD42-1FBE20FC4E3F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1042f4000 -        0x104345fe7  com.apple.HIServices 1.8.0 (???) <2D0D9100-B712-ED4B-7622-BBA92053F446> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104371000 -        0x104386ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <8327481D-1C88-4085-2F74-72CD92196120> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104394000 -        0x104419fff  com.apple.print.framework.PrintCore 6.2 (312.5) <2BA9CEF6-CCF4-6719-9642-E9667F815C66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10444f000 -        0x104490fef  com.apple.QD 3.35 (???) <6B7D6A89-2578-5C40-C0DE-A5BCB0AA6FD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044a8000 -        0x1044bcff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044cd000 -        0x1044cdff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044d0000 -        0x10451ffef  libTIFF.dylib ??? (???) <8A8AF1CB-80E6-1457-E52A-1271733CBF7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10452c000 -        0x104531fff  libGIF.dylib ??? (???) <5AD1D618-2C1D-AD00-7EA4-D8EC6A1773A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104536000 -        0x104554fff  libPng.dylib ??? (???) <4EFA6B07-6613-BC33-11D7-CF2D9B967511> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10455c000 -        0x10455efff  libRadiance.dylib ??? (???) <3DAD870E-B3AE-B998-AA36-9D6B940D44C2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104562000 -        0x104588fe7  libJPEG.dylib ??? (???) <F0FD3FDA-432D-9920-6AA9-3AE1191D6AEA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104590000 -        0x10466afff  com.apple.vImage 4.0 (4.0) <B5A8B93B-D302-BC30-5A18-922645DB2F56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104679000 -        0x104679ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10467c000 -        0x1046c4ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1046cc000 -        0x104736fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104740000 -        0x104f4afe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104f93000 -        0x1053d6fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105563000 -        0x105623fe7  libFontParser.dylib ??? (???) <A79479ED-819A-2B63-4900-D4790E74006F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10571a000 -        0x10574fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <CE664505-29D1-3634-A055-99D2874FA671> /usr/lib/libcups.2.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10575e000 -        0x10580dfff  edu.mit.Kerberos 6.5.9 (6.5.9) <D6C7CD0A-EA9E-1B7F-2D7E-4CC08A78B678> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105833000 -        0x105854fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9B7AEE96-D18E-5ECF-9837-BD5CFD397831> /usr/lib/libresolv.9.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10585e000 -        0x105983fef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <72149B5E-BEC7-B6E9-3B34-0E0620827542> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1059f2000 -        0x1059f3ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <65C333FF-3F7A-AD36-DC36-D3F2F46727C5> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1059f8000 -        0x105b36fff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105bce000 -        0x105cb4fe7  com.apple.DesktopServices 1.5.5 (1.5.5) <5130409F-082D-B3F3-B567-C52638FF483C> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105d03000 -        0x106001fef  com.apple.HIToolbox 1.6.2 (???) <193A3F85-A1F8-2FD7-A8BD-D6AE722C8BA9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10612d000 -        0x1064c5fe7  com.apple.QuartzCore 1.6.1 (227.18) <00EED230-F7BA-6455-2C9D-A65B590E6E13> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1065f2000 -        0x1065fdff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106607000 -        0x10664eff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106673000 -        0x1066f2fef  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <03D4DAA6-E987-F51B-93AE-3C2D91AA570A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106728000 -        0x106729fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10672d000 -        0x106743ff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <D015924C-4282-B5EF-7190-340F46FB6F18> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106750000 -        0x106750ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106753000 -        0x1067a8fef  com.apple.framework.familycontrols 2.0.1 (2010) <23A6340F-D798-C8C0-93A7-384E964297CF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1067c5000 -        0x10687afe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1068ad000 -        0x1068d2ff7  com.apple.CoreVideo 1.6.1 (45.5) <EEAD844B-D846-F27B-6BFF-D97D3FC31BBC> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1068eb000 -        0x1068faff7  com.apple.opengl 1.6.8 (1.6.8) <A4784A50-F306-61A7-3638-96D538CBC934> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106903000 -        0x106934fff  libGLImage.dylib ??? (???) <27565CDD-3A12-6DA7-23C1-E2A21216CB2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10693b000 -        0x10695efff  com.apple.opencl 12.1 (12.1) <E92CDD8E-5B2C-209B-7C85-79605E3BDB01> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106967000 -        0x10696dff7  IOSurface ??? (???) <4FFF6BA6-785C-DC57-6E4A-4D0156972BB2> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106976000 -        0x1069bffef  libGLU.dylib ??? (???) <41CE0600-B36C-7C5D-85F4-68A5F2E3CCD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1069ce000 -        0x1069e2fff  libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1069f2000 -        0x106b0bfef  libGLProgrammability.dylib ??? (???) <39A6A60E-5B7A-89B0-5CBF-99FD62C37F30> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b2c000 -        0x106b2fff7  libCoreVMClient.dylib ??? (???) <305BFF0D-6C64-AFEE-68F7-FECA17199860> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b34000 -        0x106b39fff  libGFXShared.dylib ??? (???) <8D5BE6C3-A830-54A5-5371-575293D31B0A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b3e000 -        0x106bcafef  SecurityFoundation 36840.0.0 (compatibility 1.0.0) <105C82B6-A1C7-9082-ECA6-AEA08C1948C6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c0e000 -        0x106c15fff  com.apple.OpenDirectory 10.6 (10.6) <D72FD8AB-B328-B27B-DA16-3BBB7BC0C08C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c1e000 -        0x106c37fff  com.apple.CFOpenDirectory 10.6 (10.6) <E98F7642-7F87-C3B4-18FB-3D3947E53CD0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c4c000 -        0x106c6cff7  com.apple.DirectoryService.Framework 3.6 (621.3) <8FBCBA30-5BB6-E447-8146-08486933AEB8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c76000 -        0x106cb7ff7  com.apple.MediaKit 10.3 (485) <779F7525-0F11-0FAA-9E3B-3F22DD975CC5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106cca000 -        0x106da2fe7  com.apple.DiscRecording 5.0.5 (5050.4.6) <4B3F20F9-7966-66C3-8C5F-E2D482184EA2> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106e02000 -        0x106e1cff7  com.apple.NetInfo 1.0.0 (???) <7348D6F9-9EB3-7E93-9F98-B6D690B95226> /System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/NetInfo
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106e28000 -        0x106f28ff7  com.apple.DiskImagesFramework 10.6.4 (285) <6B33176A-CF2B-8052-1556-D163E8DDC097> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106f85000 -        0x106f85ff7  com.apple.Carbon 150 (152) <586B20CD-AEB9-57F1-F2C1-BB14BE70C5B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106f88000 -        0x106fc4fe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <EABCA30B-B900-0BCC-84A1-5C1F3F13D221> /usr/lib/libcurl.4.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106fd2000 -        0x10700aff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D98473F3-AF4F-B2C0-E597-637033EE3111> /usr/lib/libssl.0.9.8.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10701f000 -        0x107024ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10702c000 -        0x10702ffff  com.apple.help 1.3.1 (41) <AEDDF93F-BAC0-0308-68FD-039A99F3A158> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107035000 -        0x10704bfff  com.apple.ImageCapture 6.0 (6.0) <01E09982-7DD2-0868-0180-42E7D298B35A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107065000 -        0x107080ff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107091000 -        0x107093fff  com.apple.print.framework.Print 6.1 (237.1) <87A5BEEC-2D37-5CB7-8B13-7B605397573F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107098000 -        0x10709bff7  com.apple.securityhi 4.0 (36638) <0234B95B-A339-4576-BB0D-A568634B50F5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1074c3000 -        0x1074d0fe7  libCSync.A.dylib 544.1.0 (compatibility 64.0.0) <46F00644-B0B4-1214-A17E-70F4F1702048> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107622000 -        0x107629fff  com.apple.TIMCore 1.2.0 (1.2.0) <040AADAE-E9BD-167A-9B07-E65E7C82A5F2> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TIMCore.bundle/Contents/MacOS/TIMC ore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107632000 -        0x107643ff7  com.apple.TextInputUI 1.0 (1.0) <7F16CC61-2F8D-8C43-50F9-A1B493C407C8> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedFrameworks/TextInputUI.framework/Versions/ A/TextInputUI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107655000 -        0x107670ff7  com.apple.airport.clientbundle 6.2.1 (621.1) <4567D8C0-9321-F90C-E71B-5DFAA195CC9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entController.bundle/Contents/MacOS/ClientController
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107788000 -        0x1077cbff7  libRIP.A.dylib 544.1.0 (compatibility 64.0.0) <D1DB9F39-1510-9DB3-B14D-A15879328CC2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1077dc000 -        0x1077e0ff7  libCGXType.A.dylib 544.1.0 (compatibility 64.0.0) <C141864F-9475-4E48-FDF6-B11518560F2D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10dde1000 -        0x10dde7fff  libCGXCoreImage.A.dylib 544.1.0 (compatibility 64.0.0) <A7D4D3BE-393C-2D09-41C1-623A59B76066> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11e300000 -        0x11e3cbfe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <A34CE62D-4733-B8BF-A9B2-09933AA467C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11e59f000 -        0x11e5dcff7  libFontRegistry.dylib ??? (???) <D82C0359-D761-79ED-09F5-00A1F9108076> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f675000 -        0x11f693ff7  com.apple.menuextra.airport 6.2.1 (621.1) <0FF0765C-F601-3915-8852-688F71238C45> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f6a6000 -        0x11f6c9ff7  com.apple.SystemConfiguration.EAP8021X 10.0.1 (1.0) <4856F0D0-8DBE-BB58-7B59-371AC2783969> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f6d5000 -        0x11f71eff7  com.apple.securityinterface 4.0.1 (37214) <08DB37D6-A716-DC37-536C-7889999EF395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1205a0000 -        0x1205cfff7  com.apple.XInstall.InstallAssistant 230.1.1 (262) <CBBC52A9-E10A-8A4B-EC22-41C3F5551443> /System/Installation/CDIS/Mac OS X Installer.app/Contents/Resources/OSXInstallAssistant.bundle/Contents/MacOS/OSXI nstallAssistant
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x120baa000 -        0x120bdbfef  libTrueTypeScaler.dylib ??? (???) <3F09E12E-1A3F-E592-31EF-52D77E968FB2> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:     0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <DB8B8AB0-0C97-B51C-BE8B-B79895735A33> /usr/lib/dyld
    Nov 15 10:48:26 localhost ReportCrash[198]:     0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <39D14F74-5D42-5807-1DBD-18DBEF1F9E46> /usr/lib/libSystem.B.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:50:27 localhost Viewer[200]: NetworkBrowser failed to launch "/usr/bin/nmblookup" (No such file or directory)

    You can't restore a backup made by Time Machine in Mountain Lion using 10.6 discs! You need to start up in Mountain Lion's recovery mode. See How do I restore my entire system?
    Since you have replaced the hard drive, that means (unfortunately) that the recovery partition is gone. However, I believe that the recovery partition gets backed up on your Time Machine backups, if you're backing up to a directly-connected hard drive. Try starting up while holding option with the Time Machine drive connected. If you see any recovery "drives" show up, boot from that and you're good.
    If that doesn't work, since your machine didn't ship with Mountain Lion (which it obviously didn't if you're able to install Snow Leopard on it), it may not be capable of internet recovery. You could always try internet recovery (hold command-option-R at startup), as there was a firmware update for certain machines a while back that added this capability... though that might only give you Lion, I'm not entirely sure how it works.
    If all else fails, you'll need to install Snow Leopard, then update to Mountain Lion. (Save a copy of the installer for the future, and make a bootable Mountain Lion disk from it.) That will give you back the recovery partition so you can restore.

  • I have a MBP from 2008 (before unibody) and when i try to use apps such as Mail and the Mac App Store, they crash when i click on the links (to purchase something). I found it only happened after i updated to 10.7.4. can some1 please tell me what i can do

    Hi everyone, I have a macbook pro from 2008 which is the model before they became unibody. I have been having trouble using some of the built-in apps ever since i updated to 10.7.4. I cant use mail or the Mac App store becuase when i go to click on a link to purchase something in the Mac App Store of create a new email in Mail, the app just crashes. I am then asked to reopen the app and i try to do the same thing again and they same thing happens. Its really painful as i want to download applications and access my mail on my mac. Could you guys please get back to me on with somethings that i could try to get these apps working again.
    Thanks

    Hi Richard,
    these are the things for when mail quits
    here are the things that come from the console app
    I also copied the words that came in the window when an app quits
    Process:         Mail [2229]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.2 (1278)
    Build Info:      Mail-1278000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2012-07-23 18:38:28.318 +0800
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          159173 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  61 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      903F8ACA-456A-4BFE-ACC9-1D5C31F6FF48
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff7b534568
    VM Regions Near 0x7fff7b534568:
        __DATA                 00007fff7b4c1000-00007fff7b4c4000 [   12K] rw-/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    --> __DATA                 00007fff7b4c4000-00007fff7b571000 [  692K] rw-/rwx SM=COW  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        __DATA                 00007fff7b571000-00007fff7b57d000 [   48K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    Application Specific Information:
    objc[2229]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0x00007fff7b534568 OBJC_CLASS_$_NSProcessInfo + 0
    1   com.apple.mail                          0x0000000104401fe2 0x104365000 + 643042
    2   com.apple.mail                          0x0000000104401f1a 0x104365000 + 642842
    3   com.apple.AppKit                        0x00007fff8b2682ce -[NSWindow sendEvent:] + 2088
    4   com.apple.mail                          0x000000010442b9f9 0x104365000 + 813561
    5   com.apple.AppKit                        0x00007fff8b202a55 -[NSApplication sendEvent:] + 5593
    6   com.apple.mail                          0x00000001043e4d1b 0x104365000 + 523547
    7   com.apple.AppKit                        0x00007fff8b1990c6 -[NSApplication run] + 555
    8   com.apple.AppKit                        0x00007fff8b415244 NSApplicationMain + 867
    9   com.apple.mail                          0x000000010443d52c 0x104365000 + 886060
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff924e278a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff924e131a _dispatch_mgr_thread + 54
    Thread 2:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 3:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4b3736 -[AOSThreadManager AOSKPersistMailAliases:] + 1173
    5   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff9258e2dd -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff925adaa9 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 8:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 9:: -[MFAosImapAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 10:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 11:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 12:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff91ca56c8 CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff91ca53e9 _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 13:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099bde0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8d4eb76a ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff8d4eb6c3 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff8d4eb60b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff95867fd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff90c127ed JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00007fff90c12a40 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x00007fff90c12ae9 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 16:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099be37 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore                0x00007fff90c1b12c JSC::Heap::blockFreeingThreadMain() + 300
    4   com.apple.JavaScriptCore                0x00007fff90c1b169 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 17:: -[POPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff9264d87e -[Account _connectAndAuthenticate:] + 147
    15  com.apple.MessageFramework              0x00007fff9264dc5b -[Account authenticatedConnection] + 86
    16  com.apple.MessageFramework              0x00007fff92787f17 -[POP3FetchStore _authenticatedConnection] + 51
    17  com.apple.MessageFramework              0x00007fff9278831d -[POP3FetchStore fetchSynchronously] + 367
    18  com.apple.MessageFramework              0x00007fff9278a832 -[POPAccount fetchSynchronously] + 154
    19  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    21  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    22  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    23  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    24  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    25  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    26  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    27  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    28  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    29  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 18:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 19:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4bfa68 -[AOSConfig setupInfo] + 237
    5   com.apple.AOSKit                        0x00007fff8f4bf3e6 +[AOSConfig validationURLWithAppleID:andCurrentClient:] + 57
    6   com.apple.AOSKit                        0x00007fff8f4b6b9c -[AOSThreadManager AOSKPersistAccountData:] + 1416
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 23:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff8b3d14d3 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                

  • "Safari quit unexpectedly" after restoring backup from Time Machine

    I updated to the new Yosemite this morning, only to find that after, I couldn't get online, couldn't get emails, nothing.  After searching online found out that a lot of people had the same problems, so I restored an old update through Time Machine. Everything's back to normal now and working again, except Safari.  Everytime I try to open it, I get an error message and it shuts down immediately.  Any idea what's causing the problem or how I can fix it?  Here's the error:
    Process:    
    Safari [321]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.2 (8537.85.10.17.1)
    Build Info: 
    WebBrowser-7537085010017001~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [172]
    User ID:    
    501
    Date/Time:  
    2014-11-25 21:05:38.028 -0700
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:     
    2886 sec
    Crashes Since Last Report:      
    1
    Per-App Interval Since Last Report:  3 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    8E44AB2B-C2E1-C3AF-6BD5-A9B314147811
    Crashed Thread:  10
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000b4a9bc
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0xb4a9bc:
    -->
    __TEXT            
    000000010e79a000-000000010e79b000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Single Web Process
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.Foundation    
    0x0000000110d62bf2 _qfqp2parse + 657
    1   com.apple.Foundation    
    0x0000000110d62608 _qfqp2_performParsing + 138
    2   com.apple.Foundation    
    0x0000000110d6f765 +[NSPredicate predicateWithFormat:argumentArray:] + 46
    3   com.apple.Safari.framework  
    0x000000010e9f7514 Safari::SearchProvidersController::evaluatePredicate(Safari::CF::String const&) + 66
    4   com.apple.Safari.framework  
    0x000000010e9f651a Safari::addProvider(***::PassRefPtr<Safari::SearchProvider>, ***::Vector<***::RefPtr<Safari::SearchProvider>, 0ul, ***::CrashOnOverflow>&) + 183
    5   com.apple.Safari.framework  
    0x000000010e9f67d2 Safari::SearchProvidersController::parseProvidersFromManifest(Safari::CF::Dicti onary const&, ***::Vector<***::RefPtr<Safari::SearchProvider>, 0ul, ***::CrashOnOverflow>&, Safari::SearchProvider const*&, int&) + 336
    6   com.apple.Safari.framework  
    0x000000010e9f2bdc Safari::SearchProvidersController::loadAllProviders(Safari::CF::URL const&) + 120
    7   com.apple.Safari.framework  
    0x000000010e9f2abd Safari::SearchProvidersController::SearchProvidersController() + 123
    8   com.apple.Safari.framework  
    0x000000010e9f2a0e Safari::SearchProvidersController::shared() + 46
    9   com.apple.Safari.framework  
    0x000000010e87b9ce -[BrowserWindowControllerMac _defaultSearchProviderDisplayName] + 11
    10  com.apple.Safari.framework  
    0x000000010e86d891 -[BrowserWindowControllerMac unifiedFieldPlaceholderString] + 65
    11  com.apple.Safari.framework  
    0x000000010e87ba57 -[BrowserWindowControllerMac _updateSearchFieldProviderText] + 61
    12  com.apple.Safari.framework  
    0x000000010e87c190 -[BrowserWindowControllerMac _setUpLocationBar] + 203
    13  com.apple.Safari.framework  
    0x000000010e86b7b0 -[BrowserWindowControllerMac windowDidLoad] + 907
    14  com.apple.AppKit        
    0x0000000111f16f82 -[NSWindowController _windowDidLoad] + 448
    15  com.apple.Safari.framework  
    0x000000010ea939ca -[WindowController _windowDidLoad] + 43
    16  com.apple.AppKit        
    0x0000000111ee82da -[NSWindowController window] + 114
    17  com.apple.Safari.framework  
    0x000000010e86be3a -[BrowserWindowControllerMac showWindow:] + 50
    18  com.apple.AppKit        
    0x0000000111c731b6 -[NSDocument showWindows] + 103
    19  com.apple.Safari.framework  
    0x000000010e839c78 -[BrowserDocument showWindows] + 39
    20  com.apple.AppKit        
    0x0000000111c7136f -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 461
    21  com.apple.AppKit        
    0x0000000111c7115e -[NSDocumentController newDocument:] + 39
    22  com.apple.Safari.framework  
    0x000000010e9c3433 -[WindowReopener reopenWithArrayOfWindowControllerNames:] + 120
    23  com.apple.Safari.framework  
    0x000000010e9c35f4 -[WindowReopener init] + 117
    24  com.apple.Safari.framework  
    0x000000010e9c3703 +[WindowReopener reopenWindows] + 43
    25  com.apple.Safari.framework  
    0x000000010e7b2f47 -[AppController _openUntitledFileWhileLaunching:] + 157
    26  com.apple.Safari.framework  
    0x000000010e7afe88 -[AppController applicationOpenUntitledFile:] + 22
    27  com.apple.AppKit        
    0x0000000111dc9c34 -[NSApplication _doOpenUntitled] + 482
    28  com.apple.AppKit        
    0x0000000111dc96cf __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 233
    29  com.apple.AppKit        
    0x000000011210b6c1 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01437 + 143
    30  com.apple.AppKit        
    0x0000000111dc917b -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 760
    31  com.apple.AppKit        
    0x0000000111dc766e -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 298
    32  com.apple.AppKit        
    0x0000000111dc7445 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    33  com.apple.AppKit        
    0x0000000111dc704c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    34  com.apple.Foundation    
    0x0000000110d0805b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    35  com.apple.Foundation    
    0x0000000110d07ebd _NSAppleEventManagerGenericHandler + 106
    36  com.apple.AE            
    0x0000000114d47078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    37  com.apple.AE            
    0x0000000114d46ed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    38  com.apple.AE            
    0x0000000114d46d99 aeProcessAppleEvent + 318
    39  com.apple.HIToolbox     
    0x000000011381b709 AEProcessAppleEvent + 100
    40  com.apple.AppKit        
    0x0000000111dc3836 _DPSNextEvent + 1456
    41  com.apple.AppKit        
    0x0000000111dc2df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    42  com.apple.Safari.framework  
    0x000000010e8022f0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    43  com.apple.AppKit        
    0x0000000111dba1a3 -[NSApplication run] + 517
    44  com.apple.AppKit        
    0x0000000111d5ebd6 NSApplicationMain + 869
    45  com.apple.Safari.framework  
    0x000000010e9c6bdd SafariMain + 267
    46  libdyld.dylib           
    0x00000001142a07e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x000000011447cd16 kevent + 10
    1   libdispatch.dylib       
    0x0000000114268dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib       
    0x00000001142689ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x000000011447c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x000000011430efb9 _pthread_cond_wait + 869
    2   com.apple.WebCore       
    0x00000001182452db WebCore::IconDatabase::syncThreadMainLoop() + 411
    3   com.apple.WebCore       
    0x0000000118242c87 WebCore::IconDatabase::iconDatabaseSyncThread() + 295
    4   com.apple.JavaScriptCore
    0x000000010f34633f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x000000011447c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x000000011430cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x000000011430cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.ubkvstore
    0   libsystem_kernel.dylib  
    0x000000011447a6c2 semaphore_wait_trap + 10
    1   libdispatch.dylib       
    0x0000000114269486 _dispatch_semaphore_wait_slow + 241
    2   libxpc.dylib            
    0x0000000114543e1f xpc_connection_send_message_with_reply_sync + 127
    3   com.apple.SyncedDefaults
    0x000000012207bfcd -[SYDClient _sendMessageWithReplySync:] + 188
    4   com.apple.SyncedDefaults
    0x000000012207c7aa -[SYDClient sendMessageWithName:userInfo:] + 52
    5   libdispatch.dylib       
    0x0000000114269f01 _dispatch_call_block_and_release + 15
    6   libdispatch.dylib       
    0x00000001142660b6 _dispatch_client_callout + 8
    7   libdispatch.dylib       
    0x000000011426747f _dispatch_queue_drain + 235
    8   libdispatch.dylib       
    0x00000001142672f1 _dispatch_queue_invoke + 52
    9   libdispatch.dylib       
    0x00000001142671c3 _dispatch_worker_thread2 + 249
    10  libsystem_c.dylib       
    0x000000011430ccdb _pthread_wqthread + 404
    11  libsystem_c.dylib       
    0x00000001142f7191 start_wqthread + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x000000011447a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x0000000114479c42 mach_msg + 70
    2   com.apple.QuartzCore    
    0x000000010ff1017b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore    
    0x000000010ff94dc6 thread_fun + 25
    4   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    5   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x000000011447a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x0000000114479c42 mach_msg + 70
    2   com.apple.CoreFoundation
    0x00000001117cf233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation
    0x00000001117d4916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation
    0x00000001117d40e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation    
    0x0000000110cdd526 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation    
    0x0000000110d3b532 __NSThread__main__ + 1345
    7   libsystem_c.dylib       
    0x000000011430a772 _pthread_start + 327
    8   libsystem_c.dylib       
    0x00000001142f71a1 thread_start + 13
    Thread 10 Crashed:
    0   com.apple.AppKit        
    0x0000000111ccc179 +[NSCarbonMenuImpl _globalCarbonBeginOrEndTrackingEvent:handlerCallRef:] + 562
    Thread 10 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000b4a9bc  rbx: 0x0000000000000054  rcx: 0x0000000112fb6000  rdx: 0x0000000000000054
      rdi: 0x0000000112fb6000  rsi: 0x0000000111aed000  rbp: 0x0000000112fb7ff0  rsp: 0x0000000112fb7f68
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000111da04b0  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000111aed000
      rip: 0x0000000111ccc179  rfl: 0x0000000000010203  cr2: 0x0000000000b4a9bc
    Logical CPU: 3
    Binary Images:
    0x10e79a000 -   
    0x10e79afff  com.apple.Safari (6.2 - 8537.85.10.17.1) <E64F560A-C59E-35BF-9481-127A52D19951> /Applications/Safari.app/Contents/MacOS/Safari
    0x10e7a6000 -   
    0x10ed84ff7  com.apple.Safari.framework (8537 - 8537.85.10.17.1) <03D96220-109E-3CEC-8E38-E97669EB2746> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    0x10f159000 -   
    0x10f15aff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
    0x10f164000 -   
    0x10f17afff  com.apple.Accounts (211.2 - 211.2) <AC7386F8-FCAB-35CD-AB39-0ADD254F35CD> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x10f192000 -   
    0x10f193fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
    0x10f19f000 -   
    0x10f1cbfff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x10f1e3000 -   
    0x10f1e3fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x10f1eb000 -   
    0x10f1ebfff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x10f1f0000 -   
    0x10f24cfff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x10f284000 -   
    0x10f290fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x10f29f000 -   
    0x10f30dff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x10f33c000 -   
    0x10f861ff7  com.apple.JavaScriptCore (8600 - 8600.1.17) <1805970E-7107-3539-9DE7-7CC746965EA9> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x10f9d4000 -   
    0x10fbd4fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x10fc7a000 -   
    0x10fd77fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x10fd8f000 -   
    0x10fdc7fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x10fdd8000 -   
    0x10fde7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
    0x10fdf2000 -   
    0x10fe01fff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x10fe0a000 -   
    0x10fe31ff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x10fe53000 -   
    0x110001fff  com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x1100b9000 -   
    0x11038afff  com.apple.security (7.0 - 55719.16.5) <0EEE5DDE-77FB-374A-B1E0-6B19CB44E8EC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1104c1000 -   
    0x110540ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x110580000 -   
    0x1105b4fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x1105e1000 -   
    0x1105e2ff7  com.apple.SafariServices.framework (8537 - 8537.85.10.17.1) <28F72740-74D6-3D6F-BD96-832E05B68796> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x1105e7000 -   
    0x110638ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x11066b000 -   
    0x1109c2fff  com.apple.WebKit (8600 - 8600.1.17) <39C9C71F-FE64-3F30-ABBB-6824326BCDC5> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x110c97000 -   
    0x110c97fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x110c9c000 -   
    0x110c9cfff  com.apple.WebKit2 (8600 - 8600.1.17) <BCDDA15B-0F2A-3EB7-9738-3E33F7AA7DC6> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x110ca1000 -   
    0x110ca1fff  com.apple.AOSMigrate (1.0 - 1) <9E7A92DC-649D-3908-BB36-B7F445261F14> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x110ca5000 -   
    0x111004fff  com.apple.Foundation (6.8 - 945.19) <C98E55BA-553B-314B-B056-849FFB20C220> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x111229000 -   
    0x11134192f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x111363000 -   
    0x1113cbff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
    0x111424000 -   
    0x111424fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x111428000 -   
    0x1114faff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x11155a000 -   
    0x11155bfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x111560000 -   
    0x1116d5fff  com.apple.CFNetwork (596.6.3 - 596.6.3) <883CE0E5-17B6-3227-B7B1-0CCC16D2739E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x111798000 -   
    0x111798fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x11179f000 -   
    0x111989ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x111aee000 -   
    0x111c07fff  com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x111c65000 -   
    0x111c65fff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x111c6e000 -   
    0x11289bfff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x112f93000 -   
    0x112fa5ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x112faf000 -   
    0x112fb1fff  com.apple.OAuth (18.1 - 18.1) <8CC24408-C139-300E-9D11-CB064D80FF98> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x112fbb000 -   
    0x112fc5ff7  com.apple.xpcobjects (103 - 103) <03968AE7-D7D9-3B12-A2A5-045957DC3526> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x112fd4000 -   
    0x113017ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x113050000 -   
    0x1131a2fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x113231000 -   
    0x113231ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x113237000 -   
    0x11346cff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x11356f000 -   
    0x1135dcff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x11361b000 -   
    0x11373bfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x1137b1000 -   
    0x113ae1fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x113c3b000 -   
    0x113c45fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x113c53000 -   
    0x113c9fff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
    0x113cb6000 -   
    0x113db3ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
    0x113dee000 -   
    0x113eb3ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x113f2a000 -   
    0x113f8dfff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x113fb8000 -   
    0x113fbefff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x113fc8000 -   
    0x113fc9fff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
    0x113fcf000 -   
    0x113fd0fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x113fdb000 -   
    0x113ff1fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x114002000 -   
    0x114019fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x114024000 -   
    0x1140fefff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x114183000 -   
    0x1141a4ff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
    0x1141b5000 -   
    0x1141b9ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x1141c1000 -   
    0x1141e6ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
    0x114219000 -   
    0x11421efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x114226000 -   
    0x114234fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
    0x114244000 -   
    0x114249fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x114252000 -   
    0x114259ff7  libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
    0x114264000 -   
    0x114279ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x114295000 -   
    0x114296ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
    0x11429e000 -   
    0x1142a1ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x1142a8000 -   
    0x1142a8fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x1142b1000 -   
    0x1142b9fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x1142c8000 -   
    0x1142cefff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x1142d5000 -   
    0x1142d7fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
    0x1142e0000 -   
    0x1142e1ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x1142e9000 -   
    0x1142eafff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x1142f6000 -   
    0x1143c2ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
    0x114408000 -   
    0x114410ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
    0x114418000 -   
    0x11444eff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
    0x11446a000 -   
    0x114485ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    0x11449c000 -   
    0x1144caff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
    0x1144dc000 -   
    0x1144eaff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
    0x1144f7000 -   
    0x114502fff  libsystem_notify.dylib (98.6) <1E490CB2-9311-3B36-8372-37D3FB0FD818> /usr/lib/system/libsystem_notify.dylib
    0x11450d000 -   
    0x11450eff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x114517000 -   
    0x114519ff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
    0x114526000 -   
    0x11452cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x114538000 -   
    0x11455aff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x114577000 -   
    0x1145c6ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x1145d7000 -   
    0x114640fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x1146a5000 -   
    0x1146b8ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x1146c5000 -   
    0x1146c9fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x1146cf000 -   
    0x1146cffff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
    0x1146d8000 -   
    0x1146e5fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x1146f0000 -   
    0x114a07ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x114a88000 -   
    0x114b09fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x114b63000 -   
    0x114c09ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x114c69000 -   
    0x114cf6ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x114d3e000 -   
    0x114d9dfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x114dcd000 -   
    0x114e7fff7  com.apple.LaunchServices (539.11 - 539.11) <A86F44E5-F285-3029-A5D1-00CD3C231A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x114ed3000 -   
    0x114f04ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x114f27000 -   
    0x114f2efff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x114f37000 -   
    0x114f45ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
    0x114f4e000 -   
    0x114f5bff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x114f69000 -   
    0x114f80fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x114fa2000 -   
    0x114fcdfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x114fe0000 -   
    0x115007fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x115023000 -   
    0x1150c1ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x1150f8000 -   
    0x115a88a07  com.apple.CoreGraphics (1.600.0 - 340) <4E39B001-BD9B-3A60-A495-C7F908F52C44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x115b91000 -   
    0x115c11ff7  com.apple.ApplicationServices.ATS (341.2 - 341.2) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x115c3e000 -   
    0x115cfbff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x115d43000 -   
    0x115d99fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x115dd2000 -   
    0x115de5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x115df4000 -   
    0x115e4efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x115e81000 -   
    0x115ec0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x115eda000 -   
    0x115eeefff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x115f03000 -   
    0x115f07fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x115f17000 -   
    0x115f17fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x115f1d000 -   
    0x116029fff  libFontParser.dylib (84.7) <C3D1121B-B066-34C3-9D31-ADDF387C0B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x116091000 -   
    0x1160e0ff7  libFontRegistry.dylib (100) <F7EC0287-58E4-3ABE-A45E-B105A68EA76E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x11610e000 -   
    0x1162a9fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x1162cf000 -   
    0x1162cffff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x1162d8000 -   
    0x116340fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x116350000 -   
    0x1163eafff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x1163f6000 -   
    0x1167edfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x116852000 -   
    0x1169d8fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x116a07000 -   
    0x116a2ffff  libJPEG.dylib (852) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x116a3a000 -   
    0x116a8fff7  libTIFF.dylib (852) <0CA1662F-EB05-34DE-B9BA-0A03EC59B846> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x116aa1000 -   
    0x116ac1fff  libPng.dylib (852) <CCBFA9A9-33C0-3189-AFE0-A77E831EEBA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x116acd000 -   
    0x116ad1fff  libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x116ad7000 -   
    0x116bd9fff  libJP2.dylib (852) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x116c08000 -   
    0x116c0bfff  libRadiance.dylib (852) <139962CD-21E2-3D31-9F47-D5F2D6C2C2BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x116c13000 -   
    0x116c57fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
    0x116c70000 -   
    0x116c92ff7  com.apple.Kerberos (2.0 - 1) <416543F5-E7AF-3269-843F-C8CDA8DD0FFA> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x116cac000 -   
    0x116ce6ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x116d09000 -   
    0x116d28ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x116d35000 -   
    0x116e2afff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x116e3e000 -   
    0x116ec0ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x116eef000 -   
    0x116ef1fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x116efa000 -   
    0x116efffff  com.apple.OpenDirectory (10.8 - 151.10) <1F47EC96-7403-3690-8D8D-C31D3B6FDA0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x116f0f000 -   
    0x116f1afff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x116f26000 -   
    0x116f69ff7  com.apple.bom (12.0 - 192) <0EFE0F2D-B6DE-3D1E-93C2-EED6D96F70A2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x116f7e000 -   
    0x116fa8ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x116fca000 -   
    0x11726eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x117355000 -   
    0x1173acff7  com.apple.ScalableUserInterface (1.0 - 1) <93C14595-6172-37E9-88F2-CBC80A1C54D0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x1173d8000 -   
    0x117422ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x117434000 -   
    0x11743bfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x117441000 -   
    0x117458fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x117473000 -   
    0x1174b0fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1174b8000 -   
    0x1174bafff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x1174c6000 -   
    0x1174cafff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x1174d6000 -   
    0x117530ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x117546000 -   
    0x117963fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x117b78000 -   
    0x117b85fff  com.apple.AppleFSCompression (49 - 1.0) <E616053D-D3C2-3600-B8DF-A5E0D9665634> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x117b90000 -   
    0x117bb1fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x117bc6000 -   
    0x117bd1ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x117bdd000 -   
    0x117bfcff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x117c08000 -   
    0x117c08fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x117c0c000 -   
    0x117c15fff  com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x117c27000 -   
    0x117cc2fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x117cdf000 -   
    0x117d3bff7  com.apple.Symbolication (1.3 - 93) <D3AAB36A-D5EB-3044-BE9D-0B77E64C00FC> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x117d80000 -   
    0x117db6fff  com.apple.DebugSymbols (98 - 98) <7059F71D-9A82-3D32-99BB-E043DEDA6174> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x117dd7000 -   
    0x117e23fff  com.apple.framework.CoreWLAN (3.4 - 340.18) <BCFA14A9-728C-371A-936E-2EDF2EC2F40F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x117e4c000 -   
    0x117e9bfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x117ed6000 -   
    0x117edaff7  com.apple.CommonPanels (1.2.5 - 94) <5F81D593-4B87-3DCC-B934-625D436B4CB1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x117ee1000 -   
    0x117ee4fff  com.apple.help (1.3.2 - 42) <418A9A41-BCB4-32A2-97ED-3A388F69CA9D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x117ef1000 -   
    0x117f06fff  com.apple.ImageCapture (8.0 - 8.0) <71B24609-DEE9-3927-9C82-62E72270299C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x117f22000 -   
    0x117f3fff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x117f55000 -   
    0x117f57ff7  com.apple.print.framework.Print (8.0 - 258)

    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • Safari crashes after re-install from Time Machine (Mavericks)

    Hi guys
    At a bit of a loss. Upgraded my HDD earlier and backed my old drive up, fitted new drive and left my MBP ro install from TM.
    Everything appears to be working apart from Safari. It crashes everytime I open it.
    I hoping someone here can provide some assistance. I'll post the logs below.
    Thanks in advance.
    Fez
    Process:         Safari [1242] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         7.0.3 (9537.75.14) Build Info:      WebBrowser-7537075014000000~3 Code Type:       X86-64 (Native) Parent Process:  launchd [272] Responsible:     Safari [1242] User ID:         501  Date/Time:       2014-04-12 19:10:28.366 +0100 OS Version:      Mac OS X 10.9.2 (13C64) Report Version:  11 Anonymous UUID:  56E0D20B-9490-BFC1-F844-D63699421F2D   Crashed Thread:  19  Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000  External Modification Warnings: Thread creation by external task.  VM Regions Near 0: -->      __TEXT                 00000001054b2000-00000001054b3000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari  Application Specific Information: Process Model: Multiple Web Processes   Enabled Extensions: com.avast.wrc-6H4HRTU5E3 (8 - 8) avast! Online Security    Thread 0:: Dispatch queue: com.apple.main-thread 0   com.apple.CoreFoundation           0x00000001089da179 _CFRuntimeCreateInstance + 73 1   com.apple.CoreFoundation           0x00000001089dc7a0 __CFStringCreateImmutableFunnel3 + 2368 2   com.apple.CoreFoundation           0x00000001089f00bb CFStringCreateWithBytes + 59 3   com.apple.CoreFoundation           0x0000000108a1b0d7 __CFBinaryPlistCreateObjectFiltered + 1671 4   com.apple.CoreFoundation           0x0000000108a1c2c8 __CFBinaryPlistCreateObjectFiltered + 6264 5   com.apple.CoreFoundation           0x0000000108a1b9cd __CFBinaryPlistCreateObjectFiltered + 3965 6   com.apple.CoreFoundation           0x0000000108a1c2c8 __CFBinaryPlistCreateObjectFiltered + 6264 7   com.apple.CoreFoundation           0x00000001089fde3c __CFTryParseBinaryPlist + 220 8   com.apple.CoreFoundation           0x00000001089fd7ef _CFPropertyListCreateWithData + 95 9   com.apple.CoreFoundation           0x0000000108a2b6f2 CFPropertyListCreateFromXMLData + 130 10  com.apple.Foundation               0x0000000107e6674a _NSParseObjectFromASCIIPropertyListOrSerialization + 36 11  com.apple.Foundation               0x0000000107e65759 +[NSDictionary(NSDictionary) newWithContentsOf:immutable:] + 125 12  com.apple.Foundation               0x0000000107f06718 +[NSDictionary(NSDictionary) dictionaryWithContentsOfURL:] + 43 13  com.apple.Safari.framework         0x000000010567172e Safari::GlobalHistory::load(***::Vector, 0ul, ***::CrashOnOverflow>&) + 62 14  com.apple.Safari.framework         0x000000010566f4fe Safari::GlobalHistory::init() + 100 15  com.apple.Safari.framework         0x000000010566f471 Safari::GlobalHistory::shared() + 55 16  com.apple.Safari.framework         0x0000000105552b40 Safari::BrowserContextHistoryClient::populateVisitedLinks(Safari::WK::Context&) + 48 17  com.apple.Safari.framework         0x00000001055cebdf Safari::WK::populateVisitedLinks(OpaqueWKContext const*, void const*) + 36 18  com.apple.WebKit2                  0x0000000107aa4b46 WebKit::VisitedLinkProvider::processDidFinishLaunching(WebKit::WebProcessProxy* ) + 70 19  com.apple.WebKit2                  0x0000000107aa49ed WebKit::WebContext::processDidFinishLaunching(WebKit::WebProcessProxy*) + 35 20  com.apple.WebKit2                  0x0000000107aa34af WebKit::WebProcessProxy::didFinishLaunching(WebKit::ProcessLauncher*, CoreIPC::Connection::Identifier) + 145 21  com.apple.WebCore                  0x000000010f5a5aad WebCore::RunLoop::performWork() + 557 22  com.apple.WebCore                  0x000000010f5a5862 WebCore::RunLoop::performWork(void*) + 34 23  com.apple.CoreFoundation           0x0000000108a56731 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 24  com.apple.CoreFoundation           0x0000000108a47f69 __CFRunLoopDoSources0 + 441 25  com.apple.CoreFoundation           0x0000000108a4762f __CFRunLoopRun + 831 26  com.apple.CoreFoundation           0x0000000108a470b5 CFRunLoopRunSpecific + 309 27  com.apple.HIToolbox                0x000000010b4dca0d RunCurrentEventLoopInMode + 226 28  com.apple.HIToolbox                0x000000010b4dc685 ReceiveNextEventCommon + 173 29  com.apple.HIToolbox                0x000000010b4dc5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65 30  com.apple.AppKit                   0x000000010991d3de _DPSNextEvent + 1434 31  com.apple.AppKit                   0x000000010991ca2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 32  com.apple.Safari.framework         0x0000000105519d00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 33  com.apple.AppKit                   0x0000000109c7be2e -[NSApplication _realDoModalLoop:peek:] + 642 34  com.apple.AppKit                   0x0000000109c7a54e -[NSApplication runModalForWindow:] + 117 35  com.apple.AppKit                   0x0000000109c7a0fd -[NSAlert runModal] + 145 36  com.apple.AppKit                   0x00000001099222a9 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1054 37  com.apple.AppKit                   0x0000000109921e4e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28 38  com.apple.AppKit                   0x0000000109921def -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213 39  com.apple.AppKit                   0x0000000109921d13 -[NSPersistentUIManager promptToIgnorePersistentState] + 28 40  com.apple.AppKit                   0x0000000109921b34 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252 41  com.apple.AppKit                   0x0000000109921909 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557 42  com.apple.AppKit                   0x000000010992136b -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242 43  com.apple.Foundation               0x0000000107e73f0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294 44  com.apple.Foundation               0x0000000107e73d7d _NSAppleEventManagerGenericHandler + 106 45  com.apple.AE                       0x000000010c957e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381 46  com.apple.AE                       0x000000010c957c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31 47  com.apple.AE                       0x000000010c957b36 aeProcessAppleEvent + 315 48  com.apple.HIToolbox                0x000000010b4e9161 AEProcessAppleEvent + 56 49  com.apple.AppKit                   0x000000010991d246 _DPSNextEvent + 1026 50  com.apple.AppKit                   0x000000010991ca2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 51  com.apple.Safari.framework         0x0000000105519d00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 52  com.apple.AppKit                   0x0000000109910b2c -[NSApplication run] + 553 53  com.apple.AppKit                   0x00000001098fb913 NSApplicationMain + 940 54  com.apple.Safari.framework         0x00000001056ebc8d SafariMain + 267 55  libdyld.dylib                      0x000000010bf935fd start + 1  Thread 1: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 2:: Dispatch queue: com.apple.libdispatch-manager 0   libsystem_kernel.dylib             0x000000010c12e662 kevent64 + 10 1   libdispatch.dylib                  0x000000010bf5e43d _dispatch_mgr_invoke + 239 2   libdispatch.dylib                  0x000000010bf5e152 _dispatch_mgr_thread + 52  Thread 3: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 4: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 5:: WebCore: IconDatabase 0   libsystem_kernel.dylib             0x000000010c12d716 __psynch_cvwait + 10 1   libsystem_pthread.dylib            0x000000010c247c3b _pthread_cond_wait + 727 2   com.apple.WebCore                  0x000000010f5834cb WebCore::IconDatabase::syncThreadMainLoop() + 507 3   com.apple.WebCore                  0x000000010f58005f WebCore::IconDatabase::iconDatabaseSyncThread() + 303 4   com.apple.JavaScriptCore           0x0000000105fa253f ***::wtfThreadEntryPoint(void*) + 15 5   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 6   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 7   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 6: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 7: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 8: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 9: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 10: 0   libsystem_kernel.dylib             0x000000010c12de6a __workq_kernreturn + 10 1   libsystem_pthread.dylib            0x000000010c246f08 _pthread_wqthread + 330 2   libsystem_pthread.dylib            0x000000010c249fb9 start_wqthread + 13  Thread 11:: com.apple.CoreAnimation.render-server 0   libsystem_kernel.dylib             0x000000010c129a1a mach_msg_trap + 10 1   libsystem_kernel.dylib             0x000000010c128d18 mach_msg + 64 2   com.apple.QuartzCore               0x00000001070a1377 CA::Render::Server::server_thread(void*) + 195 3   com.apple.QuartzCore               0x00000001070a12ad thread_fun + 25 4   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 5   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 6   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 12:: com.apple.NSURLConnectionLoader 0   libsystem_kernel.dylib             0x000000010c129a1a mach_msg_trap + 10 1   libsystem_kernel.dylib             0x000000010c128d18 mach_msg + 64 2   com.apple.CoreFoundation           0x0000000108a48155 __CFRunLoopServiceMachPort + 181 3   com.apple.CoreFoundation           0x0000000108a47779 __CFRunLoopRun + 1161 4   com.apple.CoreFoundation           0x0000000108a470b5 CFRunLoopRunSpecific + 309 5   com.apple.Foundation               0x0000000107eb9967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 6   com.apple.Foundation               0x0000000107eb976b __NSThread__main__ + 1318 7   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 8   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 9   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 13:: com.apple.CFSocket.private 0   libsystem_kernel.dylib             0x000000010c12d9aa __select + 10 1   com.apple.CoreFoundation           0x0000000108a93b83 __CFSocketManager + 867 2   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 3   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 4   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 14:: JavaScriptCore::BlockFree 0   libsystem_kernel.dylib             0x000000010c12d716 __psynch_cvwait + 10 1   libsystem_pthread.dylib            0x000000010c247c3b _pthread_cond_wait + 727 2   com.apple.JavaScriptCore           0x0000000105fad6f6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118 3   com.apple.JavaScriptCore           0x0000000105fad215 JSC::BlockAllocator::blockFreeingThreadMain() + 117 4   com.apple.JavaScriptCore           0x0000000105fa253f ***::wtfThreadEntryPoint(void*) + 15 5   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 6   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 7   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 15:: JavaScriptCore::Marking 0   libsystem_kernel.dylib             0x000000010c12d716 __psynch_cvwait + 10 1   libsystem_pthread.dylib            0x000000010c247c3b _pthread_cond_wait + 727 2   com.apple.JavaScriptCore           0x0000000105fadd17 JSC::GCThread::waitForNextPhase() + 119 3   com.apple.JavaScriptCore           0x0000000105fadba8 JSC::GCThread::gcThreadMain() + 88 4   com.apple.JavaScriptCore           0x0000000105fa253f ***::wtfThreadEntryPoint(void*) + 15 5   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 6   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 7   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 16:: JavaScriptCore::Marking 0   libsystem_kernel.dylib             0x000000010c12d716 __psynch_cvwait + 10 1   libsystem_pthread.dylib            0x000000010c247c3b _pthread_cond_wait + 727 2   com.apple.JavaScriptCore           0x0000000105fadd17 JSC::GCThread::waitForNextPhase() + 119 3   com.apple.JavaScriptCore           0x0000000105fadba8 JSC::GCThread::gcThreadMain() + 88 4   com.apple.JavaScriptCore           0x0000000105fa253f ***::wtfThreadEntryPoint(void*) + 15 5   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 6   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 7   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 17:: JavaScriptCore::Marking 0   libsystem_kernel.dylib             0x000000010c12d716 __psynch_cvwait + 10 1   libsystem_pthread.dylib            0x000000010c247c3b _pthread_cond_wait + 727 2   com.apple.JavaScriptCore           0x0000000105fadd17 JSC::GCThread::waitForNextPhase() + 119 3   com.apple.JavaScriptCore           0x0000000105fadba8 JSC::GCThread::gcThreadMain() + 88 4   com.apple.JavaScriptCore           0x0000000105fa253f ***::wtfThreadEntryPoint(void*) + 15 5   libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 6   libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 7   libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 18:: com.apple.appkit-heartbeat 0   libsystem_kernel.dylib             0x000000010c129a1a mach_msg_trap + 10 1   libsystem_kernel.dylib             0x000000010c128d18 mach_msg + 64 2   com.apple.CoreGraphics             0x0000000108f38a1b _CGSSynchronizeWindowBackingStore + 97 3   com.apple.CoreGraphics             0x0000000108eba830 _CGSLockWindow + 3765 4   com.apple.CoreGraphics             0x0000000108eb9743 CGSDeviceLock + 240 5   libRIP.A.dylib                     0x0000000114bda487 ripd_Lock + 43 6   libRIP.A.dylib                     0x0000000114be09b4 RIPLayerBltImage + 296 7   libRIP.A.dylib                     0x0000000114be06aa ripc_RenderImage + 262 8   libRIP.A.dylib                     0x0000000114bedefb ripc_EndLayer + 1295 9   com.apple.CoreGraphics             0x0000000108f181b5 CGContextEndTransparencyLayer + 53 10  com.apple.AppKit                   0x0000000109c7615f -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 2937 11  com.apple.AppKit                   0x0000000109c75545 -[NSWindow(NSWindow_Theme) heartBeat:] + 300 12  com.apple.AppKit                   0x0000000109b80d2d -[NSUIHeartBeat _heartBeatThread:] + 868 13  com.apple.Foundation               0x0000000107eb976b __NSThread__main__ + 1318 14  libsystem_pthread.dylib            0x000000010c245899 _pthread_body + 138 15  libsystem_pthread.dylib            0x000000010c24572a _pthread_start + 137 16  libsystem_pthread.dylib            0x000000010c249fc9 thread_start + 13  Thread 19 Crashed:  Thread 19 crashed with X86 Thread State (64-bit):   rax: 0x00000000000bf100  rbx: 0x00000deadbea7dad  rcx: 0x0000000107692000  rdx: 0x0000000000000054   rdi: 0x0000000107692000  rsi: 0x0000000105ed3000  rbp: 0x0000000000000000  rsp: 0x0000000107694018    r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000   r12: 0x000000010b44f420  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000105ed3000   rip: 0x0000000000000000  rfl: 0x0000000000010212  cr2: 0x0000000000000000    Logical CPU:     3 Error Code:      0x00000014 Trap Number:     14   Binary Images:        0x1054b2000 -        0x1054b2ffd  com.apple.Safari (7.0.3 - 9537.75.14) <170ED2F7-108B-326D-96B6-D54CCA40AA85> /Applications/Safari.app/Contents/MacOS/Safari        0x1054bd000 -        0x1059c3ffb  com.apple.Safari.framework (9537 - 9537.75.14) <4803DE3D-4606-3B70-A537-6D12F172665A> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari         0x105daf000 -        0x105db0ff7  libSystem.B.dylib (1197.1.1)  /usr/lib/libSystem.B.dylib        0x105db7000 -        0x105dd5ff7  com.apple.Accounts (113 - 113)  /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts        0x105df9000 -        0x105dfafff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib        0x105e00000 -        0x105e1dff7  com.apple.framework.Apple80211 (9.3.1 - 931.58)  /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211         0x105e2c000 -        0x105e2cfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon        0x105e30000 -        0x105e30fff  com.apple.Cocoa (6.8 - 20)  /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa        0x105e35000 -        0x105e93ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation         0x105ed6000 -        0x105ee0ff7  com.apple.CrashReporterSupport (10.9 - 538)  /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport        0x105eee000 -        0x105eeefff  com.apple.WebInspectorUI (9537 - 9537.75.12)  /System/Library/StagedFrameworks/Safari/WebInspectorUI.framework/Versions/A/Web InspectorUI        0x105ef4000 -        0x105f5eff7  com.apple.framework.IOKit (2.0.1 - 907.90.2)  /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit        0x105f99000 -        0x106310ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <8018AEEE-9FAB-34DE-AF60-97B2F221747A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore        0x10640c000 -        0x1065c4ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib        0x10666a000 -        0x106754fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib        0x106771000 -        0x1067a2ff7  libtidy.A.dylib (15.12)  /usr/lib/libtidy.A.dylib        0x1067b2000 -        0x1067bfff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib        0x1067cb000 -        0x1067d9fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL        0x1067e5000 -        0x106826fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis        0x10707a000 -        0x107216ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore        0x1072ef000 -        0x107548ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security        0x107696000 -        0x107709fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation        0x10774e000 -        0x10777cff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face        0x1077ae000 -        0x107811ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration        0x107850000 -        0x107986ffc  com.apple.WebKit (9537 - 9537.75.14)  /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit         0x107a7c000 -        0x107c6dff3  com.apple.WebKit2 (9537 - 9537.75.14)  /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2         0x107e53000 -        0x108151fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation        0x108390000 -        0x10853df27  libobjc.A.dylib (551.1)  /usr/lib/libobjc.A.dylib        0x108563000 -        0x1085b5fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib        0x108618000 -        0x1086daff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText        0x108748000 -        0x108749ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib        0x108754000 -        0x1088c4ff8  com.apple.CFNetwork (673.2.1 - 673.2.1)  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork        0x1089ce000 -        0x1089cefff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services        0x1089d7000 -        0x108bbcfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation         0x108d32000 -        0x108e38ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO        0x108ea1000 -        0x1097c0af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics         0x1098f1000 -        0x1098f1fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices         0x1098f9000 -        0x10a46ffff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit        0x10abf8000 -        0x10ac27ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS        0x10ac4b000 -        0x10ac5cff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib        0x10ac68000 -        0x10ac6afff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth        0x10ac73000 -        0x10acabff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices        0x10aceb000 -        0x10ae3eff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox         0x10aed7000 -        0x10aed7ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit        0x10aedf000 -        0x10b127ff7  com.apple.CoreData (107 - 481.01)  /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData        0x10b255000 -        0x10b2b9fff  com.apple.datadetectorscore (5.0 - 354.3)  /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore        0x10b2fe000 -        0x10b42eff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv        0x10b4ae000 -        0x10b758ff5  com.apple.HIToolbox (2.1 - 697.4)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox        0x10b8b7000 -        0x10b8bfff7  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        0x10b8d0000 -        0x10b912ff7  libauto.dylib (185.5)  /usr/lib/libauto.dylib        0x10b92b000 -        0x10ba12ff7  libxml2.2.dylib (26)  /usr/lib/libxml2.2.dylib        0x10ba4c000 -        0x10bb30fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI        0x10bbf8000 -        0x10bc49ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0)  /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio        0x10bc70000 -        0x10bc75fff  com.apple.DiskArbitration (2.6 - 2.6)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration         0x10bc85000 -        0x10bc86fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib        0x10bc8a000 -        0x10bc9cff7  com.apple.MultitouchSupport.framework (245.13 - 245.13)  /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport        0x10bcb1000 -        0x10bcc9ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage        0x10bcde000 -        0x10bcebfff  com.apple.Sharing (132.2 - 132.2)  /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing        0x10bcff000 -        0x10bdc3ff7  com.apple.backup.framework (1.5.2 - 1.5.2)  /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup        0x10be4c000 -        0x10be67ff7  libCRFSuite.dylib (34)  /usr/lib/libCRFSuite.dylib        0x10be74000 -        0x10be9dff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib        0x10beb0000 -        0x10beb4ff7  libcache.dylib (62)  /usr/lib/system/libcache.dylib        0x10beba000 -        0x10bec4fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib        0x10bed2000 -        0x10bed9fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib        0x10beea000 -        0x10bef1ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib        0x10befa000 -        0x10bf48fff  libcorecrypto.dylib (161.1)  /usr/lib/system/libcorecrypto.dylib        0x10bf5b000 -        0x10bf75fff  libdispatch.dylib (339.90.1)  /usr/lib/system/libdispatch.dylib        0x10bf90000 -        0x10bf93ff7  libdyld.dylib (239.4)  /usr/lib/system/libdyld.dylib        0x10bfa1000 -        0x10bfa1ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib        0x10bfa7000 -        0x10bfaeff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib        0x10bfb7000 -        0x10bfbcfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib        0x10bfc5000 -        0x10bfc7ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib        0x10bfcf000 -        0x10bfd0ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib        0x10bfd8000 -        0x10bfe9ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib        0x10bff4000 -        0x10bff5ff7  libsystem_blocks.dylib (63)  /usr/lib/system/libsystem_blocks.dylib        0x10bffc000 -        0x10c085ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib        0x10c0b6000 -        0x10c0b8ff3  libsystem_configuration.dylib (596.13)  /usr/lib/system/libsystem_configuration.dylib        0x10c0c5000 -        0x10c0cdfff  libsystem_dnssd.dylib (522.90.2)  /usr/lib/system/libsystem_dnssd.dylib        0x10c0d9000 -        0x10c100ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib        0x10c118000 -        0x10c134ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib        0x10c15e000 -        0x10c18dfd2  libsystem_m.dylib (3047.16)  /usr/lib/system/libsystem_m.dylib        0x10c19f000 -        0x10c1baff7  libsystem_malloc.dylib (23.10.1)  /usr/lib/system/libsystem_malloc.dylib        0x10c1c5000 -        0x10c1ecff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib        0x10c20e000 -        0x10c217ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib        0x10c227000 -        0x10c22dff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib        0x10c244000 -        0x10c24bff7  libsystem_pthread.dylib (53.1.4)  /usr/lib/system/libsystem_pthread.dylib        0x10c25a000 -        0x10c25bff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib        0x10c263000 -        0x10c267ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib        0x10c270000 -        0x10c271fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib        0x10c279000 -        0x10c27eff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib        0x10c287000 -        0x10c2abfff  libxpc.dylib (300.90.2)  /usr/lib/system/libxpc.dylib        0x10c2cd000 -        0x10c2ddfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib        0x10c2e6000 -        0x10c2eafff  libpam.2.dylib (20)  /usr/lib/libpam.2.dylib        0x10c2f1000 -        0x10c2f1ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib        0x10c2fb000 -        0x10c308ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib        0x10c312000 -        0x10c5fcfff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore        0x10c67c000 -        0x10c70cfff  com.apple.Metadata (10.7.0 - 800.23)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata        0x10c77a000 -        0x10c7f1fff  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        0x10c897000 -        0x10c904fff  com.apple.SearchKit (1.4.0 - 1.4.0)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit        0x10c94a000 -        0x10c9a5ffb  com.apple.AE (665.5 - 665.5)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE        0x10c9d9000 -        0x10caa2fff  com.apple.LaunchServices (572.26 - 572.26)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices        0x10cb17000 -        0x10cb40fff  com.apple.DictionaryServices (1.2 - 208)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices        0x10cb66000 -        0x10cb6dfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS        0x10cb75000 -        0x10cb80fff  libkxld.dylib (2422.90.20)  /usr/lib/system/libkxld.dylib        0x10cb8a000 -        0x10cb95ff7  com.apple.NetAuth (5.0 - 5.0)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth        0x10cba1000 -        0x10cba4fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC        0x10cbb2000 -        0x10cbc9ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory        0x10cbe9000 -        0x10cbf3ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment        0x10cc00000 -        0x10cc28ffb  libxslt.1.dylib (13)  /usr/lib/libxslt.1.dylib        0x10cc39000 -        0x10ccc5ff7  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        0x10ccfe000 -        0x10cd6dff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS        0x10cd9b000 -        0x10ce24fff  com.apple.ColorSync (4.9.0 - 4.9.0)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync        0x10ce6f000 -        0x10ceb4ffe  com.apple.HIServices (1.22 - 467.2)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices        0x10ceeb000 -        0x10cefaff8  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        0x10cf08000 -        0x10cf55ff2  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        0x10cf84000 -        0x10cfbdff7  com.apple.QD (3.50 - 298)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD        0x10cfdf000 -        0x10cfe8fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis        0x10d002000 -        0x10d005ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface        0x10d011000 -        0x10d011fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate        0x10d018000 -        0x10d2ecfc7  com.apple.vImage (7.0 - 7.0)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage        0x10d331000 -        0x10d331fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib        0x10d33b000 -        0x10d406fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib        0x10d417000 -        0x10d4c7ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib        0x10d4d5000 -        0x10d8b6ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib        0x10d920000 -        0x10da8eff7  libBLAS.dylib (1094.5)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib        0x10dab9000 -        0x10dba8fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib        0x10dc20000 -        0x10dc67fff  libFontRegistry.dylib (127)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib        0x10dc90000 -        0x10dcb4ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib         0x10dcc3000 -        0x10dd1cfff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib         0x10dd2c000 -        0x10dd47ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib         0x10dd50000 -        0x10dd54ff7  libGIF.dylib (1042)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib         0x10dd5a000 -        0x10de48fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib         0x10de72000 -        0x10de74fff  libRadiance.dylib (1042)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib        0x10de78000 -        0x10debfff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib        0x10deda000 -        0x10def3ff7  com.apple.Kerberos (3.0 - 1)  /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos        0x10df12000 -        0x10df2efff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib        0x10df3f000 -        0x10e030ff9  libiconv.2.dylib (41)  /usr/lib/libiconv.2.dylib        0x10e046000 -        0x10e0abff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal        0x10e0d9000 -        0x10e0dafff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent        0x10e0e5000 -        0x10e0e9ff7  libheimdal-asn1.dylib (323.15)  /usr/lib/libheimdal-asn1.dylib        0x10e0f6000 -        0x10e102ff7  com.apple.OpenDirectory (10.9 - 173.90.1)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory         0x10e117000 -        0x10e120ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth         0x10e129000 -        0x10e164fff  com.apple.bom (14.0 - 193.1)  /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom        0x10e17a000 -        0x10e19fff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo        0x10e1c2000 -        0x10e492ffc  com.apple.CoreImage (9.2.7)  /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage        0x10e58a000 -        0x10e5ddfff  com.apple.ScalableUserInterface (1.0 - 1)  /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface        0x10e607000 -        0x10e646fff  libGLU.dylib (9.6)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib         0x10e65b000 -        0x10e663ffc  libGFXShared.dylib (9.6)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib        0x10e670000 -        0x10e67bfff  libGL.dylib (9.6)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib         0x10e68f000 -        0x10e6cdff7  libGLImage.dylib (9.6)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib        0x10e6d9000 -        0x10e6dbfff  libCVMSPluginSupport.dylib (9.6)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib        0x10e6e6000 -        0x10e6e9fff  libCoreVMClient.dylib (58.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib        0x10e6ef000 -        0x10eb22ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0)  /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore        0x10ed3c000 -        0x10ed8afff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL        0x10eda9000 -        0x10edb5ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression        0x10edc4000 -        0x10edddff7  com.apple.Ubiquity (1.3 - 289)  /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity        0x10edf5000 -        0x10ee25fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s        0x10ee4f000 -        0x10ee74ff7  com.apple.ChunkingLibrary (2.0 - 155.1)  /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library        0x10ee85000 -        0x10ef05fff  com.apple.CoreSymbolication (3.0 - 141)  /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication        0x10ef27000 -        0x10ef7fff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion        0x10efca000 -        0x10eff9fff  com.apple.DebugSymbols (106 - 106)  /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s        0x10f019000 -        0x10f078fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47)  /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN        0x10f0b6000 -        0x10f0e0ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib        0x10f0f5000 -        0x10f15bfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi        0x10f1be000 -        0x10f1c2fff  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        0x10f1c9000 -        0x10f1ccfff  com.apple.help (1.3.3 - 46)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help        0x10f1d4000 -        0x10f1e6fff  com.apple.ImageCapture (9.0 - 9.0)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture        0x10f205000 -        0x10f21dff7  com.apple.openscripting (1.4 - 157)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting        0x10f231000 -        0x10f232ff7  com.apple.print.framework.Print (9.0 - 260)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print        0x10f237000 -        0x10f239ff7  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        0x10f245000 -        0x10f403fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices         0x10f55d000 -        0x10f567ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer        0x10f57a000 -        0x1103ccffb  com.apple.WebCore (9537 - 9537.75.14) <99715507-9651-3DCE-831B-BF815FB3DE44> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore         0x1128ef000 -        0x11291bfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal        0x11298d000 -        0x11299aff4  com.apple.Librarian (1.2 - 1)  /System/Library/PrivateFrameworks/Librarian.framework/Librarian        0x1129b6000 -        0x1129beff3  libCGCMS.A.dylib (599.20.11)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib        0x112ae6000 -        0x112af0ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib        0x112afb000 -        0x112afdfff  com.apple.EFILogin (2.0 - 2)  /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin        0x112b03000 -        0x112b05ffb  libutil.dylib (34)  /usr/lib/libutil.dylib        0x11391f000 -        0x113934ff3  com.apple.WebInspector (9537 - 9537.75.12) <40E8E453-88CC-3FB7-A0C9-9330E463956D> /System/Library/StagedFrameworks/Safari/WebInspector.framework/Versions/A/WebIn spector        0x11394d000 -        0x113a3eff7  com.apple.mobiledevice (710.5 - 710.5)  /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice        0x113aa3000 -        0x113b74ff1  com.apple.DiskImagesFramework (10.9 - 371.1)  /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages         0x113bd4000 -        0x113cb3fff  libcrypto.0.9.8.dylib (50)  /usr/lib/libcrypto.0.9.8.dylib        0x113d1b000 -        0x113d4ffff  libssl.0.9.8.dylib (50)  /usr/lib/libssl.0.9.8.dylib        0x113d65000 -        0x113db3ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib        0x113e1a000 -        0x113ed2ff7  com.apple.DiscRecording (8.0 - 8000.4.6)  /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording         0x113f3a000 -        0x113f7ffff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib        0x113f8f000 -        0x113fc0fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit        0x113fd2000 -        0x11405dfff  libCoreStorage.dylib (380)  /usr/lib/libCoreStorage.dylib        0x114085000 -        0x11408bfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication        0x114097000 -        0x1140ccffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP        0x1140db000 -        0x1140ebffb  libsasl2.2.dylib (170)  /usr/lib/libsasl2.2.dylib        0x114104000 -        0x114395fff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera        0x114b62000 -        0x114b65ffa  libCGXType.A.dylib (599.20.11)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib        0x114bd2000 -        0x114bfaffb  libRIP.A.dylib (599.20.11)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib     0x7fff69f9c000 -     0x7fff69fcf817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld  External Modification Summary:   Calls made by other processes targeting this process:     task_for_pid: 2     thread_create: 1     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: 1691     thread_create: 7     thread_set_state: 0  VM Region Summary: ReadOnly portion of Libraries: Total=169.0M resident=169.0M(100%) swapped_out_or_unallocated=0K(0%) Writable regions: Total=1.1G written=14.2M(1%) resident=17.7M(2%) swapped_out=0K(0%) unallocated=1.1G(98%)   REGION TYPE                        VIRTUAL ===========                        ======= CG backing stores                     452K CG image                               12K CG raster data                         12K CG shared images                      180K CoreServices                           80K Foundation                              4K Image IO                               16K JS JIT generated code                   8K JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated) JS VM register file (reserved)       4096K        reserved VM address space (unallocated) JS garbage collector                  256K Kernel Alloc Once                       8K MALLOC                               61.9M MALLOC (admin)                         32K Memory Tag 242                         12K Memory Tag 251                         36K SQLite page cache                     512K STACK GUARD                          56.1M Stack                                16.3M VM_ALLOCATE                          16.4M WebKit Malloc                        2304K __DATA                               24.2M __IMAGE                               528K __LINKEDIT                           43.9M __TEXT                              125.2M __UNICODE                             544K mapped file                          50.1M shared memory                           4K ===========                        ======= TOTAL                                 1.4G TOTAL, minus reserved VM space      399.0M    Model: MacBookPro9,2, BootROM MBP91.00D3.B09, 2 processors, Intel Core i5, 2.5 GHz, 8 GB, SMC 2.2f44 Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x859B, 0x435434473353313630424D2E4D3136464B44 Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x859B, 0x435434473353313630424D2E4D3136464B44 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22) Bluetooth: Version 4.2.3f10 13477, 3 services, 15 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Serial ATA Device: ST1000LM014-1EJ164, 1 TB Serial ATA Device: MATSHITADVD-R   UJ-8A8 USB Device: Hub USB Device: Hub USB Device: Apple Internal Keyboard / Trackpad USB Device: IR Receiver USB Device: BRCM20702 Hub USB Device: Bluetooth USB Host Controller USB Device: Hub USB Device: FaceTime HD Camera (Built-in) Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    You need to uninstall Avast.
    Go to ~/Library/Safari/Extensions then move the Avast extension to the Trash.
    Try Safari.
    Avast software has caused many Mac users issues as noted from an ASC search here.

  • After update from snow leopard to lion, error message when trying to open a software just installed

    Dear support team,
    I just update from Snow Leopard to Lion and i installed a software as soon as i open it, it crash with the report below:
    rocess:    
    Stage [723]
    Path:       
    /Applications/Toon Boom Harmony 9.2/Stage.app/Contents/MacOS/Stage
    Identifier: 
    com.toonboom.harmony.full.Stage
    Version:    
    9.2 (9.2.0.6948)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [166]
    Date/Time:  
    2012-02-03 17:26:21.077 +0100
    OS Version: 
    Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:     
    63071 sec
    Crashes Since Last Report:      
    35
    Per-App Interval Since Last Report:  884 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    A8F4E460-7A3D-4E49-ADA7-21B87C97D9B4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000006f6c2e69
    VM Regions Near 0x6f6c2e69:
    MALLOC_TINY       
    000000000d500000-000000000d600000 [ 1024K] rw-/rwx SM=PRV 
    -->
    __TEXT            
    000000008f002000-000000008f7a5000 [ 7820K] r-x/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    Application Specific Information:
    objc[723]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libqt-mt.3.3.8.dylib     
    0xb2373ef0 QString::deref() + 24
    1   libqt-mt.3.3.8.dylib     
    0xb2374339 QString::operator=(QString const&) + 27
    2   libToonBoomDbAccess.1.0.0.dylib
    0x028bc8ee TUDbAccess::dba_Initialize2dSystem(char*) + 254
    3   com.toonboom.harmony.full.Stage
    0x004ec87e non-virtual thunk to TUDbSelectDlg::~TUDbSelectDlg() + 1854
    4   com.toonboom.harmony.full.Stage
    0x004ecdf0 non-virtual thunk to TUDbSelectDlg::~TUDbSelectDlg() + 3248
    5   com.toonboom.harmony.full.Stage
    0x004f4f6a std::vector<TUDbAccess::SceneInfo, std::allocator<TUDbAccess::SceneInfo> >::operator=(std::vector<TUDbAccess::SceneInfo, std::allocator<TUDbAccess::SceneInfo> > const&) + 7466
    6   com.toonboom.harmony.full.Stage
    0x004b9f1b TUDbSelector::metaObject() const + 907
    7   libqt-mt.3.3.8.dylib     
    0xb209f9b3 QObject::activate_signal(QConnectionList*, QUObject*) + 355
    8   libqt-mt.3.3.8.dylib     
    0xb209feb3 QObject::activate_signal(int) + 101
    9   libToonBoomActionManager.1.0.0.dylib
    0x03bb5a6d UI_OKCancelButtons::clickedOK() + 29
    10  libToonBoomActionManager.1.0.0.dylib
    0x03bb5ae8 UI_OKCancelButtons::qt_emit(int, QUObject*) + 88
    11  libqt-mt.3.3.8.dylib     
    0xb209f9f7 QObject::activate_signal(QConnectionList*, QUObject*) + 423
    12  libqt-mt.3.3.8.dylib     
    0xb209feb3 QObject::activate_signal(int) + 101
    13  libqt-mt.3.3.8.dylib     
    0xb23fa70e QButton::clicked() + 32
    14  libqt-mt.3.3.8.dylib     
    0xb20d6f7c QWidget::event(QEvent*) + 1358
    15  libqt-mt.3.3.8.dylib     
    0xb204d887 QApplication::internalNotify(QObject*, QEvent*) + 579
    16  libqt-mt.3.3.8.dylib     
    0xb204e965 QApplication::notify(QObject*, QEvent*) + 1709
    17  com.toonboom.harmony.full.Stage
    0x0004f2d8 non-virtual thunk to AnimatePro_SceneUI::activeMainGotoNextFrameValidate(AC_ActionInfo*) + 3320
    18  libqt-mt.3.3.8.dylib     
    0xb200f78f QApplication::globalEventProcessor(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 4151
    19  com.apple.HIToolbox      
    0x909d6920 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    20  com.apple.HIToolbox      
    0x90852803 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    21  com.apple.HIToolbox      
    0x90851c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    22  com.apple.HIToolbox      
    0x90866aa9 SendEventToEventTarget + 76
    23  com.apple.HIToolbox      
    0x90867229 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 1915
    24  com.apple.HIToolbox      
    0x90852cbe _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    25  com.apple.HIToolbox      
    0x90851c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    26  com.apple.HIToolbox      
    0x90866aa9 SendEventToEventTarget + 76
    27  libqt-mt.3.3.8.dylib     
    0xb2007b9e qt_mac_send_event(unsigned int, OpaqueEventRef*, OpaqueWindowPtr*) + 84
    28  libqt-mt.3.3.8.dylib     
    0xb203e785 QEventLoop::processEvents(unsigned int) + 209
    29  libqt-mt.3.3.8.dylib     
    0xb20602a3 QEventLoop::enterLoop() + 171
    30  libqt-mt.3.3.8.dylib     
    0xb2222c82 QDialog::exec() + 110
    31  com.toonboom.harmony.full.Stage
    0x004ec519 non-virtual thunk to TUDbSelectDlg::~TUDbSelectDlg() + 985
    32  com.toonboom.harmony.full.Stage
    0x00011027 0x1000 + 65575
    33  com.toonboom.harmony.full.Stage
    0x00019d5b 0x1000 + 101723
    34  com.toonboom.harmony.full.Stage
    0x0001b167 0x1000 + 106855
    35  com.toonboom.harmony.full.Stage
    0x0000f0bc 0x1000 + 57532
    36  com.toonboom.harmony.full.Stage
    0x0000efe9 0x1000 + 57321
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9cb6090a kevent + 10
    1   libdispatch.dylib        
    0x982e2c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib        
    0x982e16a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x9cb6002e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94b52ccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94b546fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x9cb6002e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94b52ccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94b546fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x044430a0  ebx: 0xb2373ee6  ecx: 0x00000000  edx: 0x6f6c2e69
      edi: 0x0290a764  esi: 0x0290a764  ebp: 0xbfffdf88  esp: 0xbfffdf60
       ss: 0x00000023  efl: 0x00010206  eip: 0xb2373ef0   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x6f6c2e69
    Logical CPU: 1
    Binary Images:
    0x1000 -   0xc64ff5 +com.toonboom.harmony.full.Stage (9.2 - 9.2.0.6948) <FB9BCE56-9E12-9D21-39AF-0E687331CE2E> /Applications/Toon Boom Harmony 9.2/Stage.app/Contents/MacOS/Stage
    0x1096000 -  0x11bafff +libOSGBase.dylib (1.2.0 - compatibility 1.2.0) <63E1F469-ADF8-65AE-F3F5-811DBFEAD518> /Applications/Toon Boom Harmony 9.2/*/libOSGBase.dylib
    0x123f000 -  0x1c4afe7 +libOSGSystem.dylib (1.2.0 - compatibility 1.2.0) <155BB1A7-AAB2-5CE7-0146-1CCD7E92394E> /Applications/Toon Boom Harmony 9.2/*/libOSGSystem.dylib
    0x2006000 -  0x204ffef +libtiff.dylib (12.2.0 - compatibility 12.0.0) /Applications/Toon Boom Harmony 9.2/*/libtiff.dylib
    0x20e4000 -  0x20f9ff1 +libtbb.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libtbb.dylib
    0x2109000 -  0x210dffd +libtbbmalloc.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libtbbmalloc.dylib
    0x2113000 -  0x2119fff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x2120000 -  0x214cff7 +libToonBoomFlash.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomFlash.1.0.0.dylib
    0x2164000 -  0x216bffb +libToonBoomBaseUiApplication.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomBaseUiApplication.1.0.0.dylib
    0x2171000 -  0x225bfe7 +libToonBoomCelCore.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomCelCore.1.0.0.dylib
    0x239f000 -  0x23a8ff2 +libToonBoomCommand.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomCommand.1.0.0.dylib
    0x23b1000 -  0x23c2fff +libToonBoomFontManager.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomFontManager.1.0.0.dylib
    0x23cc000 -  0x2698fe2 +libToonBoomGraphicCore.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomGraphicCore.1.0.0.dylib
    0x28b2000 -  0x28ffff2 +libToonBoomDbAccess.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomDbAccess.1.0.0.dylib
    0x291b000 -  0x292aff2 +libToonBoomDbClient.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomDbClient.1.0.0.dylib
    0x2933000 -  0x293aff2 +libToonBoomElement.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomElement.1.0.0.dylib
    0x2940000 -  0x29b4fef +libToonBoomLayout.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomLayout.1.0.0.dylib
    0x2a0f000 -  0x2a13fff +libToonBoomLinkSrv.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomLinkSrv.1.0.0.dylib
    0x2a17000 -  0x2a51fff +libToonBoomMultimediaEx.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomMultimediaEx.1.0.0.dylib
    0x2a73000 -  0x2a76fff +libToonBoomResample.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomResample.1.0.0.dylib
    0x2a7a000 -  0x2a81ff2 +libToonBoomNetwork.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomNetwork.1.0.0.dylib
    0x2a86000 -  0x2aa6ff7 +libToonBoomOSGAnimation.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomOSGAnimation.1.0.0.dylib
    0x2abe000 -  0x2fd0ff7 +Cg (??? - ???) /Applications/Toon Boom Harmony 9.2/*/Cg.framework/Versions/1.0/Cg
    0x3406000 -  0x341dfff +libToonBoomPersistentObj.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomPersistentObj.1.0.0.dylib
    0x342e000 -  0x343bff2 +libToonBoomPlugInManager.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomPlugInManager.1.0.0.dylib
    0x3445000 -  0x3463ff2 +libToonBoomPreference.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomPreference.1.0.0.dylib
    0x3477000 -  0x3488ff7 +libToonBoomSceneContext.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomSceneContext.1.0.0.dylib
    0x3492000 -  0x3886ff7 +libToonBoomSceneCore.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomSceneCore.1.0.0.dylib
    0x3b40000 -  0x3b52fff +libToonBoomWidgets.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomWidgets.1.0.0.dylib
    0x3b63000 -  0x3bcaff7 +libToonBoomActionManager.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomActionManager.1.0.0.dylib
    0x3c1c000 -  0x3cacfeb +libToonBoomBaseCore.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libToonBoomBaseCore.1.0.0.dylib
    0x3cea000 -  0x3dfefe3 +libqsa.1.1.3.dylib (1.1.3 - compatibility 1.1.0) <F255D509-51B2-EEF7-A988-17EC5B0F4C66> /Applications/Toon Boom Harmony 9.2/*/libqsa.1.1.3.dylib
    0x3ec3000 -  0x3edefe7 +libjpeg.dylib (63.0.0 - compatibility 63.0.0) /Applications/Toon Boom Harmony 9.2/*/libjpeg.dylib
    0x3ee6000 -  0x3f03fdf +libpng.dylib (24.0.0 - compatibility 24.0.0) /Applications/Toon Boom Harmony 9.2/*/libpng.dylib
    0x3f65000 -  0x3f65fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7d51000 -  0x7d7eff8  GLRendererFloat (??? - ???) <1264885F-1492-3591-BFB1-B671A7B08A29> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0xa8cc000 -  0xaa39ffc  GLEngine (??? - ???) <C49CCDEA-F23E-30CD-9BCD-FC09C9D07CF4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xaa6d000 -  0xab64ffb  libGLProgrammability.dylib (??? - ???) <8E592FEB-B6A8-3BFF-828B-B37B05D4D574> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xab88000 -  0xaf05feb  com.apple.driver.AppleIntelHDGraphicsGLDriver (7.14.5 - 7.1.4) <35B829C8-A326-3D6A-92DF-7320788DB5E1> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0xb0c3000 -  0xb57cfef +Stage_libFNP.dylib (??? - ???) <BFC34EBF-3BC7-9A2E-1420-ECBD660FE299> /Applications/Toon Boom Harmony 9.2/Stage.app/Contents/MacOS/Stage_libFNP.dylib
    0x8f002000 - 0x8f7a4ffb  com.apple.GeForceGLDriver (7.14.5 - 7.1.4) <DADD43EC-DA0A-3B8F-B434-70693241F43D> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8feb4000 - 0x8fee69c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x9009cff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9009d000 - 0x90251ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x90284000 - 0x90287ffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90288000 - 0x90357fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <8B8A3DD3-BB3D-33FC-A714-81E1B883B155> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9035d000 - 0x90388fff  com.apple.GSS (2.1 - 2.0) <05A0171B-76EA-3E4C-8A36-65D1A978AF4B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x90389000 - 0x9039afff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x90407000 - 0x9040bffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90448000 - 0x90448fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90449000 - 0x904abff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x904ac000 - 0x904b0ff7  com.apple.OpenDirectory (10.7 - 146) <3D3D30CE-6D82-3681-AA98-4E3AEFFA4229> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x904b7000 - 0x90508ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x90509000 - 0x90514fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9051d000 - 0x90536fff  libPng.dylib (??? - ???) <A83B66DC-302C-3A4C-8107-0E5560708024> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9058f000 - 0x905d0ff7  com.apple.CoreMedia (1.0 - 705.42) <B45070F1-4097-3BAD-AA7C-0F7AFD6EAC27> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x905d1000 - 0x9065efe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9065f000 - 0x9071ffff  com.apple.CoreServices.OSServices (478.29 - 478.29) <EAAAAC1B-2599-3875-9068-DF7E6B5760A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90720000 - 0x9082fffb  com.apple.DesktopServices (1.6.1 - 1.6.1) <9F02752A-617B-3AC7-BCA1-F040C105EDDE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90830000 - 0x9083efff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x9083f000 - 0x90849ff0  com.apple.DirectoryService.Framework (10.7 - 146) <EDAEA2B3-2BDE-377D-9170-750DE5753029> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9084a000 - 0x90b8affb  com.apple.HIToolbox (1.8 - ???) <DFED9BD0-E142-397B-BE16-16EBCF3CE1EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90bd8000 - 0x90c50ff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90c51000 - 0x90c85ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x90c86000 - 0x90c8eff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x90c8f000 - 0x90ccbffd  libGLImage.dylib (??? - ???) <8251242B-E04E-3467-BD0F-834578B18AC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90ccc000 - 0x90d0cff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x90d0d000 - 0x90d30fff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90d31000 - 0x90e0eff7  com.apple.backup.framework (1.3.1 - 1.3.1) <01EF61F8-67B3-33CE-9828-80BE67988A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90e0f000 - 0x90effff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x90f00000 - 0x90f02ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90f03000 - 0x90febfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x91091000 - 0x91118fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91660000 - 0x91663ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x91664000 - 0x9166fffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x916b1000 - 0x916d9ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x916e8000 - 0x916effff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91808000 - 0x91818fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x91819000 - 0x91819ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9181a000 - 0x9187efff  com.apple.framework.IOKit (2.0 - ???) <D14460ED-2B6C-375D-B3A4-B8C82E922666> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x918ba000 - 0x91936fff  libType1Scaler.dylib (??? - ???) <DFBB3B4F-31F4-3ED0-B57C-713493CA2756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x91937000 - 0x91bbcfe3  com.apple.QuickTime (7.7.1 - 2306) <F8C64DC4-3FE4-3A06-B10B-59E7F3BA6FDD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91bbd000 - 0x91bcdff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x91c95000 - 0x91caaff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91cab000 - 0x91cb0ffb  com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x91cff000 - 0x91e51fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <7646E131-08EE-3D72-ADA2-4A61C562B36E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91e52000 - 0x91e88ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91e89000 - 0x91ec7fff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x921f3000 - 0x92258ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92259000 - 0x92259fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x9225a000 - 0x9225bff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x923d0000 - 0x92643fff  com.apple.CoreImage (7.82 - 1.0.1) <6C99F458-E83A-3538-9B71-2C8BD0C9DCD5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x926f4000 - 0x92719ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9271a000 - 0x92720ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9272c000 - 0x9272cfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9272d000 - 0x92dd6eeb  com.apple.CoreGraphics (1.600.0 - ???) <322FC806-0B9F-3A58-8C88-D477E32A50F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92dd7000 - 0x92ddeffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92e50000 - 0x92f10ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <A39EA668-D042-377F-BC81-26748CD57ADC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9300e000 - 0x93083fff  com.apple.Metadata (10.7.0 - 627.20) <1E7C8194-8CE4-3103-A3D1-8913238AF923> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93084000 - 0x930dcfff  com.apple.HIServices (1.10 - ???) <76B50B43-6CFD-3067-A085-11420FD4FAA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x930dd000 - 0x93497ffb  com.apple.SceneKit (2.1 - 125.1) <7BFC0028-18AC-3B49-8DDC-CB7A7359D4F7> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x9362e000 - 0x93632ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x93cce000 - 0x93cd5ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x93cdc000 - 0x93efbff7  com.apple.imageKit (2.1.1 - 1.0) <9AF0A882-BEAD-3AEC-8A72-497A7C3C2358> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93efc000 - 0x93f04ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x93f69000 - 0x94152ff7  com.apple.CoreData (104 - 358.12) <F8AD7990-2C30-31A4-8E78-FA8DD5CF03CC> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9429d000 - 0x942a2ffd  libGFXShared.dylib (??? - ???) <820D744C-C641-3918-A72A-AC2E5276BCB6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x942a3000 - 0x942a8ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x942a9000 - 0x942b6fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x942b7000 - 0x942c2ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9430f000 - 0x94337ff0  com.apple.CoreServicesInternal (113.8 - 113.8) <9930695C-1C48-329F-93FD-5AEEE2EF942C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x94338000 - 0x94359fff  com.apple.framework.internetaccounts (1.1 - 2) <943A5FFD-265A-39C2-AABF-713A47AB9943> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x9435a000 - 0x9435efff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9435f000 - 0x94365ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94366000 - 0x94388ffe  com.apple.framework.familycontrols (3.0 - 300) <F87D87EF-553A-3165-9C9A-6E117C537FE9> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94398000 - 0x94398fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94399000 - 0x9464bff7  com.apple.security (7.0 - 55010) <BE0350C5-5221-3BFF-B674-646AB1BA0F2E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94658000 - 0x9465bffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9465c000 - 0x94966ff3  com.apple.Foundation (6.7.1 - 833.20) <B5092554-485A-3A7D-904B-B04B1EE5C50C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94aae000 - 0x94ac4ffe  libxpc.dylib (77.17.0 - compatibility 1.0.0) <E01E0074-0830-3F20-8703-EA7722BFD358> /usr/lib/system/libxpc.dylib
    0x94ad6000 - 0x94aeffff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <7D458EB4-57CE-305E-99D7-2F06403F8097> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94af0000 - 0x94af3ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x94af4000 - 0x94bbffff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x94ca7000 - 0x9511cff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x9511d000 - 0x9511dff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9511e000 - 0x9513bff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9513c000 - 0x95147ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95159000 - 0x951edff7  com.apple.LaunchServices (480.21 - 480.21) <E3621817-B627-3EEC-A7F9-0D45583B7FE8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x951ee000 - 0x9534fffb  com.apple.QuartzCore (1.7 - 270.0) <0916DA83-6400-3FEA-BC53-5F4BA4D126EC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95350000 - 0x95359ffb  com.apple.DisplayServicesFW (2.5.2 - 317) <DF4FCE9C-A4EE-3590-B079-495AC83836EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x953db000 - 0x953eeffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3D94520B-C976-370F-AF56-278002BCF11D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x953ef000 - 0x953f1ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x953f5000 - 0x95445ff4  libTIFF.dylib (??? - ???) <E86EA22A-82C0-3E77-9EAF-739F385790D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95446000 - 0x955a8fff  com.apple.QTKit (7.7.1 - 2306) <5A7E5ED0-C4DC-3CEC-ABE0-24899134ACE1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x955d3000 - 0x955dbff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x956be000 - 0x956e4ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95703000 - 0x95bdfff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x965f9000 - 0x966dcff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x966dd000 - 0x966ffff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x96700000 - 0x96701ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96702000 - 0x96706ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x96707000 - 0x96745fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96965000 - 0x96965fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96966000 - 0x96967ffd  libCVMSPluginSupport.dylib (??? - ???) <96F2F2F4-E7A9-36C8-B1CF-D58AA3DB2B44> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x96968000 - 0x96c6afff  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <8094724D-591D-3CC2-81DE-4E3029624E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96c6b000 - 0x96c80fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96c81000 - 0x96ccfff3  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <DB40F137-4519-339B-81DC-7375B2FE8FD2> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96cd0000 - 0x96d38ff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96d39000 - 0x96dc3ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96dc4000 - 0x96dd2fff  com.apple.opengl (1.7.5 - 1.7.5) <81166D23-DE8E-3938-AAD3-29B1FA5E446E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96dd3000 - 0x96ecbff7  libFontParser.dylib (??? - ???) <83E7E71E-D217-3DEE-B288-F5BAE7E118C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ecc000 - 0x96f2dffb  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <089D78E0-46A6-38DB-9545-7F35CC815939> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96f3a000 - 0x96f4eff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96fbf000 - 0x96fc2ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x973da000 - 0x974fafec  com.apple.vImage (5.1 - 5.1) <008B989F-F080-398E-ACB1-FBF5BA107D6D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97518000 - 0x9754eff4  com.apple.LDAPFramework (3.0 - 120.1) <EA92FCA5-7A7E-328F-8C7F-4250FCC45879> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9754f000 - 0x97951ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97952000 - 0x97a61ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <90D36793-04A5-3BFF-BE83-EEEDCBEDC756> /usr/lib/libsqlite3.dylib
    0x97b20000 - 0x97f13feb  com.apple.VideoToolbox (1.0 - 705.42) <3F12F8A3-ED41-3EAD-A887-B7805353122C> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98178000 - 0x9824ea5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x9824f000 - 0x98252ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98253000 - 0x98296ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x98297000 - 0x982c4ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x982c5000 - 0x982dffff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x982e0000 - 0x982eefff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x982ef000 - 0x982effff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x982f0000 - 0x9836cffd  com.apple.PDFKit (2.6.1 - 2.6.1) <7BC3186B-80B7-3E68-AFDD-2734164BCCFB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98482000 - 0x98526fff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98527000 - 0x98589ffb  com.apple.datadetectorscore (3.0 - 179.4) <12EF80E0-35CC-30A7-942F-2F9E87C4C98C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9858a000 - 0x985c6fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <AA56493C-D7C6-3D4F-8DC8-855405AFF57B> /usr/lib/libcups.2.dylib
    0x985c7000 - 0x985c9ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x985ca000 - 0x98611fff  com.apple.SystemConfiguration (1.11.1 - 1.11) <CA6CE2B6-DC18-31FF-9668-70BB2FD8D7BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98612000 - 0x98615fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9870e000 - 0x9875efff  libFontRegistry.dylib (??? - ???) <81E03B82-1F31-3702-97DC-BE20298E326F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9875f000 - 0x98796fef  com.apple.DebugSymbols (2.1 - 87) <84EF10C9-97C0-3AF5-9545-9F6BD1847090> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x98797000 - 0x987b6fff  com.apple.RemoteViewServices (1.2 - 39) <C7B638D2-2F8B-3A45-916A-73103FADC822> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x987b7000 - 0x987e5ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x987e6000 - 0x987e7ff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x9883e000 - 0x98897ffb  com.apple.coreui (1.2.1 - 164.1) <890E0BE9-3360-3B56-BE46-5A2421875A40> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x995e9000 - 0x9964dffb  com.apple.Symbolication (1.2 - 89) <98706396-23C9-37FD-9116-E5FD867AD64C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9964f000 - 0x9964fff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99650000 - 0x996bdff3  com.apple.CoreSymbolication (2.1 - 71) <EEF34338-3E64-3660-982C-B96BEC4AEB31> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x997fe000 - 0x9982cfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <07D9A827-9567-34C2-9022-AF4BF975C9A7> /usr/lib/libSystem.B.dylib
    0x9982d000 - 0x998baff7  com.apple.CoreText (220.11.0 - ???) <4F98D709-75AC-35F0-AD88-8F2C4BD744C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x998bb000 - 0x998bcff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x998bd000 - 0x9a34bffe  com.apple.AppKit (6.7.2 - 1138.23) <ADFA8D70-601E-3B5C-96FD-F45F52055CC8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9a358000 - 0x9a469ff7  libJP2.dylib (??? - ???) <35D120D4-3304-3A02-9259-EB933E74E63A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9a46a000 - 0x9a505ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9a573000 - 0x9a574ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x9a589000 - 0x9a5d9ff9  com.apple.QuickLookFramework (3.1 - 500.1) <28CB604E-2426-3491-BF16-2CDFD4C392B0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9a5da000 - 0x9a706ff9  com.apple.CFNetwork (520.2.5 - 520.2.5) <02193949-50A8-3CBC-9920-5FCDB8EBE17A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9aa4b000 - 0x9aa9cff3  com.apple.CoreMediaIO (210.0 - 3180) <79AA7CA8-FC39-375D-9485-855D302DF7AA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9aa9d000 - 0x9aad1ff3  libTrueTypeScaler.dylib (??? - ???) <A3A9D11A-74C6-3E0F-99D9-B57FE56C6646> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9aad2000 - 0x9ab4dffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <D5AC5C21-CE1E-333D-94F7-F0F534FD4DC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9ab4e000 - 0x9abbdfff  com.apple.Heimdal (2.1 - 2.0) <DE626683-DF32-341B-8997-AE63309590C7> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9ac01000 - 0x9ac0aff3  com.apple.CommonAuth (2.1 - 2.0) <D49B41B1-A5DD-366A-8C30-49E9B875AA13> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9ac8a000 - 0x9ace7ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9ace8000 - 0x9acf1fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9acf2000 - 0x9adc9ffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9addb000 - 0x9afb1fe3  com.apple.CoreFoundation (6.7.1 - 635.15) <AC9F6462-6315-3D89-8075-D048DB4DBF7E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9afb2000 - 0x9afe1ff7  libsystem_info.dylib (??? - ???) <B86A363D-6EA2-3A69-A6CB-18B7F98FC61A> /usr/lib/system/libsystem_info.dylib
    0x9afee000 - 0x9b037ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9b038000 - 0x9b6b3fe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9b6b4000 - 0x9b9f6fff  com.apple.MediaToolbox (1.0 - 705.42) <5AEFD5BE-6FA3-38F8-966A-B0AB56C472B8> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9b9f7000 - 0x9b9f8fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9b9f9000 - 0x9c08aff3  libclh.dylib (4.0.3 - 4.0.3) <0F0FA67F-970B-3D68-8945-7136EA71D77B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x9c08b000 - 0x9c0b4ffe  com.apple.opencl (1.50.63 - 1.50.63) <C4EC60D6-9A7C-3CE9-AA80-2F81D9BB4465> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9c0b5000 - 0x9c0d2fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x9c0d3000 - 0x9c0efff5  com.apple.GenerationalStorage (1.0 - 125) <F1D67293-9192-367D-AE74-2732B23E7E77> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9c0f0000 - 0x9c0f1fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9c0f2000 - 0x9c11cff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9c11d000 - 0x9c121fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9c16f000 - 0x9c177fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9c178000 - 0x9c3a1ffb  com.apple.QuartzComposer (5.0 - 236) <7BD138F0-C748-3013-98C0-4D5F5E10B9AB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9c3b6000 - 0x9c48cff6  com.apple.QuickLookUIFramework (3.1 - 500.1) <4E259D94-6081-32D7-AD60-565E57B11EBA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9c48d000 - 0x9c48efff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9c48f000 - 0x9c4a6ff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9c4a7000 - 0x9c6f0ff7  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <19E4C699-A9BA-3FCB-90CC-02C8F0607165> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9c73d000 - 0x9c744ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9c745000 - 0x9c746fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9c747000 - 0x9c796ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9c797000 - 0x9ca46ff7  com.apple.AddressBook.framework (6.1 - 1062) <8992D5C7-DC3C-3009-8A9E-A6937B91BB4D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9ca47000 - 0x9ca47fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9caab000 - 0x9cb12fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x9cb15000 - 0x9cb25fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9cb26000 - 0x9cb30ff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9cb47000 - 0x9cb65ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x9cb66000 - 0x9cb66fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0xb2000000 - 0xb255dff3 +libqt-mt.3.3.8.dylib (3.3.8 - compatibility 3.3.0) <2C43D829-B4BA-4ACD-94D0-86AB464355AD> /Applications/Toon Boom Harmony 9.2/*/libqt-mt.3.3.8.dylib
    0xb9000000 - 0xb902afff +libqui.1.0.0.dylib (??? - ???) /Applications/Toon Boom Harmony 9.2/*/libqui.1.0.0.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 2
    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: 2009
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=252.8M resident=137.0M(54%) swapped_out_or_unallocated=115.8M(46%)
    Writable regions: Total=124.1M written=13.0M(10%) resident=24.1M(19%) swapped_out=0K(0%) unallocated=100.0M(81%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    ATS (font support)            
    33.1M
    ATS (font support) (reserved)    
    4K   
    reserved VM address space (unallocated)
    CG backing stores             
    12.1M
    CG raster data                  
    64K
    CG shared images              
    3608K
    CoreGraphics                     
    8K
    CoreServices                  
    1240K
    IOKit                            
    4K
    MALLOC                        
    47.1M
    MALLOC guard page               
    48K
    MALLOC_LARGE (reserved)        
    164K   
    reserved VM address space (unallocated)
    Memory tag=240                   
    4K
    Memory tag=242                  
    12K
    Memory tag=243                   
    4K
    Stack                         
    65.5M
    VM_ALLOCATE                   
    16.1M
    __CI_BITMAP                     
    80K
    __DATA                        
    22.1M
    __DATA/__OBJC                  
    232K
    __IMAGE                       
    1256K
    __IMPORT                       
    344K
    __LINKEDIT                    
    58.3M
    __OBJC                        
    2696K
    __OBJC/__DATA                   
    76K
    __PAGEZERO                       
    4K
    __TEXT                       
    194.5M
    __UNICODE                      
    544K
    __mw                             
    8K
    mapped file                  
    108.3M
    shared memory                  
    312K
    shared pmap                   
    7716K
    ===========                 
    =======
    TOTAL                        
    575.1M
    TOTAL, minus reserved VM space
    574.9M
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: APPLE SSD TS512B, 500.28 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3
    FireWire Device: 2big quadra, LaCie, 800mbit_speed
    i checked with the syslog:
    kCGErrorInvalidConnection: CGSGetWindowTags: Invalid connection
    kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    This process is attempting to exclude an item from Time Machine by path without administrator privileges. This is not supported.
    Any idea for this issue ?
    Thanks

    If you have this product,
    http://www.symantec.com/business/support/index?page=content&id=TECH165159
    you have to go back to Snow Leopard.
    To re-install SL, back up your home directory, format and re-install.

  • Mail.app quits when I open email from one particular person

    I get the following error message when I open emails received from one person...it's always the same person.  Have tried opening their emails on iPhone and another Mac and all emails open fine.
    I have tried a reinstall of the application from my install disk, rebuilt the mailboxes but still having issues.
    Anyone have any ideas?
    Process:         Mail [148]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         4.5 (1084)
    Build Info:      Mail-10840000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [99]
    Date/Time:       2011-09-18 10:33:48.709 +1200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          -177840 sec
    Crashes Since Last Report:           -20
    Per-App Interval Since Last Report:  -124402 sec
    Per-App Crashes Since Last Report:   -19
    Anonymous UUID:                      A596499B-5956-4017-B033-8E1194E43F17
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000011
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    -[MessageContentController _fetchContentsForMessage:fromStore:withViewingState:]
    -[LibraryStore setFlagsFromDictionary:forMessages:]
    -[Matador _setAttributeForFileAtPath:name:value:]
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff83ba3d66 __CFCopyFormattingDescription + 22
    1   com.apple.CoreFoundation                0x00007fff83ba3a82 _CFStringAppendFormatAndArgumentsAux + 6050
    2   com.apple.CoreFoundation                0x00007fff83ba229d _CFStringCreateWithFormatAndArgumentsAux + 109
    3   MetadataLib.dylib                       0x00007fff85999f81 readRawTiffPropsFromPath + 84076
    4   MetadataLib.dylib                       0x00007fff8599168a readRawTiffPropsFromPath + 49013
    5   MetadataLib.dylib                       0x00007fff8599183d readRawTiffPropsFromPath + 49448
    6   MetadataLib.dylib                       0x00007fff85982d2b readMakerNoteProps + 144
    7   com.apple.ImageIO.framework             0x00007fff88a2bfb7 readProps + 1193
    8   com.apple.ImageIO.framework             0x00007fff88a2bec3 readProps + 949
    9   com.apple.ImageIO.framework             0x00007fff88a32ca8 readTiffPropsFromData + 213
    10  com.apple.ImageIO.framework             0x00007fff88a32bc6 readExifData + 87
    11  com.apple.ImageIO.framework             0x00007fff88a30b72 initImageJPEG + 2215
    12  com.apple.ImageIO.framework             0x00007fff88a302be _CGImagePluginInitJPEG + 70
    13  com.apple.ImageIO.framework             0x00007fff88a23024 makeImagePlus + 511
    14  com.apple.ImageIO.framework             0x00007fff88a22cec _CGImageSourceGetPropertiesAtIndexInternal + 88
    15  com.apple.ImageIO.framework             0x00007fff88a22c56 CGImageSourceCopyPropertiesAtIndex + 129
    16  com.apple.AppKit                        0x00007fff8780801f ImageSourceOptionsForCGImageSource_index_ + 32
    17  com.apple.AppKit                        0x00007fff87807e2e +[NSBitmapImageRep _imagesWithData:hfsFileType:extension:zone:expandImageContentNow:includeAllReps :] + 423
    18  com.apple.AppKit                        0x00007fff878f5f7a +[NSBitmapImageRep imageRepsWithData:] + 75
    19  com.apple.AppKit                        0x00007fff878f0d72 -[NSImage initWithData:] + 115
    20  com.apple.MessageFramework              0x00007fff85d4f9fb -[MailAddressManager consumeImageData:forTag:] + 212
    21  com.apple.Foundation                    0x00007fff8942754f __NSThreadPerformPerform + 219
    22  com.apple.CoreFoundation                0x00007fff83bbe401 __CFRunLoopDoSources0 + 1361
    23  com.apple.CoreFoundation                0x00007fff83bbc5f9 __CFRunLoopRun + 873
    24  com.apple.CoreFoundation                0x00007fff83bbbdbf CFRunLoopRunSpecific + 575
    25  com.apple.HIToolbox                     0x00007fff8529b7ee RunCurrentEventLoopInMode + 333
    26  com.apple.HIToolbox                     0x00007fff8529b5f3 ReceiveNextEventCommon + 310
    27  com.apple.HIToolbox                     0x00007fff8529b4ac BlockUntilNextEventMatchingListInMode + 59
    28  com.apple.AppKit                        0x00007fff8772beb2 _DPSNextEvent + 708
    29  com.apple.AppKit                        0x00007fff8772b801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    30  com.apple.AppKit                        0x00007fff876f168f -[NSApplication run] + 395
    31  com.apple.AppKit                        0x00007fff876ea3b0 NSApplicationMain + 364
    32  com.apple.mail                          0x00000001000025a4 0x100000000 + 9636
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff897b3c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff897b5add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff897b57b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff897b52de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff897b4c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8979ad7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8979b3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83bbc932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83bbbdbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8944ac64 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation                    0x00007fff8944ab43 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.MessageFramework              0x00007fff85cb7351 -[RSSInterchange _runManager] + 1445
    7   com.apple.Foundation                    0x00007fff89410204 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff897d3fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff897d3e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8979ad7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8979b3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83bbc932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83bbbdbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8944ac64 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation                    0x00007fff8944ab43 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.MessageFramework              0x00007fff85ce9fe8 +[_NSSocket _runIOThread] + 78
    7   com.apple.Foundation                    0x00007fff89410204 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff897d3fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff897d3e89 thread_start + 13
    Thread 4:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff897de932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff83bde498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff897d3fd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff897d3e89 thread_start + 13
    Thread 5:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x00007fff897d5a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff897d9881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff84284690 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8187d4c1 WebCore::LocalStorageThread::threadEntryPoint() + 177
    4   libSystem.B.dylib                       0x00007fff897d3fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff897d3e89 thread_start + 13
    Thread 6:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff8979ad7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8979b3ed mach_msg + 59
    2   com.apple.Metadata                      0x00007fff89692f90 mdsFetchAttributesForItems + 184
    3   com.apple.Metadata                      0x00007fff896925cf __newAttr + 671
    4   com.apple.Metadata                      0x00007fff89692211 _MDCopyUTITypeFromLS + 29
    5   com.apple.Metadata                      0x00007fff89691c72 _MDItemValidateOperation + 74
    6   com.apple.Metadata                      0x00007fff89691bb7 MDItemSetAttribute + 66
    7   com.apple.MessageFramework              0x00007fff85d4f440 -[Matador _setAttributeForFileAtPath:name:value:] + 191
    8   com.apple.CoreFoundation                0x00007fff83bf696c __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff83bf683d -[NSInvocation invoke] + 141
    10  com.apple.MessageFramework              0x00007fff85c9fcbf -[ThrowingInvocationOperation main] + 31
    11  com.apple.MessageFramework              0x00007fff85c9f5ff -[_MFInvocationOperation main] + 275
    12  com.apple.Foundation                    0x00007fff89438ec0 -[__NSOperationInternal start] + 681
    13  com.apple.Foundation                    0x00007fff89516c59 ____NSOQSchedule_block_invoke_2 + 129
    14  libSystem.B.dylib                       0x00007fff897d6d64 _dispatch_call_block_and_release + 15
    15  libSystem.B.dylib                       0x00007fff897b52d1 _dispatch_worker_thread2 + 239
    16  libSystem.B.dylib                       0x00007fff897b4c08 _pthread_wqthread + 353
    17  libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 7:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff897dcaea pread + 10
    1   libsqlite3.dylib                        0x00007fff868ec09c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff868efbf0 sqlite3PagerAcquire + 592
    3   libsqlite3.dylib                        0x00007fff868fc16c sqlite3BtreeBeginTrans + 876
    4   libsqlite3.dylib                        0x00007fff8695f377 sqlite3VdbeExec + 16503
    5   libsqlite3.dylib                        0x00007fff86966798 sqlite3_step + 1384
    6   com.apple.CoreData                      0x00007fff85ff1b8c _execute + 76
    7   com.apple.CoreData                      0x00007fff85ff1906 -[NSSQLiteConnection execute] + 1990
    8   com.apple.CoreData                      0x00007fff8600277a -[NSSQLChannel selectRowsWithStatement:] + 106
    9   com.apple.CoreData                      0x00007fff86000fed -[NSSQLCore _newRowsForFetchPlan:selectedBy:withArgument:] + 717
    10  com.apple.CoreData                      0x00007fff85ff950b -[NSSQLCore newRowsForFetchPlan:] + 315
    11  com.apple.CoreData                      0x00007fff85ff8e38 -[NSSQLCore objectsForFetchRequest:inContext:] + 344
    12  com.apple.CoreData                      0x00007fff85ff8a86 -[NSSQLCore executeRequest:withContext:] + 166
    13  com.apple.CoreData                      0x00007fff85ff80e0 -[NSPersistentStoreCoordinator(_NSInternalMethods) executeRequest:withContext:] + 688
    14  com.apple.CoreData                      0x00007fff85ff59fb -[NSManagedObjectContext executeFetchRequest:error:] + 267
    15  ...apple.AddressBook.framework          0x00007fff88ec2847 -[ABAddressBook(ABMailPeopleSearch) nts_ContactsMatchingNormalizedEmailAddress:inSubscribedContent:context:] + 273
    16  ...apple.AddressBook.framework          0x00007fff88ec20a7 -[ABAddressBook(ABMailPeopleSearch) recordsMatchingMailAddressWithEmail:fullName:firstName:lastName:inSubscribedCon tent:] + 298
    17  com.apple.MessageFramework              0x00007fff85d436e3 -[ABAddressBook(MailAdditions) bestRecordMatchingFormattedAddress:] + 364
    18  com.apple.MessageFramework              0x00007fff85d433e1 -[MailAddressManager bestRecordMatchingFormattedAddress:] + 411
    19  com.apple.mail                          0x0000000100074eeb 0x100000000 + 478955
    20  com.apple.mail                          0x000000010008ed3c 0x100000000 + 585020
    21  com.apple.CoreFoundation                0x00007fff83bf696c __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff83bf683d -[NSInvocation invoke] + 141
    23  com.apple.MessageFramework              0x00007fff85cb8cb9 -[MonitoredInvocation invoke] + 214
    24  com.apple.MessageFramework              0x00007fff85c9fcbf -[ThrowingInvocationOperation main] + 31
    25  com.apple.MessageFramework              0x00007fff85c9f5ff -[_MFInvocationOperation main] + 275
    26  com.apple.Foundation                    0x00007fff89438ec0 -[__NSOperationInternal start] + 681
    27  com.apple.Foundation                    0x00007fff89516c59 ____NSOQSchedule_block_invoke_2 + 129
    28  libSystem.B.dylib                       0x00007fff897d6d64 _dispatch_call_block_and_release + 15
    29  libSystem.B.dylib                       0x00007fff897b52d1 _dispatch_worker_thread2 + 239
    30  libSystem.B.dylib                       0x00007fff897b4c08 _pthread_wqthread + 353
    31  libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff897b4a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff897b4e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 9:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff897dc8ba fsync + 10
    1   libsqlite3.dylib                        0x00007fff868df827 unixSync + 71
    2   libsqlite3.dylib                        0x00007fff868e262e syncJournal + 494
    3   libsqlite3.dylib                        0x00007fff868f3086 sqlite3PagerCommitPhaseOne + 1478
    4   libsqlite3.dylib                        0x00007fff868f8fbe sqlite3BtreeCommitPhaseOne + 558
    5   libsqlite3.dylib                        0x00007fff86921133 sqlite3VdbeHalt + 3107
    6   libsqlite3.dylib                        0x00007fff869655bd sqlite3VdbeExec + 41661
    7   libsqlite3.dylib                        0x00007fff86966798 sqlite3_step + 1384
    8   libsqlite3.dylib                        0x00007fff869672e5 sqlite3_exec + 341
    9   com.apple.MessageFramework              0x00007fff85c9cec5 +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 804
    10  com.apple.MessageFramework              0x00007fff85d3c79c +[Library commitSynchronously] + 323
    11  com.apple.MessageFramework              0x00007fff85d45c61 -[MessageStore setFlagsFromDictionary:forMessages:] + 1128
    12  com.apple.CoreFoundation                0x00007fff83bf696c __invoking___ + 140
    13  com.apple.CoreFoundation                0x00007fff83bf683d -[NSInvocation invoke] + 141
    14  com.apple.MessageFramework              0x00007fff85c9fcbf -[ThrowingInvocationOperation main] + 31
    15  com.apple.MessageFramework              0x00007fff85c9f5ff -[_MFInvocationOperation main] + 275
    16  com.apple.Foundation                    0x00007fff89438ec0 -[__NSOperationInternal start] + 681
    17  com.apple.Foundation                    0x00007fff89516c59 ____NSOQSchedule_block_invoke_2 + 129
    18  libSystem.B.dylib                       0x00007fff897d6d64 _dispatch_call_block_and_release + 15
    19  libSystem.B.dylib                       0x00007fff897b52d1 _dispatch_worker_thread2 + 239
    20  libSystem.B.dylib                       0x00007fff897b4c08 _pthread_wqthread + 353
    21  libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff897b4a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff897b4e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff897b4aa5 start_wqthread + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8979adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff897d9772 _pthread_cond_wait + 1015
    2   ...apple.AddressBook.framework          0x00007fff88ec43fb -[ABRemoteImageLoader workLoop] + 304
    3   com.apple.Foundation                    0x00007fff89410204 __NSThread__main__ + 1429
    4   libSystem.B.dylib                       0x00007fff897d3fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff897d3e89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000020  rbx: 0x0000000000000008  rcx: 0x0000000000000000  rdx: 0x00007fff5fbfc310
      rdi: 0x0000000000000008  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfc230  rsp: 0x00007fff5fbfc220
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff5fbfd4a2  r11: 0x00000001159ba03c
      r12: 0x0000000000000000  r13: 0x00007fff5fbfc140  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff83ba3d66  rfl: 0x0000000000010202  cr2: 0x0000000000000011
    Binary Images:
           0x100000000 -        0x100339fe7  com.apple.mail 4.5 (1084) <4E11604B-93C6-8C9C-C40D-E590AEEA1A82> /Applications/Mail.app/Contents/MacOS/Mail
           0x113d02000 -        0x113d15ff7  com.apple.AddressBook.LocalSourceBundle 1.0.3 (883) <429E114F-0B3C-BFFE-B0A4-B798094225A3> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x114789000 -        0x11478cfff  com.apple.yahoo.syncframework 1.3 (51) <CA576950-A922-EDA0-96BC-006A701F2A64> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
           0x114791000 -        0x114797fff  com.apple.AddressBook.LDAPSource 1.0.3 (883) <F326BDE3-243D-5D6B-9A2A-E14B4F1C4F54> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
           0x1147f6000 -        0x1147f6fff  com.apple.JavaPluginCocoa 13.5.0 (13.5.0) <2147F637-E291-A79E-770B-E122F4A1FA47> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
           0x115aee000 -        0x115af3ff7  JavaLaunching ??? (???) <9E94B3DF-E0FB-BE09-1F88-E6334CA87466> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x115d6f000 -        0x115d73fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x115d78000 -        0x115d7eff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x115db7000 -        0x115dc9fff  com.apple.mail.WebPlugIn 4.5 (1084) <951C1BF7-C574-81D9-F28B-649DA4E95889> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
           0x116332000 -        0x116355fff  com.apple.Mail.Syncer 4.5 (1084) <9AF048E0-01D9-1545-8C74-54BC6040504D> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x117014000 -        0x1170dffef  com.apple.audio.units.Components 1.6.5 (1.6.5) <98E3D066-C3A9-FF74-C623-D152708EDBCF> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x11717b000 -        0x1171cbfff  com.apple.datadetectors.actions 2.1 (102.2) <975C840D-7290-67B9-F2D0-AB6982AD4A36> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8023dfef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8023e000 -     0x7fff8023eff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8023f000 -     0x7fff8023fff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff80240000 -     0x7fff8025bff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8025c000 -     0x7fff806f9fff  com.apple.RawCamera.bundle 3.8.0 (577) <38481531-657E-DFFA-1EF4-ADFCA15DAC49> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff806fa000 -     0x7fff8079afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8079b000 -     0x7fff80850fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff80851000 -     0x7fff80866ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff80867000 -     0x7fff808d3fe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff80b15000 -     0x7fff80b35fef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff80b36000 -     0x7fff80bb3fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80bb4000 -     0x7fff80bb9fff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff80bba000 -     0x7fff80db8fe7  com.apple.CalendarStore 4.0.4 (997.7) <9A357B3C-F083-BEAA-4094-B00B423DDE47> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff80dee000 -     0x7fff80e58fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff80e59000 -     0x7fff80e5afff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff80e5b000 -     0x7fff80f72fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff8179d000 -     0x7fff817d6ff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff817d7000 -     0x7fff81823fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8185b000 -     0x7fff82895fff  com.apple.WebCore 6534 (6534.50) <8B0BB24A-C84C-A4F2-5544-C8071A35BBC5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff82896000 -     0x7fff828d0fff  com.apple.bom 10.0 (164) <316D9EB3-6D33-6E57-F63A-BA4DCFCE9941> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff828d1000 -     0x7fff828eeff7  libPng.dylib ??? (???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff828ef000 -     0x7fff82febff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8304c000 -     0x7fff8305dfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff8305e000 -     0x7fff8309ffef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff830a0000 -     0x7fff830e8ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff830e9000 -     0x7fff83132fef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff83133000 -     0x7fff8393dfe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8393e000 -     0x7fff83944ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff83945000 -     0x7fff83945ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff83946000 -     0x7fff8394dff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8394e000 -     0x7fff83964fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff83965000 -     0x7fff839f5fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83a06000 -     0x7fff83a85fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83a86000 -     0x7fff83b5afe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff83b5b000 -     0x7fff83b6ffff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff83b70000 -     0x7fff83ce7fe7  com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff83de9000 -     0x7fff83e67ff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff83e68000 -     0x7fff83e73ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff83e74000 -     0x7fff83f35fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff83f36000 -     0x7fff840d2fff  com.apple.WebKit 6534 (6534.50) <05AEA122-3F31-0F56-4AA6-E84140C53785> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff840d3000 -     0x7fff84111fef  com.apple.DebugSymbols 1.1 (70) <9C6DDF5B-FC34-E61A-E4E7-E6F0EF218A89> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff84112000 -     0x7fff841a1fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff841a2000 -     0x7fff841a8ff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff841a9000 -     0x7fff841a9ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff841aa000 -     0x7fff841ffff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84200000 -     0x7fff84216fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84247000 -     0x7fff84249fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8427a000 -     0x7fff84487ff7  com.apple.JavaScriptCore 6534 (6534.49) <1D418EF7-CDBE-3832-0157-D853073948D0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff84488000 -     0x7fff84495fff  com.apple.NSServerNotificationCenter 3.0 (3.0) <FF7063D0-A25F-C22E-FA20-3225ADF089E2> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff84496000 -     0x7fff844a1fff  com.apple.dotMacLegacy 3.2 (266) <7F396105-3B91-496A-801E-865C5B3812E0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff844a2000 -     0x7fff844dcfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff844e3000 -     0x7fff844f7ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff844f8000 -     0x7fff844feff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff844ff000 -     0x7fff84501fff  libRadiance.dylib ??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff84502000 -     0x7fff845b8ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff845b9000 -     0x7fff845bcff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff845bd000 -     0x7fff845e8ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff8461a000 -     0x7fff84b20ff7  com.apple.VideoToolbox 0.484.52 (484.52) <FA1B8197-8F5F-73CB-A9A1-49E0FB49CF51> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff84b21000 -     0x7fff84b23fef  com.apple.ExceptionHandling 1.5 (10) <FB37FB31-6509-5D96-C201-EF15AE5340A2> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff84b24000 -     0x7fff84b33fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84b34000 -     0x7fff84b96fe7  com.apple.datadetectorscore 2.0 (80.7) <C3A68083-AFB0-CFC6-8AA5-517C9D1489B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff84b97000 -     0x7fff84bc8fff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff84c13000 -     0x7fff84c90fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff84c91000 -     0x7fff84c9fff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff84ca0000 -     0x7fff84d00fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff84d01000 -     0x7fff84d22fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff84d23000 -     0x7fff84e42fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84e43000 -     0x7fff84e44ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff84fd3000 -     0x7fff8523cfff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8526d000 -     0x7fff8556bfff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8556c000 -     0x7fff855b7fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff855b8000 -     0x7fff855e7fff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff855e8000 -     0x7fff8562bff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8562c000 -     0x7fff8568cff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8568d000 -     0x7fff856cefef  com.apple.CoreMedia 0.484.52 (484.52) <3F868AF8-1089-10C3-DCEB-565690FD9742> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85710000 -     0x7fff85715fff  libGIF.dylib ??? (???) <201B8077-B5CC-11AA-E1B0-1D057ABE416A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff85716000 -     0x7fff8584bfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8584c000 -     0x7fff8590dfef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8590e000 -     0x7fff85955fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff85956000 -     0x7fff8597dff7  libJPEG.dylib ??? (???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8597e000 -     0x7fff859d2fff  MetadataLib.dylib 3.8.0 (compatibility 2.2.1) <A8717EF0-1CD8-93A4-3F18-FFC0DCE6BAA4> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff859d3000 -     0x7fff85a10fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff85a11000 -     0x7fff85a11ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff85a12000 -     0x7fff85acffff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85ad0000 -     0x7fff85ad6fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff85ad7000 -     0x7fff85ad7ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff85ad8000 -     0x7fff85ad9ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff85ada000 -     0x7fff85c98fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff85c99000 -     0x7fff85fdcfff  com.apple.MessageFramework 4.5 (1084) <C291835F-FD0E-443D-05BA-3DC0A1634E0C> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff85fdd000 -     0x7fff8611bfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8611c000 -     0x7fff8611fff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86120000 -     0x7fff861d0fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff861d1000 -     0x7fff86214fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff86215000 -     0x7fff86226ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff86227000 -     0x7fff86250ff7  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <778F7753-F0DD-5B89-0908-B2EC9B66B30A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff86251000 -     0x7fff8629bff7  com.apple.DAVKit 4.0.3 (732.2) <7DC4C8B4-9259-2D5D-BDA5-82F0DE3C95CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
        0x7fff8629c000 -     0x7fff862f3fff  com.apple.Symbolication 1.1 (67) <5356D54A-ED53-46F9-1D78-EBB2173540A9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8630a000 -     0x7fff86321fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff864d4000 -     0x7fff864daff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff864db000 -     0x7fff8655dfff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff866d0000 -     0x7fff86742fef  com.apple.CoreSymbolication 2.0 (23) <52356932-C2D9-3867-CB4F-59990ADC2AE2> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff86743000 -     0x7fff86847ff7  com.apple.PubSub 1.0.5 (65.28) <C99BB1FE-46EA-237F-55A3-48CC2FE1F755> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff86848000 -     0x7fff868d4fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff868d5000 -     0x7fff868d9ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff868da000 -     0x7fff86993fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff86994000 -     0x7fff86a10ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86a11000 -     0x7fff86a36ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff86a37000 -     0x7fff86ad1fe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff86ad4000 -     0x7fff86d5dff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86d5e000 -     0x7fff86dadff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff87543000 -     0x7fff8754dfff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8754e000 -     0x7fff87553ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8756a000 -     0x7fff875b9fe7  com.apple.iCalendar 1.0.3 (54) <539A5A20-99D0-25F8-EB75-BD8437611AA6> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff875ba000 -     0x7fff875fbfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff875fc000 -     0x7fff87609ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8760a000 -     0x7fff876e7fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff876e8000 -     0x7fff880e2ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff880e3000 -     0x7fff880f2fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff880f3000 -     0x7fff88138fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff88139000 -     0x7fff8814cff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <4E9E62DC-148A-CC7E-601A-AC095DD5C95A> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
        0x7fff8814d000 -     0x7fff88196ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff88197000 -     0x7fff8819efff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8819f000 -     0x7fff881dcff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff881dd000 -     0x7fff88200fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff88201000 -     0x7fff88254ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff88255000 -     0x7fff8825dfff  com.apple.iChat.IMUtils 5.0.5 (747) <8A019B06-52FB-0B23-8A8B-7C2DA5465934> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
        0x7fff8825e000 -     0x7fff882a5ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff882a6000 -     0x7fff8838bfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8839b000 -     0x7fff8839efff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8839f000 -     0x7fff8850ffff  com.apple.QTKit 7.7 (1783) <DE8DB97C-C058-B40C-492B-D652A30CF571> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88510000 -     0x7fff8851dfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8851e000 -     0x7fff88530fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff88574000 -     0x7fff885dcfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff885dd000 -     0x7fff88a20fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88a21000 -     0x7fff88bdfff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <0A4F51A1-4502-767B-8A4E-F14C6214EF88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff88be0000 -     0x7fff88c13ff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff88c14000 -     0x7fff88c15fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff88d2f000 -     0x7fff88e39ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff88e3a000 -     0x7fff88eaeff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <7F2AE29A-699D-6D9F-8B56-7CF7D0CE49FF> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff88eaf000 -     0x7fff890f1fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff892d9000 -     0x7fff8934aff7  com.apple.AppleVAFramework 4.10.26 (4.10.26) <28C1B366-DF2B-111B-1863-0713B105D930> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8934b000 -     0x7fff893d0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff893d1000 -     0x7fff893f9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff893fa000 -     0x7fff893feff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff893ff000 -     0x7fff89681fe7  com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89682000 -     0x7fff896ccff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff896cd000 -     0x7fff8971cfef  libTIFF.dylib ??? (???) <1E2593D1-A7F6-84C6-DF8F-0B46AE445926> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8971d000 -     0x7fff8971dff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8971e000 -     0x7fff8972afff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff8972b000 -     0x7fff89775fef  com.apple.IMCore 5.0.5 (747) <EA34457E-1946-C6E6-304D-B18233FF68BA> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
        0x7fff89776000 -     0x7fff89799ff7  com.apple.iChat.IMFoundation 5.0.5 (747) <B4C34872-5157-27C0-37F2-77D11137BD8A> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
        0x7fff8979a000 -     0x7fff8995bfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8995c000 -     0x7fff89977fff  com.apple.datadetectors 2.1 (102.2) <69DC4391-62F4-9168-A9EF-8EA36F49D77A> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff899d2000 -     0x7fff899eafff  com.apple.iChat.InstantMessage 5.0.5 (747) <D9784E28-7614-1BAD-8B22-EC12079BCC40> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff899eb000 -     0x7fff89b05fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff89b06000 -     0x7fff89ea3fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89ea4000 -     0x7fff89fccff7  com.apple.MediaToolbox 0.484.52 (484.52) <F03DAC32-79DB-EA5A-9B8D-CB288AF91A56> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff89fcd000 -     0x7fff89fd6ff7  com.apple.aps.framework 1.2 (1.2) <BDCE241A-D224-92D9-6772-967FF2516772> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff89fd7000 -     0x7fff8a014ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8a0cd000 -     0x7fff8a0e6fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a0e7000 -     0x7fff8a174fff  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <0A7B422E-5D79-9980-2477-05DC2CB5CF7C> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8a175000 -     0x7fff8a4a9fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8a4aa000 -     0x7fff8a4e5fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a4f8000 -     0x7fff8a518ff7  com.apple.DirectoryService.Framework 3.6 (621.12) <A4685F06-5881-35F5-764D-C380304C1CE8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8a519000 -     0x7fff8a524fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8a525000 -     0x7fff8a525ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a54d000 -     0x7fff8a6adff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000 / 2
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1292, 0x26400000 / 3
    USB Device: Internal Memory Card Reader, 0x05ac 

    Quit Mail if it's running. Move the following file in your home folder to the Desktop:
    Library/Mail/Envelope Index
    Relaunch Mail. It will tell you it has to import your messages. Allow. If successful, delete the file you moved to the Desktop.
    Try opening the problem message again.

  • Photoshop mac CS5 constantly quits unexpectedly on open. Possibly from a system update?

    Hey guys, I can't open photoshop after running an update on my OS. I'm not sure if it's related, as photoshop started crashing several hours later, I can't remember whether I had it working in the meantime - but I don't think I used it. It first happened when I tried to open a jpeg.
    I'm not the best at understanding this kind of issue or fixing it, so it might be easier for me to uninstall adn try again from scratch, but I'm concerned something in the update will prevent it from working again. I tried restarting my imac, no change. Please help!
    Details:
    Not sure which version I was on before updating but now on OSX 10.8.3
    I can't see the version of cs5 because I can't get into it.
    This is what happens when opening PS:
    Photoshop quit unexpectedly.Ignore/Report.../Reopen
    On reopen: The last time you opened photoshop, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? Don't Reopen/Reopen
    Either option goes back to 'photoshop quit unexpectedly'.
    Here's the log:
    Process:         Adobe Photoshop CS5 [534]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:       X86 (Native)
    Parent Process:  launchd [129]
    User ID:         501
    Date/Time:       2013-05-02 17:39:45.218 +0800
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29142 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  3516 sec
    Per-App Crashes Since Last Report:   20
    Anonymous UUID:                      8779B212-0A7E-3B89-F07D-0B8587631EDB
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7ffffc
    VM Regions Near 0xbf7ffffc:
        __LINKEDIT             00000000bab23000-00000000bab25000 [    8K] r--/rwx SM=COW  /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    --> Stack                  00000000bc000000-00000000bf800000 [ 56.0M] ---/rwx SM=NUL 
        Stack                  00000000bf800000-00000000c0000000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Main Thread  Dispatch queue: com.apple.main-thread
    0   com.extensis.AutoActivationPlugin.PS12          0x4af1dd3f ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 9
    1   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    2   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    3   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    4   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    5   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    6   com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    [truncated for space, all lines the same from 0-511]
    510 com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    511 com.extensis.AutoActivationPlugin.PS12          0x4af1dd69 ATSFontGetFileReferenceOverride(unsigned long, FSRef*) + 51
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x992199ae kevent + 10
    1   libdispatch.dylib                       0x9a3c0c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9a3c07a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x992190ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9034c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9034be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x90333d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x992190ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9034c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9034be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x90333d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x903dbaf0 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0969d126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x09695db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services                  0x0969d18c AMTThread::Worker(void*) + 24
    6   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x992190ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9034c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9034be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x90333d2a start_wqthread + 30
    Thread 6:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x99218c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x903d3a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x903d391e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x90ee5c9d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x9195c7c8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9195c74b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x992190ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9034c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9034be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x90333d2a start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x99216826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96104810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x11fc10ec ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x99216826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96104810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x11fc10ec ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x99216826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96104810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x11fc10ec ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96131492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9613168e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x9607db8b MPWaitOnQueue + 261
    6   AdobeACE                                0x0525c579 0x5222000 + 238969
    7   AdobeACE                                0x0525bf71 0x5222000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x96104a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 18:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99218be6 __select + 10
    1   com.apple.CoreFoundation                0x99508660 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 19:: IPCClient rcvr: FMClient.501.534.2886003240.1
    0   libsystem_kernel.dylib                  0x99218be6 __select + 10
    1   com.extensis.cpp-core-framework          0x4b202523 GIPCReceiver::OSWaitForData() + 2301
    2   com.extensis.cpp-core-framework          0x4b1f6c0f GIPCClient::ReceiverThreadProc(GThread*) + 949
    3   com.extensis.cpp-core-framework          0x4b27a9c7 GThread::PthreadInternal(void*) + 239
    4   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 20:: Agent IF Message Handler
    0   libsystem_kernel.dylib                  0x992188e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9034e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x903d40e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.extensis.cpp-core-framework          0x4b237d5d GSemaphore::TimedWait(unsigned long) + 77
    4   com.extensis.cpp-core-framework          0x4b1fb76f GIPCClient::GIPCMTDataAccumulator::WaitForData(unsigned long, std::vector<char, std::allocator<char> >&, bool) + 39
    5   com.extensis.ExtensisFontManagement.sdk          0x4b7b72d7 GAgentIFMessageHandlerThread::RunMessageHandlerThread() + 497
    6   com.extensis.ExtensisFontManagement.sdk          0x4b7b7a65 GAgentIFMessageHandlerThread::AgentIFMessageHandlerThreadFunc(GThread*) + 67
    7   com.extensis.cpp-core-framework          0x4b27a9c7 GThread::PthreadInternal(void*) + 239
    8   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x99218c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x903d3a55 nanosleep$UNIX2003 + 189
    2   com.adobe.PSAutomate                    0x4c99c63b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x4c97c483 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x4c99c748 ScObjects::Thread::go(void*) + 168
    5   libsystem_c.dylib                       0x903495b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x90333d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffc03000  ebx: 0x03cc70b9  ecx: 0x00010001  edx: 0xacd00d08
      edi: 0x06c9ec2c  esi: 0x4af1dd44  ebp: 0xbf800018  esp: 0xbf800000
       ss: 0x00000023  efl: 0x00010286  eip: 0x4af1dd3f   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xbf7ffffc
    Logical CPU: 2
    Binary Images:
        0x1000 -  0x23c1fff +com.adobe.Photoshop (12.0.4 - 12.0.4x20110407.r.1265] [12.0.4) <4C467DBF-792E-D832-7582-928512CF97FB> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    0x2e82000 -  0x2ef2feb +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2f00000 -  0x2f06fff  org.twain.dsm (1.9.4 - 1.9.4) <A001BEFA-F163-340E-BB1A-C2905F9FC65B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x2f0e000 -  0x30f4ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x3182000 -  0x3302fe7 +com.adobe.owl (AdobeOwl version 3.0.93 - 3.0.93) <03A8114E-EF8E-FFA2-1DEF-DF2E9CA90E1B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x336a000 -  0x3742ff7 +AdobeMPS (1) <36BB5D09-B87A-77AB-C171-E988910367F8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x3871000 -  0x3b66fe7 +AdobeAGM (1) <CFC10386-FCA7-A372-9B2E-DE5ECE752B6C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x3c19000 -  0x3f03ff7 +AdobeCoolType (1) <CE89BF73-D597-A8C0-7F6F-8A930ED63870> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3f87000 -  0x3fa8ff7 +AdobeBIBUtils (1) <3F87F483-6BF5-2F96-429D-B65DCF5670DA> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x3fb4000 -  0x3fdaff6 +AdobeAXE8SharedExpat (0) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3feb000 -  0x4123fe7 +WRServices (0) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4165000 -  0x41c2fef +aif_core (0) <5BE8C36F-9E9D-2908-6D86-39D1326F427C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x41df000 -  0x41f2fff +data_flow (0) <0D0EFD53-C204-5275-0941-359D1DD63326> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x420a000 -  0x429cfff +image_flow (0) <566595C5-8DF9-503C-0EA2-8BCF47A05D19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x430f000 -  0x4329ff7 +image_runtime (0) <3DCEBF32-B1C2-6C50-1683-73524D9A5DD2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x4346000 -  0x4577ffb +aif_ogl (0) <AA5DE467-4ECB-5014-0E06-E5ADBFF981E3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x4663000 -  0x46edfef +AdobeOwlCanvas (1) <3B9B9050-7F74-EBBA-99E1-4202D49B321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x470f000 -  0x4a2cfef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <57907A7F-6D01-C35F-29B4-28C2DFE35157> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x4b90000 -  0x4d0bfe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <ED2C7256-FDB7-63CD-23F8-1748AA53D397> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x4da6000 -  0x50eefff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <18ABE6DC-26AD-2C95-D68F-4E8E1306D4E2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x5222000 -  0x5337fff +AdobeACE (1) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x535a000 -  0x5374fff +AdobeBIB (1) <F3E96897-532C-E69A-18D9-57F583A78C59> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x537d000 -  0x53e3ffb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x5413000 -  0x5416ff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x541c000 -  0x5489fef +FileInfo (0) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x54a4000 -  0x54fcff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x550b000 -  0x596afe7 +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
    0x5d52000 -  0x5da5ffb +com.adobe.headlights.LogSessionFramework (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5ded000 -  0x5e0effe +adobepdfsettings (1) <935615E5-C4BA-E18B-A9C9-178BCC4D8126> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x5e43000 -  0x5e47ffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x5e4e000 -  0x5fc7ffb +com.adobe.PlugPlug (2.0.0.109 - 2.0.0.109) <2DC629B0-ED89-059C-CB3D-6FB903226B80> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x606b000 -  0x6116fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x615a000 -  0x6170ff9 +libtbb.dylib (0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
    0x6180000 -  0x6184ffd +libtbbmalloc.dylib (0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
    0x618b000 -  0x6192ff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <37374715-2FC3-B77B-EFD8-9403A80C7F70> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x619a000 -  0x61d6ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x6292000 -  0x6293ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x77ed000 -  0x77fbfff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9678000 -  0x96dffea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x971e000 -  0x972bff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x9759000 -  0x976bffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x9770000 -  0x9778fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x97cf000 -  0x97d6fff +Enable Async IO (???) <BB109921-5C57-2C16-5DA8-4E68377A64E7> /Applications/Adobe Photoshop CS5/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x97df000 -  0x97e8ff7 +FastCore (???) <C11169E5-5ECF-5659-61C1-4E2C98B0BC1C> /Applications/Adobe Photoshop CS5/*/FastCore.plugin/Contents/MacOS/FastCore
    0x11ea9000 - 0x11f06ff5 +MMXCore (???) <135DE8A2-B988-77A4-9EB0-C3A9AE7D4528> /Applications/Adobe Photoshop CS5/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x11f87000 - 0x11febff4 +MultiProcessor Support (???) <BD6C435E-1243-74AC-8EED-8BB32649A611> /Applications/Adobe Photoshop CS5/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x12036000 - 0x12182ffb +com.adobe.coretech.adm (3.10x16 - 3.1) <B9C12CD4-BDD3-D888-809D-01852BF7A7C0> /Applications/Adobe Photoshop CS5/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x12a10000 - 0x12aceff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x12be2000 - 0x12becfff +com.extensis.fontplugins (3.0.14.3 - 3.0.14.3) <35C4B615-2162-FB86-5BDE-C05146996BC8> /Applications/Suitcase Fusion 4.app/Contents/Resources/PluginFiles/ExtensisPlugins.framework/ExtensisPlugins
    0x40000000 - 0x400d1fe7 +AdobeJP2K (0) <688BEA6A-50D2-D875-62BA-8D8611FA57E9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x4ac20000 - 0x4ac31feb +FontAgent Pro (4.2.0 - ???) <53E471C6-F780-3062-CBF1-1FA5A7C63059> /Applications/Adobe Photoshop CS5/*/FontAgent Pro.plugin/Contents/MacOS/FontAgent Pro
    0x4ac43000 - 0x4acb7ff7 +com.extensis.FontManagement.plugin-interface (15.0.5 - 515) <E4AE9471-0FE5-8887-5DC9-993232FB4632> /Applications/Suitcase Fusion 4.app/Contents/Resources/ExtensisPluginInterface.framework/ExtensisPluginInterface
    0x4af00000 - 0x4b0ccffb +com.extensis.AutoActivationPlugin.PS12 (3.0.14.3 - 3.0.14.3) <63DC16B2-D63E-7DA5-A60E-1B63CE649BBA> /Applications/Adobe Photoshop CS5/*/ExtensisFontManagementPSCS5.plugin/Contents/MacOS/ExtensisFontManagementPSCS5
    0x4b1a5000 - 0x4b3c9fff +com.extensis.cpp-core-framework (1.0) <1CF2422A-0E8A-8C7B-CCA5-77960740F7B7> /Applications/Suitcase Fusion 4.app/Contents/Frameworks/cpp-core.framework/Versions/A/cpp-core
    0x4b44e000 - 0x4b984feb +com.extensis.ExtensisFontManagement.sdk (15.0.5 - 515) <2220A4DF-A406-5643-A625-98AF1C579A89> /Applications/Suitcase Fusion 4.app/Contents/Frameworks/ExtensisFontManagement.framework/Versions/A/ExtensisFontManagem ent
    0x4bc00000 - 0x4bc5bffb +com.extensis.Mercury (15.0.5 - 515) <6B70EA26-A72F-79A5-5B38-45529E7E4468> /Applications/Suitcase Fusion 4.app/Contents/Frameworks/Mercury.framework/Mercury
    0x4bc7b000 - 0x4bd13fff +com.adobe.AdobeExtendScript (ExtendScript 4.1.26 - 4.1.26.11099) <A6DE7D20-8D9B-DAAC-DBB6-E4BC92022E8E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x4bd72000 - 0x4bdffff7 +com.adobe.AdobeScCore (ScCore 4.1.26 - 4.1.26.11099) <C6DC0E4B-A2AC-A3F5-6665-A9C13BAD2573> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x4be44000 - 0x4be6dfeb +com.adobe.ape (adbeapecore version 3.1.70.10055 - 3.1.70.10055) <F3239526-C171-AD3C-835E-FC9998EEFB28> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x4c800000 - 0x4ca34fff +com.adobe.PSAutomate (12.0.2 - 12.0.2) <79D9966C-0CCB-9A5F-4BFB-1852AB2E64DA> /Applications/Adobe Photoshop CS5/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x8fe9c000 - 0x8fecee57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x900bbfff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x900bc000 - 0x9011aff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <953DD669-8C6E-387D-AB3F-D8C8965347DF> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9011b000 - 0x90332fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90333000 - 0x903f0feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x903f1000 - 0x9046bff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9046c000 - 0x9047afff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x9047b000 - 0x904e3ff7  com.apple.framework.IOKit (2.0.1 - 755.22.5) <F9A70D23-1108-3616-9DE3-6C5730CA7AB2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90a36000 - 0x90a39ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x90a3a000 - 0x90b45ff7  libJP2.dylib (849) <B2D0E844-C390-376C-91D9-F3501B5C7A83> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x90b46000 - 0x90b56ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x90b9d000 - 0x91759ff7  com.apple.AppKit (6.8 - 1187.37) <6FBB3467-04F9-395F-8EA8-C84347C5BE43> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9175a000 - 0x91769fff  libGL.dylib (8.7.25) <818E3E6B-9B00-3117-8157-9E95CB59A47B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9176a000 - 0x917efff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x917f0000 - 0x91815ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91816000 - 0x9182cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x91863000 - 0x91871ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x91872000 - 0x91876fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9187b000 - 0x918a8ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x918a9000 - 0x918a9fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x918aa000 - 0x918abfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x918ac000 - 0x918acfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x918ad000 - 0x918aefff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x918b3000 - 0x918bdffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x918be000 - 0x91bdcff3  com.apple.Foundation (6.8 - 945.16) <C4D95341-B4FF-30AC-815A-A23C019C57A3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91bdd000 - 0x91be5fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x91be6000 - 0x91c7efff  com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x91c7f000 - 0x91c83ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x92454000 - 0x92487ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x92488000 - 0x924dfff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x924e0000 - 0x92898ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x92899000 - 0x928a0fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x928a1000 - 0x928e5ff7  libGLU.dylib (8.7.25) <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x928e7000 - 0x9294bfff  com.apple.datadetectorscore (4.1 - 269.2) <B4D53047-C613-32F8-9E08-0154EA81B487> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9294c000 - 0x9294cfff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x9294d000 - 0x92979ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x9297a000 - 0x92997ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x92998000 - 0x929a4ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x929a5000 - 0x929f3ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92ae9000 - 0x92aebfff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x92aec000 - 0x92aeeffd  libCVMSPluginSupport.dylib (8.7.25) <C8FC6227-5209-3138-89CD-03CAD11F3EC3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x92b5b000 - 0x92b5cfff  libsystem_sandbox.dylib (220.2) <61A79095-1978-3AAA-B0E0-658BC8E5F045> /usr/lib/system/libsystem_sandbox.dylib
    0x92b5d000 - 0x92b81fff  libJPEG.dylib (849) <CD42C17E-6B13-35BE-B585-9AE69CEA534F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92b82000 - 0x92bcaff5  com.apple.opencl (2.2.18 - 2.2.18) <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92c13000 - 0x92ca5ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x92ce0000 - 0x92ce3ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x92ce4000 - 0x930c7fff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x930c8000 - 0x930cbffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x930cc000 - 0x9313bffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9313c000 - 0x9315cffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9315d000 - 0x93163fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x93164000 - 0x931befff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x931bf000 - 0x931dbfff  libPng.dylib (849) <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x931dc000 - 0x931dcfff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x931df000 - 0x932c8ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x93363000 - 0x93470ff3  com.apple.ImageIO.framework (3.2.0 - 849) <B34C2380-51F6-38B1-BB6C-C2E5185D90EF> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x93471000 - 0x93471fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x93472000 - 0x93480ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x93481000 - 0x9353fff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x93540000 - 0x93614ff3  com.apple.backup.framework (1.4.2 - 1.4.2) <0473EB45-E9BF-3C10-B235-A6E2B960A88F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93615000 - 0x93a32fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x942f4000 - 0x94313ff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9432c000 - 0x94394fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x94395000 - 0x943d4ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94452000 - 0x9445cfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9445d000 - 0x946e9ffb  com.apple.RawCamera.bundle (4.03 - 676) <AD6F72FA-FCA4-37E5-9B4D-6E538BDF70CB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x947e8000 - 0x94837ff6  libTIFF.dylib (849) <229EBA67-A2D3-30B7-8177-3CA5503360EC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94838000 - 0x948b4ff3  com.apple.Metadata (10.7.0 - 707.5) <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x948b5000 - 0x9491bfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x95655000 - 0x956b0fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x95a2d000 - 0x95a39ffe  libkxld.dylib (2050.22.13) <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x95a3a000 - 0x95a40fff  libGFXShared.dylib (8.7.25) <4268BFAF-4529-3B40-A8B9-66F176AC20CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x95a41000 - 0x95a65fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x95a66000 - 0x95a6dfff  libsystem_dnssd.dylib (379.37) <49A44FB3-559D-3C7E-AA40-23F5A8E612AC> /usr/lib/system/libsystem_dnssd.dylib
    0x95a70000 - 0x95b07ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x95b08000 - 0x95bb2fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x95bb3000 - 0x95bb3fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95bb4000 - 0x95d0cffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <0D36953C-9897-3E9B-8C70-847E90B203A2> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95d0d000 - 0x95fcdff3  com.apple.security (7.0 - 55179.11) <165A3105-9ADF-329B-93FC-3C8EFAEDDD13> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9606c000 - 0x9606dfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9606e000 - 0x96373ff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x96374000 - 0x963d6fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x967b9000 - 0x967b9ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x96a28000 - 0x96b20ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x96c49000 - 0x96c66fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x96c67000 - 0x96c6effb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x96dcd000 - 0x96e12ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x97210000 - 0x97246ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9727f000 - 0x974fbff7  com.apple.QuickTime (7.7.1 - 2599.24) <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x974fc000 - 0x97503ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97504000 - 0x97508fff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97746000 - 0x97747ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x97748000 - 0x97751fff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x977a9000 - 0x97800ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x97801000 - 0x97802fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x97803000 - 0x97c45ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4) <BC041647-FB5A-3D07-A253-F3D34E25BF6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x97c46000 - 0x97c4afff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x97c5a000 - 0x97c63ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x97c64000 - 0x97c86fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x97d5e000 - 0x97d73fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x97d74000 - 0x97d82fff  com.apple.opengl (1.8.7 - 1.8.7) <0631EC1D-833B-39D2-A907-A9F7617E5504> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97dfd000 - 0x97fb9ffd  libicucore.A.dylib (491.11.2) <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x97fba000 - 0x97fc6ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x97fc7000 - 0x98102ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x98103000 - 0x981f4ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x981f5000 - 0x981f8fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x982e7000 - 0x982fefff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x982ff000 - 0x98301fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x98302000 - 0x9830dfff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x985aa000 - 0x985b4fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x985b5000 - 0x985beff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x98602000 - 0x98700ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x98701000 - 0x98705ffc  libGIF.dylib (849) <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98708000 - 0x98708fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98734000 - 0x98841057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x98842000 - 0x98990fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <EC7EF37B-B00E-374D-9E8F-E4E22D741059> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x98991000 - 0x989bafff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x989bb000 - 0x98b44ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x98b4f000 - 0x98b61fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x98b62000 - 0x98ba4ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x98cbe000 - 0x98cebffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x98cec000 - 0x98d38fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x98d39000 - 0x98d74fef  libGLImage.dylib (8.7.25) <6C0B2148-032A-3911-AB21-2E07606E3D9A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x98d75000 - 0x98e15ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x98f4a000 - 0x991edff3  com.apple.CoreImage (8.2.4 - 1.0.1) <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x991ee000 - 0x99203fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x99204000 - 0x9921effc  libsystem_kernel.dylib (2050.22.13) <70C520E8-0394-3DFB-823B-FE8C251C169A> /usr/lib/system/libsystem_kernel.dylib
    0x99301000 - 0x99302ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x99308000 - 0x9930affb  libRadiance.dylib (849) <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201> /System/Library/Frameworks/ImageIO.frame

    Hello all,
    I wanted to check in and provide an update regarding our upcoming release schedule.
    For those wishing to upgrade to Creative Cloud - Suitcase Fusion 5 is available today and includes Adobe Creative Cloud plugins, new features and other product enhancements. This Photoshop issue has been addressed along with a few other plugin related bugs. Suitcase Fusion 5 is a paid upgrade.
    For current Suitcase Fusion 4 users - Extensis is planning to release a free update for Suitcase Fusion 4 addressing this and a few other plugin related bugs. I don't have the exact release date yet but expect it to be available for download within the next few weeks.
    I will update this post once it's available from our website.
    We apologize for the inconvenience and appreciate your patience.
    Cheers,
    Chris Meyer
    Extensis Suitcase Product Team

  • I recently upgraded to iPhoto 11 v. 9.2 and now iPhoto crashes every time I try to upload photos from my camera, iPhone, or memory card...

    I recently upgraded to iphoto 11 v. 9.2 and now iphoto crashes every time I try to upload photos.  I have tried to upload from my camera via usb, from my iphone, and from the memory card directly and it crashes every time.  What can I do to fix this problem?

    It was the folder that I trashed. 
    Here is the crash log from a few hours ago:
    Process:         iPhoto [5206]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2 (9.2)
    Build Info:      iPhotoProject-626000000000000~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [137]
    Date/Time:       2011-10-14 17:37:04.883 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  45  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000001f7f5140
    VM Regions Near 0x1f7f5140:
        __TEXT                 000000001f71d000-000000001f7ee000 [  836K] r-x/rwx SM=COW  /Library/Application Support/3ivx/*.dylib
    --> __DATA                 000000001f7ee000-000000001f829000 [  236K] rw-/rwx SM=COW  /Library/Application Support/3ivx/*.dylib
        __DATA                 000000001f829000-000000001f849000 [  128K] rw-/rwx SM=PRV  /Library/Application Support/3ivx/*.dylib
    Application Specific Information:
    objc[5206]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9065da7f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x90664d9b ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x90664c0a BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x92fe9040 _DPSNextEvent + 678
    10  com.apple.AppKit                        0x92fe88ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.AppKit                        0x92fe4c22 -[NSApplication run] + 911
    12  com.apple.AppKit                        0x9327918a NSApplicationMain + 1054
    13  com.apple.iPhoto                        0x000114d0 0x1000 + 66768
    14  com.apple.iPhoto                        0x00010ad9 0x1000 + 64217
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x941e9b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x95bbdb11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x95bbc6a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01d38ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.CoreFoundation                0x9bcfe53a -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    9   com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    11  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    12  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    13  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    14  com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    15  com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c8f42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x97a7fd40 -[NSCondition wait] + 304
    4   com.apple.iPhoto                        0x0005c59a 0x1000 + 374170
    5   com.apple.iPhoto                        0x0005c4f2 0x1000 + 374002
    6   com.apple.CoreFoundation                0x9bcf8e1d __invoking___ + 29
    7   com.apple.CoreFoundation                0x9bcf8d59 -[NSInvocation invoke] + 137
    8   com.apple.RedRock                       0x01d5ae61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x01d6c6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    12  com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    14  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    15  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    16  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    17  com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    18  com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 29:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a8a21c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    8   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 30:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x941e9b42 __select + 10
    1   com.apple.CoreFoundation                0x9bce5195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 32:: MRSlideProvider 17B09CB0: Loading
    0   libsystem_kernel.dylib                  0x941ea02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90cdcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 33:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x961fcde6 0x95c10000 + 6213094
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x98a60033 AIOFileThread(void*) + 1019
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 35:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c8f3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x9a57a06c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4   com.apple.JavaScriptCore                0x9a76df43 JSC::Heap::blockFreeingThreadMain() + 323
    5   com.apple.JavaScriptCore                0x9a76df7f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 36:: MRImageManager: Cleanup Picture Cache
    0   libsystem_kernel.dylib                  0x941e9bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90c8f7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x90c8f5d7 sleep$UNIX2003 + 63
    3   com.apple.iLifeSlideshowRenderer          0x0270dca2 +[MRImageManager(PictureCacheCleanup) cleanupPictureCache] + 850
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x98aa246c TimerThread + 292
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 38:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.iLMBiPhoto9Plugin             0x18ad2f84 0x18a00000 + 864132
    1   com.apple.iLMBiPhoto9Plugin             0x18acd48d 0x18a00000 + 840845
    2   com.apple.iLMBiPhoto9Plugin             0x18ad65e3 0x18a00000 + 878051
    3   com.apple.iLMBiPhoto9Plugin             0x18ad7577 0x18a00000 + 882039
    4   com.apple.iLMBiPhoto9Plugin             0x18ad75c4 0x18a00000 + 882116
    5   com.apple.iLMBiPhoto9Plugin             0x18ad76df 0x18a00000 + 882399
    6   com.apple.iLMBiPhoto9Plugin             0x18ae2a66 0x18a00000 + 928358
    7   com.apple.iLMBiPhoto9Plugin             0x18afd076 0x18a00000 + 1036406
    8   com.apple.iLMBiPhoto9Plugin             0x18b01994 sqlite3_step + 2436
    9   com.apple.iLMBiPhoto9Plugin             0x18abd1a4 0x18a00000 + 774564
    10  com.apple.iLMBiPhoto9Plugin             0x18a7fe4b 0x18a00000 + 523851
    11  com.apple.iLMBiPhoto9Plugin             0x18a8cfdc 0x18a00000 + 577500
    12  com.apple.iLMBiPhoto9Plugin             0x18a03140 0x18a00000 + 12608
    13  com.apple.iLMBiPhoto9Plugin             0x18a75784 0x18a00000 + 481156
    14  com.apple.iLifeMediaBrowser             0x91f065f0 -[ILMediaGroup addMediaObjects:] + 60
    15  com.apple.iLMBiPhoto9Plugin             0x18a09e03 0x18a00000 + 40451
    16  com.apple.iLMBiPhoto9Plugin             0x18a08984 0x18a00000 + 35204
    17  com.apple.iLMBiPhoto9Plugin             0x18a052fd 0x18a00000 + 21245
    18  com.apple.iLifeMediaBrowser             0x91f3fd3e -[ILMediaManager _performLoadData] + 242
    19  com.apple.iLifeMediaBrowser             0x91f3fa95 -[ILMediaManager _loadDataThreaded] + 514
    20  com.apple.CoreFoundation                0x9bcf8e1d __invoking___ + 29
    21  com.apple.CoreFoundation                0x9bcf8d59 -[NSInvocation invoke] + 137
    22  com.apple.Foundation                    0x97b5066f -[NSInvocationOperation main] + 267
    23  com.apple.Foundation                    0x97a6b323 -[__NSOperationInternal start] + 797
    24  com.apple.Foundation                    0x97a6afff -[NSOperation start] + 67
    25  com.apple.Foundation                    0x97a7f152 ____NSOQSchedule_block_invoke_2 + 135
    26  libdispatch.dylib                       0x95bbbe11 _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x95bbce70 _dispatch_worker_thread2 + 231
    28  libsystem_c.dylib                       0x90cdcb24 _pthread_wqthread + 346
    29  libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 39:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 40:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 41:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 42:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 43:
    0   libsystem_kernel.dylib                  0x941ea02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90cdcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 44:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x96c192e8 CVDisplayLink::waitUntil(unsigned long long) + 306
    4   com.apple.CoreVideo                     0x96c1843a CVDisplayLink::runIOThread() + 706
    5   com.apple.CoreVideo                     0x96c18161 _ZL13startIOThreadPv + 160
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 45 Crashed:: Import thread 0
    0   ???                                     0x1f7f5140 get_feature_flags + 0
    1   lib3ivxEnc.dylib                        0x1f772f38 InitHooks + 5088
    2   lib3ivxEnc.dylib                        0x1f774d4e InitThrivex + 68
    3   lib3ivxEnc.dylib                        0x1f788bdc l3_init + 11
    4   com.3ivx.videocodec                     0x169fe56d ThrivXCDOpen + 676
    5   com.apple.CoreServices.CarbonCore          0x98a31514 callComponentStorage_44 + 25
    6   com.apple.CoreServices.CarbonCore          0x98ae045d _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45
    7   com.apple.CoreServices.CarbonCore          0x98ae049d CallComponentFunctionWithStorageProcInfo + 30
    8   com.3ivx.videocodec                     0x169fdd5e ThrivXCDComponentDispatch + 173
    9   com.apple.CoreServices.CarbonCore          0x98a565f5 CallComponent + 223
    10  com.apple.CoreServices.CarbonCore          0x98a5663e CallComponentDispatch + 29
    11  com.apple.CoreServices.CarbonCore          0x98ac2898 CallComponentOpen + 43
    12  com.apple.CoreServices.CarbonCore          0x98a552b4 OpenAComponent + 426
    13  com.apple.CoreServices.CarbonCore          0x98a55334 OpenComponent + 24
    14  com.apple.CoreServices.CarbonCore          0x98a5657c CallComponent + 102
    15  com.apple.CoreServices.CarbonCore          0x98a5663e CallComponentDispatch + 29
    16  com.apple.CoreServices.CarbonCore          0x98ac2722 CallComponentGetPublicResource + 57
    17  com.apple.QuickTime                     0x9c89065f cchaMissing + 329
    18  com.apple.CoreServices.CarbonCore       

  • HELP...   Since last week, I can not awake from sleep. After reading a review I downloaded Deep Sleep, but after the first deep sleep, my MBP (late 2011 with Mountain Lion), developed a problem restarting from sleep.

    HELP...   Since last week, I can not awake from sleep. After reading a review I downloaded Deep Sleep, but after the first deep sleep, my MBP (late 2011 with Mountain Lion), developed a problem restarting from sleep. I straight away uninstalled Deep Sleep, but the problem has increased.
    Now when I try to awake from sleep, a grey screen with the apple logo appears with a progress bar underneath it, which slowly moves to the forelast indicator, then it stops and a audio signal starts.  Three bleeps and pause.
    Then when I press the on/off botton and restart the system, the underneath error reports appears with the heading  RAPPORTD unexpectedly failed.
    Can any one help?
    Process:         rapportd [235]
    Path:            /Library/Rapport/*/rapportd
    Identifier:      rapportd
    Version:         ???
    Code Type:       X86 (Native)
    Parent Process:  launchd [196]
    User ID:         501
    Date/Time:       2012-08-27 11:38:13.723 +0200
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Interval Since Last Report:          8281 sec
    Crashes Since Last Report:           5
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      F7A70155-2067-4184-A500-CECB394A71B3
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000920
    VM Regions Near 0x920:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Rapport/*
        __TEXT                 0000000000001000-0000000000065000 [  400K] r-x/rwx SM=COW  /Library/Rapport/*
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x991479c9 szone_free_definite_size + 3565
    1   libsystem_c.dylib                       0x99141cdc free + 217
    2   rapportd                                0x00022a80 refree + 43
    3   rapportd                                0x0001dc09 dictionary_free + 97
    4   RapportUtil1.dylib                      0x001893ea CLocalSection::~CLocalSection() + 40
    5   RapportUtil1.dylib                      0x0018e17b CSimplePersistentSection::~CSimplePersistentSection() + 97
    6   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    7   RapportUtil1.dylib                      0x00186512 SectionSynchronizer::~SectionSynchronizer() + 54
    8   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    9   RapportUtil1.dylib                      0x001885d8 std::pair<std::string const, counted_ptr<IConfigurationSection> >::~pair() + 26
    10  RapportUtil1.dylib                      0x00188628 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::_M_delete_node(__gnu_cxx::_Hashtable_node<std::pair<std::string const, counted_ptr<IConfigurationSection> > >*) + 44
    11  RapportUtil1.dylib                      0x00188994 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::clear() + 62
    12  RapportUtil1.dylib                      0x001889eb __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::~hashtable() + 23
    13  RapportUtil1.dylib                      0x00186791 CConfigurationManager::~CConfigurationManager() + 77
    14  RapportUtil1.dylib                      0x0019a8e3 counted_ptr<CConfigurationManager>::release() + 57
    15  RapportUtil1.dylib                      0x0019b348 configuration::~configuration() + 54
    16  RapportUtil1.dylib                      0x0019a113 counted_ptr<configuration>::release() + 57
    17  libsystem_c.dylib                       0x99161edb __cxa_finalize + 184
    18  libsystem_c.dylib                       0x99164dd5 exit + 23
    19  rapportd                                0x00002317 start + 63
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98a8b9ae kevent + 10
    1   libdispatch.dylib                       0x99223cc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x992237fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 5 Crashed:
    0   rapportd                                0x0002c66c threaded_service::main(void*) + 208
    1   libsystem_c.dylib                       0x99127557 _pthread_start + 344
    2   libsystem_c.dylib                       0x99111cee thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000900  ebx: 0x0002c5a7  ecx: 0xbffff894  edx: 0xbffff88c
      edi: 0xbffff898  esi: 0x00012868  ebp: 0xb030af98  esp: 0xb030af40
       ss: 0x00000023  efl: 0x00010202  eip: 0x0002c66c   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000920
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x64fef +rapportd (???) <322EF040-125E-3D79-4A2F-01BB8B1415E9> /Library/Rapport/*/rapportd
       0xaf000 -   0x147ff7 +RapportWR.dylib (1) <A50472EA-F9E8-3C45-E173-216263532AEC> /Library/Rapport/*/RapportWR.dylib
      0x16e000 -   0x2faffb +RapportUtil1.dylib (1) <087D94DE-7376-A5E6-C000-2895F7D0AA60> /Library/Rapport/*/RapportUtil1.dylib
      0x3f8000 -   0x420fef +librooksbas.dylib (1) <75079BEF-ED76-12F6-5973-3B4584AFA1E4> /Library/Rapport/*/librooksbas.dylib
      0x718000 -   0x725ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
      0x732000 -   0x733fff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x8fe77000 - 0x8fea9e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9000e000 - 0x9001bff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x90135000 - 0x90135fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x90294000 - 0x90294fff  libSystem.B.dylib (169.3) <4F99C03B-BBFF-3BF8-8CC2-2DA764447446> /usr/lib/libSystem.B.dylib
    0x90295000 - 0x90295fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90296000 - 0x90296fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90297000 - 0x90679ff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90acc000 - 0x90b30ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x90b3f000 - 0x90db9ff3  com.apple.RawCamera.bundle (3.14.2 - 644) <3A5383AC-F30A-3674-88F4-DF82ADE8D73E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90dba000 - 0x90dc7fff  libGL.dylib (8.5) <B411046C-3068-3A22-B3F1-9E78C5888232> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90dc8000 - 0x90e5affb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90e5b000 - 0x90f05ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90f06000 - 0x90f4bff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9114e000 - 0x91158fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91159000 - 0x911b6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x911c3000 - 0x911cafff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
    0x911cb000 - 0x91219ffb  com.apple.SystemConfiguration (1.12 - 1.12) <5859B368-4118-3755-A197-0A8172514ADA> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9121a000 - 0x9121effe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9121f000 - 0x91220fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x91223000 - 0x91279ff3  com.apple.HIServices (1.20 - 416) <C52A00FD-76D6-34F3-95D1-7EDB857EC5E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x912b7000 - 0x913afff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
    0x913b0000 - 0x913b2ffb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x913b3000 - 0x913f7fff  libGLU.dylib (8.5) <DC69992A-2547-38FF-ABD1-BDE19EA75C08> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91428000 - 0x9144aff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
    0x91571000 - 0x91571ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91572000 - 0x915b3ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x915b4000 - 0x915c2fff  com.apple.opengl (1.8.5 - 1.8.5) <8EB6DEE7-7248-3644-B840-35174755C356> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x915c3000 - 0x91625fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x91651000 - 0x91a09ffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91a0d000 - 0x91e2aff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x91e30000 - 0x91e54fff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91f89000 - 0x92087ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92088000 - 0x9208cffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9219e000 - 0x9245bff3  com.apple.security (7.0 - 55178.0.1) <EB90D52E-27EC-3874-BA15-C69976F1067A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9249f000 - 0x924fafff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x924fb000 - 0x9253aff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9253b000 - 0x92589ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9258a000 - 0x925bbff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x925bc000 - 0x92745ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92746000 - 0x92750fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x92751000 - 0x92771ff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x92772000 - 0x92a77fff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92fbb000 - 0x92fbffff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93003000 - 0x930c1ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x930c2000 - 0x93162ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93163000 - 0x931affff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
    0x93208000 - 0x93dc1fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93dc2000 - 0x93e04ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x94492000 - 0x94501ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94502000 - 0x9461dff7  com.apple.desktopservices (1.7.1 - 1.7.1) <0039FBAA-BB0B-36B7-962F-BDAC8E3D1C58> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94994000 - 0x94994fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x949cb000 - 0x949ceffb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9524c000 - 0x952b2fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x952b3000 - 0x952b3fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x952b4000 - 0x952f9ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x952fa000 - 0x9531efff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9531f000 - 0x95497ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95498000 - 0x9549bffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95516000 - 0x95958ff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95959000 - 0x9595bfff  com.apple.securityhi (4.0 - 55002) <15E9B9BC-108F-3416-A0A7-A321A85081F7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95d59000 - 0x95d5cfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95d5d000 - 0x95d6bfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x95d6c000 - 0x95d6dffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95d78000 - 0x95dedff7  com.apple.ApplicationServices.ATS (332 - 341) <EC79D064-1399-3F33-BACC-6D93A5BE04E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95e03000 - 0x95e5aff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x95e5b000 - 0x95e5bfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95eb3000 - 0x95f66ff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95faf000 - 0x95fbdff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x95fbe000 - 0x962dbfff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x962dc000 - 0x962e4fff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x962e5000 - 0x962f3ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x969fc000 - 0x96bb8ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
    0x96bb9000 - 0x96bc9ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96bca000 - 0x96bd3ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96eeb000 - 0x96f01fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96f02000 - 0x96f02fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96f34000 - 0x96f35fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x96f36000 - 0x9708dff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x970b4000 - 0x970b8fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x970b9000 - 0x970bbfff  libCVMSPluginSupport.dylib (8.5) <A91DC66E-5A16-31AC-9B6A-605292573281> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x97107000 - 0x97113ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x97114000 - 0x97199ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9719a000 - 0x9719affd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
    0x9719b000 - 0x97249ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x97264000 - 0x9729affb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9729b000 - 0x972eaff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x972ef000 - 0x972f0fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x972f1000 - 0x97388fff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9738d000 - 0x9738effd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9738f000 - 0x97393fff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97394000 - 0x973c1ffb  com.apple.CoreServicesInternal (153 - 153) <DB105788-CCF5-3678-88C5-65A7267DC581> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x973ce000 - 0x973d1ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x973d2000 - 0x973d2fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97435000 - 0x97635ffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97636000 - 0x9763dff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97680000 - 0x976a4ff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x976a5000 - 0x976a6fff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
    0x976a7000 - 0x97938ffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x97939000 - 0x9794bfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x97996000 - 0x97aa315f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
    0x97aa4000 - 0x97b95ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x97b9d000 - 0x97ca8ff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97d41000 - 0x97d58fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x97d59000 - 0x97d65ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x97da9000 - 0x97e03fff  com.apple.Symbolication (1.3 - 93) <D327EEFF-F2F5-39C4-B1EC-32E259DC04F1> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97e04000 - 0x97e10ffd  com.apple.CrashReporterSupport (10.8.1 - 412) <9BBEBED1-DEDD-3258-A8CC-F46EC5CDD4F7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97e14000 - 0x97e27ff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x97e82000 - 0x97e9ffff  com.apple.openscripting (1.3.5 - 148) <3460338D-B686-3C33-B322-DC8391668F8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97ea0000 - 0x97eacffc  libkxld.dylib (2050.9.2) <301804CB-55F1-3A9B-BC45-DEB020C22C6F> /usr/lib/system/libkxld.dylib
    0x97eb7000 - 0x97ec1ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x97ef4000 - 0x97f11fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x97f8f000 - 0x97fabff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97fac000 - 0x98095ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x98096000 - 0x9809aff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x9809b000 - 0x980a4ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x980f1000 - 0x9810efff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
    0x9810f000 - 0x9824aff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9824b000 - 0x982e3ff7  com.apple.CoreServices.OSServices (557 - 557) <F7CDD65A-3D2E-3AAE-BD55-4C604C9D1709> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x982e4000 - 0x982e5fff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
    0x982e6000 - 0x98313ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x98314000 - 0x98315fff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x985a8000 - 0x985cdff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x985fd000 - 0x98665fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98784000 - 0x9879dfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9879e000 - 0x988eaff3  com.apple.CFNetwork (596.1 - 596.1) <DE5FA267-6E01-388E-9ADA-8764BE469C35> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x988ec000 - 0x98909ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9890a000 - 0x98911fff  libsystem_dnssd.dylib (379.27.1) <B5CD3F39-7039-30CF-877D-FDF38A659E46> /usr/lib/system/libsystem_dnssd.dylib
    0x98912000 - 0x98912fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98913000 - 0x98946ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x98947000 - 0x989a0ff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x989a1000 - 0x98a1dffb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98a1e000 - 0x98a26fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x98a27000 - 0x98a62fe7  libGLImage.dylib (8.5) <D2589E82-41ED-383D-9254-6D12A3A20644> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x98a63000 - 0x98a6efff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x98a6f000 - 0x98a75fff  libGFXShared.dylib (8.5) <7022CE54-70E9-33D3-B679-9A9BB6B2AABF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98a76000 - 0x98a90ffc  libsystem_kernel.dylib (2050.9.2) <C6BA5A9F-08BB-3544-9A36-070DEDE92279> /usr/lib/system/libsystem_kernel.dylib
    0x98a91000 - 0x98b0bff7  com.apple.securityfoundation (6.0 - 55115.4) <7F614418-F853-3FED-B265-0EA47F309A49> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x98b0c000 - 0x98b21fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x98b22000 - 0x98bbcfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x98bd5000 - 0x98ce2ffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x98dc7000 - 0x98e9bff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98e9c000 - 0x98ea4fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x98ea5000 - 0x98eacffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x98ead000 - 0x98f11fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98f12000 - 0x98f15ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x98f16000 - 0x990fdffb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99111000 - 0x991ceffb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
    0x991cf000 - 0x991d1fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x991d2000 - 0x99214ff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x99215000 - 0x9921bfff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9921f000 - 0x99231ff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
    0x99232000 - 0x99247fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x994c5000 - 0x994eefff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x995e7000 - 0x9964eff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9964f000 - 0x9967bff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x9a61f000 - 0x9a63dffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        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: 318
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=120.4M resident=73.0M(61%) swapped_out_or_unallocated=47.4M(39%)
    Writable regions: Total=92.1M written=1476K(2%) resident=1836K(2%) swapped_out=0K(0%) unallocated=90.3M(98%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1472K
    MALLOC                             81.3M
    MALLOC guard page                    48K
    Memory tag=35                      7256K
    Stack                              66.5M
    VM_ALLOCATE                          56K
    __DATA                             5584K
    __DATA/__OBJC                       160K
    __IMAGE                             528K
    __IMPORT                              8K
    __LINKEDIT                         32.4M
    __OBJC                             1492K
    __PAGEZERO                            4K
    __TEXT                             88.0M
    __UNICODE                           544K
    mapped file                        99.4M
    shared memory                       308K
    ===========                      =======
    TOTAL                             384.8M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.4 GHz, 16 GB, SMC 1.69f3
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E4D3136
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E4D3136
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.81.21)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    For anybody whomay stumble across this post- it is an addendum to the originalpost
    Just to be sure  it is an APPLE SOFTWARE ISSUE - ProbablySafari---I used my mac mini ( with mountain lion ) and-- it too drops wifi-- and the end  result is
    SAFARI CANNOT CONNECT TO SERVER lol
    the app store hangs and hangs and hangs
    as it does my macbook pro -- they  BOTH have to be restarted-- then it is okay for a little while
    THIS IS SO ANNOYING  ha ha-- in this instance caps does mean I am yelling lol

  • Office for MAC chrashes on Startup EXC_BAD_ACCESS

    Office (Word, Powerpoint, Excel) 2011 for MAC chrashes on startup
    Hi,
    I am running Mountain Lion on a MacBook Pro Early 2011. I had the latest version of Office for Mac installed when it chrased.
    I really need some help to solve this problem. Suddenly, my office for MAC chrashes on startup. It applies to all office programs (Word, PowerPoint and Excel). When I try to start either up, Microsoft Error Reporting immediately shows up.
    It is definitely worth mentioning that I also fiddled with the Microsoft User Data folder, which to my much annoyance places itself in the "Documents" folder on the mac and REFUSES to go away. Then I placed it in the library preference folder and it hasn't returned since, but the problem might or might not be related to that... Who knows. I think I did a lot of damage when moving that folder around. And I really think it is related to the problem.
    I have earlier, leading up to this, experienced problems in connection to a file/document or something called "Normal"(??) 
    About two months ago. I removed Office for Mac and did a clean install. However the problem returned after about 6 weeks.
    This is the report, I get. I need some help to understand what is wrong here and what I can do to solve it.
    Thank you very much
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-08-09 20:33:30 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.2.3.120616
    Crashed Module Name: Microsoft Word
    Crashed Module Version: 14.2.3.120616
    Crashed Module Offset: 0x00005207
    Blame Module Name: Microsoft Word
    Blame Module Version: 14.2.3.120616
    Blame Module Offset: 0x00005207
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

    I too am having similar issues.  I had Microsoft Office 2011 for Mac on auto update.  The 2nd to last update (the latest update was ironically and error reporting update for Mac!) is what caused the problem as everything was working find until then.
    Work, Excel and Power Point will load to about 44% and then crash.  It appears to have also affected Microsoft Silverlight as Netflix will not play content on my computer anymore and says there is a DRM error (Digital Rights Management).
    Here is there error log I get:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2013-05-13 05:34:01 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.3.4.130416
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: unknown
    Blame Module Version: unknown
    Blame Module Offset: unknown
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Thread 0:
    #  1  0x0a080b06 in ___read_nocancel + 0x0000000A (libsystem_kernel.dylib + 0x00014b06)
    #  2  0x09fa062a in __sread + 0x00000023 (libsystem_c.dylib + 0x0007e62a)
    #  3  0x09f9ff0f in ___srefill1 + 0x00000022 (libsystem_c.dylib + 0x0007df0f)
    #  4  0x09f9c1e9 in _fgets + 0x000000CB (libsystem_c.dylib + 0x0007a1e9)
    #  5  0x02386adc in _McpPushFontUser + 0x0000152A (MicrosoftComponentPlugin + 0x000dcadc)
    #  6  0x02386cd9 in _McpPushFontUser + 0x00001727 (MicrosoftComponentPlugin + 0x000dccd9)
    #  7  0x02301280 in _McpSetCursor + 0x00003311 (MicrosoftComponentPlugin + 0x00057280)
    #  8  0x022fcd68 in _McpRunFontMenuIdleTasks + 0x00000A6F (MicrosoftComponentPlugin + 0x00052d68)
    #  9  0x022fc347 in _McpRunFontMenuIdleTasks + 0x0000004E (MicrosoftComponentPlugin + 0x00052347)
    # 10  0x022e28b1 in _McpFontIndexFromTokenString + 0x00001AB4 (MicrosoftComponentPlugin + 0x000388b1)
    # 11  0x022cdfae in _McpStartupFontMenu + 0x000000CA (MicrosoftComponentPlugin + 0x00023fae)
    # 12  0x000bb6de in __mh_execute_header + 0x000286DE (Microsoft Word + 0x000286de)
    # 13  0x00095dd5 in __mh_execute_header + 0x00002DD5 (Microsoft Word + 0x00002dd5)
    # 14  0x050b0c85 in __WlmMain + 0x00000061 (WLMKernel + 0x00004c85)
    # 15  0x000954f5 in __mh_execute_header + 0x000024F5 (Microsoft Word + 0x000024f5)
    # 16  0x000954a6 in __mh_execute_header + 0x000024A6 (Microsoft Word + 0x000024a6)
    X86 Thread State:
    eax: 0x000c018c  ebx: 0x00000000  ecx: 0xbff69d2c  edx:0x0a080b06
    edi: 0x09feadb8  esi: 0x09feadb8  ebp: 0xbff69d48  esp:0xbff69d2c
      ss: 0x00000023  eip: 0x0a080b06   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000000   gs: 0x0000000f  eflags:0x00000286
    Thread 1:
    #  1  0x0a0819ae in _kevent + 0x0000000A (libsystem_kernel.dylib + 0x000159ae)
    #  2  0x09ec07a9 in __dispatch_mach_notify_source_init + 0x00000000 (libdispatch.dylib + 0x000047a9)
    X86 Thread State:
    eax: 0x0000016b  ebx: 0xb0080700  ecx: 0xb00805ac  edx:0x0a0819ae
    edi: 0x00000000  esi: 0x09ec08a1  ebp: 0xb0080718  esp:0xb00805ac
      ss: 0x00000023  eip: 0x0a0819ae   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 2:
    #  1  0x0a0810ee in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x000150ee)
    #  2  0x09f3ae79 in __pthread_wqthread + 0x000001C0 (libsystem_c.dylib + 0x00018e79)
    #  3  0x09f22d2a in _start_wqthread + 0x0000001E (libsystem_c.dylib + 0x00000d2a)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x09f3acc7  ecx: 0xb0102f6c  edx:0x0a0810ee
    edi: 0xb0103000  esi: 0xb0103000  ebp: 0xb0102f88  esp:0xb0102f6c
      ss: 0x00000023  eip: 0x0a0810ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 3:
    #  1  0x0a0810ee in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x000150ee)
    #  2  0x09f3ae79 in __pthread_wqthread + 0x000001C0 (libsystem_c.dylib + 0x00018e79)
    #  3  0x09f22d2a in _start_wqthread + 0x0000001E (libsystem_c.dylib + 0x00000d2a)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x09f3acc7  ecx: 0xb0184f6c  edx:0x0a0810ee
    edi: 0xb0185000  esi: 0xb0185000  ebp: 0xb0184f88  esp:0xb0184f6c
      ss: 0x00000023  eip: 0x0a0810ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 4:
    #  1  0x0a0810ee in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x000150ee)
    #  2  0x09f3ae79 in __pthread_wqthread + 0x000001C0 (libsystem_c.dylib + 0x00018e79)
    #  3  0x09f22d2a in _start_wqthread + 0x0000001E (libsystem_c.dylib + 0x00000d2a)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x09f3acc7  ecx: 0xb0206f6c  edx:0x0a0810ee
    edi: 0xb0207000  esi: 0xb0207000  ebp: 0xb0206f88  esp:0xb0206f6c
      ss: 0x00000023  eip: 0x0a0810ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 5:
    #  1  0x0a080c72 in ___semwait_signal + 0x0000000A (libsystem_kernel.dylib + 0x00014c72)
    #  2  0x09fc2883 in _sleep$UNIX2003 + 0x00000042 (libsystem_c.dylib + 0x000a0883)
    #  3  0x02ae7ce2 in _MerpCreateSession + 0x00000B3F (merp + 0x00002ce2)
    #  4  0x02ae73ae in _MerpCreateSession + 0x0000020B (merp + 0x000023ae)
    #  5  0x02ae7339 in _MerpCreateSession + 0x00000196 (merp + 0x00002339)
    #  6  0x02ae88d6 in _MerpCreateSession + 0x00001733 (merp + 0x000038d6)
    #  7  0x09f385b7 in __pthread_start + 0x00000158 (libsystem_c.dylib + 0x000165b7)
    #  8  0x09f22d4e in _thread_start + 0x00000022 (libsystem_c.dylib + 0x00000d4e)
    X86 Thread State:
    eax: 0x0000014e  ebx: 0xb0288ae8  ecx: 0xb0288a7c  edx:0x0a080c72
    edi: 0x09fc29a6  esi: 0xb0288ae0  ebp: 0xb0288ac8  esp:0xb0288a7c
      ss: 0x00000023  eip: 0x0a080c72   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 6:
    #  1  0x0a080c72 in ___semwait_signal + 0x0000000A (libsystem_kernel.dylib + 0x00014c72)
    #  2  0x06d73cb5 in +[NSThread sleepForTimeInterval:] + 0x00000097 (Foundation + 0x0009fcb5)
    #  3  0x022b64d8 in _RegisterWindowForMouseMoveEvents + 0x000003F3 (MicrosoftComponentPlugin + 0x0000c4d8)
    #  4  0x06d727c8 in -[NSThread main] + 0x0000002D (Foundation + 0x0009e7c8)
    #  5  0x06d7274b in ___NSThread__main__ + 0x00000574 (Foundation + 0x0009e74b)
    #  6  0x09f385b7 in __pthread_start + 0x00000158 (libsystem_c.dylib + 0x000165b7)
    #  7  0x09f22d4e in _thread_start + 0x00000022 (libsystem_c.dylib + 0x00000d4e)
    X86 Thread State:
    eax: 0x0000014e  ebx: 0xb030a500  ecx: 0xb030a46c  edx:0x0a080c72
    edi: 0x09fc29a6  esi: 0x00000000  ebp: 0xb030a4b8  esp:0xb030a46c
      ss: 0x00000023  eip: 0x0a080c72   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 7:
    #  1  0x0a0810ee in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x000150ee)
    #  2  0x09f3ae79 in __pthread_wqthread + 0x000001C0 (libsystem_c.dylib + 0x00018e79)
    #  3  0x09f22d2a in _start_wqthread + 0x0000001E (libsystem_c.dylib + 0x00000d2a)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x09f3acc7  ecx: 0xb040ef6c  edx:0x0a0810ee
    edi: 0xb040f000  esi: 0xb040f000  ebp: 0xb040ef88  esp:0xb040ef6c
      ss: 0x00000023  eip: 0x0a0810ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 8:
    #  1  0x0a0810ee in ___workq_kernreturn + 0x0000000A (libsystem_kernel.dylib + 0x000150ee)
    #  2  0x09f3ae79 in __pthread_wqthread + 0x000001C0 (libsystem_c.dylib + 0x00018e79)
    #  3  0x09f22d2a in _start_wqthread + 0x0000001E (libsystem_c.dylib + 0x00000d2a)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x09f3acc7  ecx: 0xb0490f6c  edx:0x0a0810ee
    edi: 0xb0491000  esi: 0xb0491000  ebp: 0xb0490f88  esp:0xb0490f6c
      ss: 0x00000023  eip: 0x0a0810ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Loaded modules:
    0: Microsoft Word (14.3.4.130416 Reg=en Loc=0x0409: /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    1: mbukernel (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbukernel.framework/Versions/14/mbukernel
    2: MicrosoftSetupUI (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    3: MicrosoftComponentPlugin (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPl ugin
    4: Netlib (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Netlib.framework/Versions/14/Netlib
    5: MicrosoftOLE (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    6: MicrosoftOLEAutomation (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    7: Carbon (155 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    8: QuickTime (2599.24 Reg=English Loc=0x0000: /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    9: merp (2.2.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/merp.framework/Versions/14/merp
    10: MSXML (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MSXML.framework/Versions/14/MSXML
    11: MicrosoftOffice (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    12: OfficeArt (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/OfficeArt
    13: MicrosoftOleo (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    14: MicrosoftMathFont (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    15: MicrosoftChartPlugin (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    16: MicrosoftPTLS (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    17: MsgrLibClient (8.0.0.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MsgrLibClient.framework/Versions/14/MsgrLibClient
    18: Cocoa (19 Reg=English Loc=0x0000: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    19: MBURibbon (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MBURibbon.framework/Versions/14/MBURibbon
    20: MViewLib (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MViewLib.framework/Versions/14/MViewLib
    21: WLMUser (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMUser.framework/Versions/14/WLMUser
    22: WLMGraphicsDevice (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    23: WLMKernel (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WLMKernel.framework/Versions/14/WLMKernel
    24: Gfx (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Gfx.framework/Versions/14/Gfx
    25: SmartArt (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/SmartArt.framework/Versions/14/SmartArt
    26: MicrosoftCloudServices (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    27: mbustrings (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbustrings.framework/Versions/14/mbustrings
    28: mbulocale (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbulocale.framework/Versions/14/mbulocale
    29: wlmstrings (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/wlmstrings.framework/Versions/14/wlmstrings
    30: CocoaUI (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/CocoaUI
    31: MicrosoftOfficeDRM (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    32: ThreadPool (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/ThreadPool.framework/Versions/14/ThreadPool
    33: QuartzCore (304.2 Reg=English Loc=0x0000: /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    34: MicrosoftMenuLibrary (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    35: StdUrlMoniker (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    36: Uniscribe (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Uniscribe.framework/Versions/14/Uniscribe
    37: mbuinstrument (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbuinstrument.framework/Versions/14/mbuinstrument
    38: Quartz (1.5 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    39: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    40: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    41: libobjc.A.dylib: /usr/lib/libobjc.A.dylib
    42: CoreServices (57 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    43: CoreFoundation (744.18 Reg=en_US Loc=0x0000: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    44: ApplicationServices (45 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    45: Foundation (945.16 Reg=en_US Loc=0x0000: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    46: AppKit (1187.37 Reg=English Loc=0x0000: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    47: CarbonSound (4.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    48: CommonPanels (94 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    49: Help (42 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    50: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    51: HTMLRendering (1.1.4 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    52: ImageCapture (8.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    53: Ink (150 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    54: NavigationServices (200 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    55: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    56: Print (258 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    57: SecurityHI (55002 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    58: SpeechRecognition (4.1.5 Reg=English Loc=0x0000: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    59: CoreAudio (4.1.1 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    60: CFNetwork (596.3.3 Reg=English Loc=0x0000: /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    61: CarbonCore (1037.5 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    62: Metadata (707.5 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    63: OSServices (557.6 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    64: SearchKit (1.4.0 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    65: AE (645.6 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    66: LaunchServices (539.7 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    67: DictionaryServices (184.4 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    68: libauto.dylib: /usr/lib/libauto.dylib
    69: libbsm.0.dylib: /usr/lib/libbsm.0.dylib
    70: SystemConfiguration (1.12.2 Reg=English Loc=0x0000: /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    71: Security (55179.11 Reg=English Loc=0x0000: /System/Library/Frameworks/Security.framework/Versions/A/Security
    72: libsqlite3.dylib: /usr/lib/libsqlite3.dylib
    73: libz.1.dylib: /usr/lib/libz.1.dylib
    74: libxml2.2.dylib: /usr/lib/libxml2.2.dylib
    75: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    76: libc++.1.dylib: /usr/lib/libc++.1.dylib
    77: libc++abi.dylib: /usr/lib/libc++abi.dylib
    78: libcache.dylib: /usr/lib/system/libcache.dylib
    79: libcommonCrypto.dylib: /usr/lib/system/libcommonCrypto.dylib
    80: libcompiler_rt.dylib: /usr/lib/system/libcompiler_rt.dylib
    81: libcopyfile.dylib: /usr/lib/system/libcopyfile.dylib
    82: libdispatch.dylib: /usr/lib/system/libdispatch.dylib
    83: libdnsinfo.dylib: /usr/lib/system/libdnsinfo.dylib
    84: libdyld.dylib: /usr/lib/system/libdyld.dylib
    85: libkeymgr.dylib: /usr/lib/system/libkeymgr.dylib
    86: liblaunch.dylib: /usr/lib/system/liblaunch.dylib
    87: libmacho.dylib: /usr/lib/system/libmacho.dylib
    88: libquarantine.dylib: /usr/lib/system/libquarantine.dylib
    89: libremovefile.dylib: /usr/lib/system/libremovefile.dylib
    90: libsystem_blocks.dylib: /usr/lib/system/libsystem_blocks.dylib
    91: libsystem_c.dylib: /usr/lib/system/libsystem_c.dylib
    92: libsystem_dnssd.dylib: /usr/lib/system/libsystem_dnssd.dylib
    93: libsystem_info.dylib: /usr/lib/system/libsystem_info.dylib
    94: libsystem_kernel.dylib: /usr/lib/system/libsystem_kernel.dylib
    95: libsystem_m.dylib: /usr/lib/system/libsystem_m.dylib
    96: libsystem_network.dylib: /usr/lib/system/libsystem_network.dylib
    97: libsystem_notify.dylib: /usr/lib/system/libsystem_notify.dylib
    98: libsystem_sandbox.dylib: /usr/lib/system/libsystem_sandbox.dylib
    99: libunc.dylib: /usr/lib/system/libunc.dylib
    100: libunwind.dylib: /usr/lib/system/libunwind.dylib
    101: libxpc.dylib: /usr/lib/system/libxpc.dylib
    102: libcorecrypto.dylib: /usr/lib/system/libcorecrypto.dylib
    103: libDiagnosticMessagesClient.dylib: /usr/lib/libDiagnosticMessagesClient.dylib
    104: libxar.1.dylib: /usr/lib/libxar.1.dylib
    105: libpam.2.dylib: /usr/lib/libpam.2.dylib
    106: libOpenScriptingUtil.dylib: /usr/lib/libOpenScriptingUtil.dylib
    107: libbz2.1.0.dylib: /usr/lib/libbz2.1.0.dylib
    108: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    109: DiskArbitration (2.5.2 Reg=English Loc=0x0000: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    110: NetFS (4.0 Reg=English Loc=0x0000: /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    111: libkxld.dylib: /usr/lib/system/libkxld.dylib
    112: NetAuth (4.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    113: DataDetectorsCore (269.2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    114: TCC (1 Reg=en Loc=0x0000: /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    115: liblangid.dylib: /usr/lib/liblangid.dylib
    116: libCRFSuite.dylib: /usr/lib/libCRFSuite.dylib
    117: GenerationalStorage (132.3 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    118: CFOpenDirectory (151.10 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    119: libxslt.1.dylib: /usr/lib/libxslt.1.dylib
    120: CoreText: /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    121: CoreGraphics: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    122: ImageIO (849 Reg=English Loc=0x0000: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    123: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    124: ColorSync (4.8.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    125: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    126: LangAnalysis (1.7.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    127: PrintCore (387.2 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    128: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    129: SpeechSynthesis (4.1.12 Reg=English Loc=0x0000: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    130: IOSurface (86.0.4 Reg=English Loc=0x0000: /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    131: Accelerate (Accelerate 1.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    132: libFontParser.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    133: libFontRegistry.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    134: vImage (6.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    135: vecLib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    136: libvDSP.dylib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    137: libvMisc.dylib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    138: libLAPACK.dylib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    139: libBLAS.dylib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    140: libJPEG.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    141: libTIFF.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    142: libPng.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    143: libGIF.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    144: libJP2.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    145: libRadiance.dylib: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    146: libcups.2.dylib: /usr/lib/libcups.2.dylib
    147: Kerberos (1 Reg=English Loc=0x0000: /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    148: GSS (2.0 Reg=English Loc=0x0000: /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    149: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    150: libiconv.2.dylib: /usr/lib/libiconv.2.dylib
    151: Heimdal (2.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    152: TrustEvaluationAgent (23 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    153: OpenDirectory (151.10 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    154: CommonAuth (2.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    155: CoreUI (181.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    156: DesktopServicesPriv (1.7.3 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    157: AudioToolbox (1.8 Reg=English Loc=0x0000: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    158: FamilyControls (410 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    159: MultitouchSupport (235.29 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    160: Bom (192 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    161: OpenGL (1.8.7 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    162: CoreVideo (99.4 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    163: CoreImage (1.0.1 Reg=English Loc=0x0000: /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    164: ScalableUserInterface (1 Reg=English Loc=0x0000: /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    165: libGLU.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    166: libGFXShared.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    167: libGL.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    168: libGLImage.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    169: libCVMSPluginSupport.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    170: libCoreVMClient.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    171: CrashReporterSupport (417 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    172: OpenCL (2.2.18 Reg=English Loc=0x0000: /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    173: FaceCoreLight (2.4.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    174: AppleFSCompression (1.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    175: Ubiquity (243.15 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    176: ServiceManagement (2.0 Reg=English Loc=0x0000: /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    177: ChunkingLibrary (133.3 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    178: vecLib (vecLib 3.8 Reg=English Loc=0x0000: /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    179: SecurityFoundation (55115.4 Reg=English Loc=0x0000: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    180: CommerceCore (26.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    181: CoreData (407.7 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    182: AddressBook (1169 Reg=English Loc=0x0000: /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    183: WinCrypto (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinCrypto.framework/Versions/14/WinCrypto
    184: mbupgx.dylib: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    185: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    186: molc (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/molc.framework/Versions/14/molc
    187: WebKit (8536.28.10 Reg=English Loc=0x0000: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    188: DirectoryService (151.10 Reg=English Loc=0x0000: /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    189: Backup (1.4.2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    190: SecurityInterface (55024.4 Reg=English Loc=0x0000: /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    191: PhoneNumbers (47 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    192: InternetAccounts (210 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    193: LDAP (194.5 Reg=English Loc=0x0000: /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    194: RemoteViewServices (80.6 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    195: AudioUnit (1.8 Reg=English Loc=0x0000: /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    196: PerformanceAnalysis (16 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    197: CoreSymbolication (117 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    198: Symbolication (93 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    199: DebugSymbols (98 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    200: QuartzComposer (284 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    201: PDFKit (2.7.3 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    202: QuartzFilters (1.7.0 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    203: ImageKit (670 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    204: QuickLookUI (555.5 Reg=English Loc=0x0000: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    205: JavaScriptCore (8536.28.10 Reg=English Loc=0x0000: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    206: QTKit (2599.24 Reg=English Loc=0x0000: /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    207: AppleSystemInfo (2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    208: CoreMedia (926.87 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    209: MediaToolbox (926.87 Reg=English Loc=0x0000: /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    210: VideoToolbox (926.87 Reg=English Loc=0x0000: /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    211: CoreMediaAuthoring (914 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    212: CoreMediaIO (4155 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    213: MediaControlSender (170.20 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    214: CoreAVCHD (5600.4.16 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    215: CoreAUC (6.16.13 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    216: Apple80211 (832.18.1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    217: CoreWLAN (302.12 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    218: CoreWiFi (122.12 Reg=English Loc=0x0000: /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    219: AppleVA (5.0.19 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    220: CorePDF (2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    221: QuickLook (555.5 Reg=English Loc=0x0000: /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    222: DisplayServices (357 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    223: ImageCaptureCore (5.0.2 Reg=English Loc=0x0000: /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    224: PreferencePanes (15.1 Reg=English Loc=0x0000: /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    225: libcrypto.0.9.8.dylib: /usr/lib/libcrypto.0.9.8.dylib
    226: AOSKit (152.2 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    227: AOSMigrate (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    228: ISSupport (56 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    229: ApplePushService (3.0 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    230: libsasl2.2.dylib: /usr/lib/libsasl2.2.dylib
    231: libssl.0.9.8.dylib: /usr/lib/libssl.0.9.8.dylib
    232: mbunamedstrings (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/mbunamedstrings.framework/Versions/14/mbunamedstrings
    233: CocoaTooltipParser (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    234: WebCore (8536.28.10 Reg=English Loc=0x0000: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    235: AGL (AGL-3.2.1 Reg=English Loc=0x0000: /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    236: DocEx (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/DocEx
    237: WinHttp (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinHttp.framework/Versions/14/WinHttp
    238: MicrosoftCredui (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    239: MicrosoftDDCS (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    240: WinAPIUI (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/WinAPIUI.framework/Versions/14/WinAPIUI
    241: MicrosoftCSI (14.3.4.130416 Reg=en Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    242: MetEx (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MetEx.framework/Versions/14/MetEx
    243: MicrosoftFBA (14.3.4.130416 Reg=(null) Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftFBA.framework/Versions/14/MicrosoftFBA
    244: XPG (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/XPG.framework/Versions/14/XPG
    245: MicrosoftFS (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftFS.framework/Versions/14/MicrosoftFS
    246: MicrosoftWlmFile (14.3.4.130416 Reg=en-US Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    247: MicrosoftWebServices (14.3.4.130416 Reg=en-US Loc=0x0000: /Applications/Microsoft Office 2011/Office/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    248: Oimg (14.3.4.130416 Reg=English Loc=0x0000: /Applications/Microsoft Office 2011/Office/Oimg.framework/Versions/14/Oimg
    249: Librarian (1 Reg=English Loc=0x0000: /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    250: CoreServicesInternal: /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    251: libCSync.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    252: libCGXType.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    253: ATSHI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    254: libTraditionalChineseConverter.dylib: /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    255: libRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    256: libTrueTypeScaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    257: libType1Scaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libType1Scaler.dylib
    258: libFontRegistryUI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    259: libSimplifiedChineseConverter.dylib: /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    260: libCyrillicConverter.dylib: /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    261: libJapaneseConverter.dylib: /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    262: libKoreanConverter.dylib: /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    263: libLatin2Converter.dylib: /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    Operating System Information
    Operating System: Mac OS X 10.8.3 (Build 12D78)
    CPU: Intel Core Duo, Number: 4, Speed: 2147 MHz
    gestaltPhysicalRAMSizeInMegabytes err = 0, result = 8192 MB
    gestaltSystemVersion err = 0, result = 0x1083
    Screen: 2560 x 1440, depth = 32, ltbr = 0, 0, 1440, 2560
    Microsoft Application Information:
    Error Reporting UUID: ED504BC3-7C57-4B20-A296-F8A887C9AE7C
    Time from launch: 0 hours, 0 minutes, 2 seconds
    Total errors on this client: 39
    Please help.  I've tired virtually every single blog fix and done several clean installs of the program with no luck and trying to get Microsoft to respond, let alone help, is impossible!!!

Maybe you are looking for

  • "The following errors occurred while trying to open this page." Why?

    Dear all, I'm running an online store at http://bubblething.com. I created it with iWeb 08. It crashed and I've been trying to recreate it, partly from images retreived by Apple from their "webarchive" and partly with images created fresh. I But I ke

  • Problem with lid closed mode

    So as far as i know, to get the computer to run in lid closed mode you press f7 until you get video mirroring, the second mode i believe, close the display, then wake the computer with the external mouse or keyboard. I've done this, but almost as soo

  • Presentation Variable name being passed as value

    I have a requirement where value needs to be checked against two separate fields for filtering (as OR statement). But there should be ability to filter on these fields separately as well. Dashboard prompt: Province [Multi search] State [Multi search]

  • Problem in returning the object + reflection + hashMap + list

    Hi All, i am very new to java forums... i'm sorry to disturb you all.. i don't exaclty know how to raise a question in forums.. Here my query is :::: i have xlsReader file,which will read the data from the xls file. after reading it,i am adding the c

  • !! Installing form/report6i on an Oracle 8i DB error !!

    After I installed Oracle 8i Enterprise Edition I wanted to install the downloaded Oracle Forms and Reports (server and developer) 6i. I only selected the reports options - Oracle Reports - but after the installation I had SQL 8.0.6 client and some mo