Frameworks DiscRecord Problems with 10.4.6?

No idea, here. Just updated to 10.4.6 and problems quickly arose. Logic Express runs, but anytime I try to access Audio Preferences (As in Hardware/Drivers, and even the Global Pref list) it dies. The Error Report reads the usual, but keeps on spitting out something to do with System/Library/Frameworks/DiscRecording. Does this just simply mean I have to finally send in for the crossgarde? Or is there some memo I missed? Doens't it seem logical that once I upgrade my OS things should still work as they did before? Troublesome.
Dual 1.8 G5   Mac OS X (10.4.6)  

Hi ,
did you repaired permissions after the upgrade?
try it.
regards,
jorge

Similar Messages

  • Dyna Form +Validator Framework--- peculair problem with java.lang.Integer

    In my struts application , i m using Dyna Action form,and Validator framework
    <form-bean
    name="myDynaForm"
    type="org.apache.struts.validator.DynaValidatorForm">
    <form-property name="name" type="java.lang.String"/>
    <form-property name="phoneNo" type="java.lang.Integer"/>
    </form-bean>
    Now if user does not enter name , then a error meassage is dispalyed,
    and aslo this time phoneNo shows 0.
    why 0 is displayed here?
    Can anybody tell me

    Hi all,
    If my memory serves me well, the exception is thrown because the application needs a working calendar for a person provided in time mangement. Make sure the correct infotypes are used. Also the organization structure needs to be set up correctly. The manager needs someone to approve and the employee needs someone to get approved by.
    Regards, Marcel.

  • SenTestingKit Framework Linking problems with Cocoa classes on iPhone

    Hi there,
    Really hoping that someone can help me here as it's driving me mad...
    Using the SenTestingKit stuff in iPhone OS 3.1.2, and have got the logic testing stuff all running okay, until I try to include some of my classes which use CLLocation, CLLocationManager etc - then it fails to link, complaining about the following:
    ".objcclass_nameCLLocationManager", referenced from: literal-pointer@[email protected]
    symbol(s) not found
    collect2: ld returned 1 exit status
    and the same issue for the following:
    ".objcclass_nameCLLocation", referenced from: literal-pointer@[email protected]
    symbol(s) not found
    collect2: ld returned 1 exit status
    So, I have included all of my own source files in the LogicTest target in my xcode project, which uses other classes such as NSMutableArray etc, and all build okay apart from these 2 errors - do i need to include something somewhere?!
    CoreLocation framwork is included in the project already, as the main application works fine normally - only seeing this when i am trying to build the logic test target...
    Please help!!

    Hi CFSi, and welcome to the Dev Forum!
    CFSi wrote:
    CoreLocation framwork is included in the project already, as the main application works fine normally - only seeing this when i am trying to build the logic test target...
    Have you explicitly added CoreLocation.Framework to the second target? To check, expand Targets in the Groups & Files tree, double click on the Logic Test target icon to open the Info window for that target, click General, and look at the Linked Libraries panel at the bottom of the window. If CL isn't listed, click the '+' icon under the panel (at the very bottom of the Info window).
    If the above doesn't help, or for more info in general, see Managing Target Files in the +Xcode Build System Guide+.
    \- Ray

  • Custom exception problems with ADF framework

    Hi,
    I have problems with the exception handling in an web service Java class (POJO).
    In this class I throw my own exception WsException-class which extends the normal Exception-class.
    The class WebservicesAppModule extends the oracle.jbo.ApplicationModule.
    In the following I first describe the web service class and then the three tests a)-c).
    In test b) you can find my main problem.
    Web service Java class (POJO):
    public Element check(Element element) throws WsException{   
    WebservicesAppModule am = null;
    try {
    // 1) system error
    // if I comment the next line out, then am = null and a NullPointerException is thrown which appear as NullPointerException in the SOAP response
    am = (WebservicesAppModule)Configuration.createRootApplicationModule(_am,_cf);
    if(value == null){
    // 2) application error
    WsException wsex = new WsException();
    wsex.addErrorCode(WsException.C_INVALID_BANK_CONNECTION);
    throw wsex;
    } else if (value2 == null){
    // 3) explicit system error
    throw new NullPointerException();
    }catch(WsException wsex){
    // 4) application error
    throw wsex;
    }catch(Throwable ex){
    // 5) system error
    log.debug("Technischer Fehler", ex);
    WsException wsex = new WsException("system error");
    wsex.addErrorCode(WsException.C_NOK);
    throw wsex;
    } finally {
    if (_am != null) {
    Configuration.releaseRootApplicationModule(am, false);
    Test a):
    - The WebservicesAppModule is initialized (1)
    - value = null, so the process run in the "application error" if-block (2)
    - The WsException is thrown and catched in the "application error" catch-block (4)
    The SOAP repsonse is okay:
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 09:43:39 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 09:43:55 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 520
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring>[11000, 10001] [de.test.webservices.WsException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Test b):
    - The WebservicesAppModule is NOT initialized (the line is comment out) (1)
    - The process run in system error catch-block (5)
    In the SOAP repsonse I expected the following <faultstring> (like in test c) )
    <faultstring>system error: [10000] [de.test.webservices.WsException]</faultstring>
    and not
    <faultstring> [java.lang.NullPointerException]</faultstring>
    What´s the problem?
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 08:59:12 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 09:01:02 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 506
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring> [java.lang.NullPointerException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Test c):
    - The WebservicesAppModule is initialized (1)
    - value != null, so the process run to the next if-block (2)
    - value2 == null, so the process run in the "explicit system error" (3)
    - The WsException is thrown and catched in the "system error" catch-block (5)
    This test shows that not the NullPointerException of Test b) is the problem.
    This response is expected in Test b).
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 13:53:46 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 13:54:19 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 533
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring>system error: [10000] [de.test.webservices.WsException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    What is the cause for the false <faultstring> in test b)? Where set the the ADF framework the NullPointerException and how can I avoid that?
    Thanks and best regards,
    Tobias

    Hi,
    I have problems with the exception handling in an web service Java class (POJO).
    In this class I throw my own exception WsException-class which extends the normal Exception-class.
    The class WebservicesAppModule extends the oracle.jbo.ApplicationModule.
    In the following I first describe the web service class and then the three tests a)-c).
    In test b) you can find my main problem.
    Web service Java class (POJO):
    public Element check(Element element) throws WsException{   
    WebservicesAppModule am = null;
    try {
    // 1) system error
    // if I comment the next line out, then am = null and a NullPointerException is thrown which appear as NullPointerException in the SOAP response
    am = (WebservicesAppModule)Configuration.createRootApplicationModule(_am,_cf);
    if(value == null){
    // 2) application error
    WsException wsex = new WsException();
    wsex.addErrorCode(WsException.C_INVALID_BANK_CONNECTION);
    throw wsex;
    } else if (value2 == null){
    // 3) explicit system error
    throw new NullPointerException();
    }catch(WsException wsex){
    // 4) application error
    throw wsex;
    }catch(Throwable ex){
    // 5) system error
    log.debug("Technischer Fehler", ex);
    WsException wsex = new WsException("system error");
    wsex.addErrorCode(WsException.C_NOK);
    throw wsex;
    } finally {
    if (_am != null) {
    Configuration.releaseRootApplicationModule(am, false);
    Test a):
    - The WebservicesAppModule is initialized (1)
    - value = null, so the process run in the "application error" if-block (2)
    - The WsException is thrown and catched in the "application error" catch-block (4)
    The SOAP repsonse is okay:
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 09:43:39 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 09:43:55 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 520
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring>[11000, 10001] [de.test.webservices.WsException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Test b):
    - The WebservicesAppModule is NOT initialized (the line is comment out) (1)
    - The process run in system error catch-block (5)
    In the SOAP repsonse I expected the following <faultstring> (like in test c) )
    <faultstring>system error: [10000] [de.test.webservices.WsException]</faultstring>
    and not
    <faultstring> [java.lang.NullPointerException]</faultstring>
    What´s the problem?
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 08:59:12 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 09:01:02 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 506
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring> [java.lang.NullPointerException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Test c):
    - The WebservicesAppModule is initialized (1)
    - value != null, so the process run to the next if-block (2)
    - value2 == null, so the process run in the "explicit system error" (3)
    - The WsException is thrown and catched in the "system error" catch-block (5)
    This test shows that not the NullPointerException of Test b) is the problem.
    This response is expected in Test b).
    --- Response ---
    HTTP/1.1 100 Continue
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Date: Thu, 20 Jul 2006 13:53:46 GMT
    HTTP/1.1 500 Internal Server Error
    Date: Thu, 20 Jul 2006 13:54:19 GMT
    Server: Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    Content-Length: 533
    Connection: Close
    Content-Type: text/xml; charset=utf-8
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server.Exception:</faultcode>
    <faultstring>system error: [10000] [de.test.webservices.WsException]</faultstring>
    <faultactor>/app-Webservices-context-root/WebServices</faultactor>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    What is the cause for the false <faultstring> in test b)? Where set the the ADF framework the NullPointerException and how can I avoid that?
    Thanks and best regards,
    Tobias

  • Problem with generics in general framework

    Hi,
    I've just started using generics and I've been able to solve most of my problems with type declarations etc, but I still have a few problems left.
    My current problem is in a class which has a map of classes which implements a generic typed interface (The interface is called Persister in the code below).
    The map is declared as:
    private Map<Class<?>, Persister<?>> persisters =
              new HashMap<Class<?>, Persister<?>>(); And the interface is declared as:
    interface Persister<T>My problem is that a method in the class which has the map should return a Collection of type T.
    Can that be done without supressing warnings?
    It's probably hard to understand what I mean (since I don't know the terminology) so here's a complete minimal example which illlustrates the problem. The problem is in the selectAll method in the DbFacade class.
    The lines:
         Persister persister = persisters.get(clazz);
         Collection<E> result = persister.selectAll(clazz);Needs to be altered but to what? (Or do I need to make more changes?)
    Thanks in advance
    Kaj
    ///////////////// Start of complete example
    import java.util.*;
    class ClientSample {
         public static void main(String[] args) {
              DbFacade facade = new DbFacade();
              //Works..
              Collection<Holiday> holidays = facade.selectAll(Holiday.class);
    class DbFacade {
         //Map with many different type of persisters,
         //one persister per class.
         private Map<Class<?>, Persister<?>> persisters =
              new HashMap<Class<?>, Persister<?>>();
         DbFacade() {
              persisters.put(Holiday.class, new HolidayPersister());
         //This is where I'm stuck
         //I don't want to add supresswarnings to this method, so what should I do?
         public <E> Collection<E> selectAll(Class<E> clazz) {
              //The following line gives:
              //Persister is a raw type. References to generic type
              //Persister<T> should be parameterized
              Persister persister = persisters.get(clazz);
              //The following line gives:
              //Type safety: The expression of type List needs unchecked
              //conversion to conform to Collection<E>
              Collection<E> result = persister.selectAll(clazz);
              return result;
    interface Persister<T> {
         List<T> selectAll(Class<T> clazz);
    abstract class AbstractPersister<T> implements Persister<T> {
    class HolidayPersister extends AbstractPersister<Holiday> {
         public List<Holiday> selectAll(Class<Holiday> clazz) {
              return null;
    class Holiday {
         //data
    }

    Well you can put in a type cast
    Persister<E> pesister = (Persister<E>) persisters.get(clazz);but you'll stil get a warning. Sometimes there's just no avoiding them. What, AFAIK, you can't tell the compiler is that each entry of the map contains a persister for the class mapped to it.
    All it knows that classes are mapped to Persisters.

  • I HAVE A BIG PROBLEM WITH MY ICAL 6.0

    I Can't launch my ICAL 6.0, I have been use Mountain lion for a few weeks, and everything was ok, but some days ago I did open my ICAL and can't load, and I reinstalled my Mountain Lion waiting to fix it, but doesn't work...
    if some one knows something please let me know!!!!!!!
    thank you very much,
    the problem that he say is:
    Process:         Calendar [2944]
    Path:            /Applications/Calendar.app/Contents/MacOS/Calendar
    Identifier:      com.apple.iCal
    Version:         6.0 (1639)
    Build Info:      iCal-1639000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [232]
    User ID:         501
    Date/Time:       2012-08-23 18:59:06.734 -0700
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Interval Since Last Report:          25627 sec
    Crashes Since Last Report:           38
    Per-App Interval Since Last Report:  71 sec
    Per-App Crashes Since Last Report:   38
    Anonymous UUID:                      D491B1C1-69A4-4117-A14F-1501C4D91505
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 0 beyond bounds for empty array'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff910e4716 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8b25a470 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff91097803 -[__NSArrayI objectAtIndex:] + 163
    3   Calendar                            0x00000001063c26bd Calendar + 235197
    4   Calendar                            0x00000001063c1ee7 Calendar + 233191
    5   Calendar                            0x00000001063c12e5 Calendar + 230117
    6   Calendar                            0x00000001063c1173 Calendar + 229747
    7   Calendar                            0x00000001063c0586 Calendar + 226694
    8   Calendar                            0x00000001063bfa87 Calendar + 223879
    9   Calendar                            0x00000001063bfa22 Calendar + 223778
    10  Calendar                            0x00000001063bb25a Calendar + 205402
    11  Calendar                            0x00000001063ba966 Calendar + 203110
    12  libdispatch.dylib                   0x00007fff8b98ff3d _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                   0x00007fff8b98c0fa _dispatch_client_callout + 8
    14  libdispatch.dylib                   0x00007fff8b991104 _dispatch_main_queue_callback_4CF + 275
    15  CoreFoundation                      0x00007fff9108681e __CFRunLoopRun + 1614
    16  CoreFoundation                      0x00007fff91085dd2 CFRunLoopRunSpecific + 290
    17  HIToolbox                           0x00007fff8af78774 RunCurrentEventLoopInMode + 209
    18  HIToolbox                           0x00007fff8af78454 ReceiveNextEventCommon + 166
    19  HIToolbox                           0x00007fff8af783a3 BlockUntilNextEventMatchingListInMode + 62
    20  AppKit                              0x00007fff85d99fa3 _DPSNextEvent + 685
    21  AppKit                              0x00007fff85d99862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    22  AppKit                              0x00007fff85d90c03 -[NSApplication run] + 517
    23  AppKit                              0x00007fff85d35656 NSApplicationMain + 869
    24  Calendar                            0x000000010638b4e5 Calendar + 9445
    25  libdyld.dylib                       0x00007fff8cea97e1 start + 0
    26  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8befc212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff90d3eb34 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff90d82dfa abort + 143
    3   libc++abi.dylib                         0x00007fff8dd44f87 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8dd42936 default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8b25a8f3 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff9071d8fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8b25a65e objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b98c10e _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b991104 _dispatch_main_queue_callback_4CF + 275
    10  com.apple.CoreFoundation                0x00007fff9108681e __CFRunLoopRun + 1614
    11  com.apple.CoreFoundation                0x00007fff91085dd2 CFRunLoopRunSpecific + 290
    12  com.apple.HIToolbox                     0x00007fff8af78774 RunCurrentEventLoopInMode + 209
    13  com.apple.HIToolbox                     0x00007fff8af78454 ReceiveNextEventCommon + 166
    14  com.apple.HIToolbox                     0x00007fff8af783a3 BlockUntilNextEventMatchingListInMode + 62
    15  com.apple.AppKit                        0x00007fff85d99fa3 _DPSNextEvent + 685
    16  com.apple.AppKit                        0x00007fff85d99862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    17  com.apple.AppKit                        0x00007fff85d90c03 -[NSApplication run] + 517
    18  com.apple.AppKit                        0x00007fff85d35656 NSApplicationMain + 869
    19  com.apple.iCal                          0x000000010638b4e5 0x106389000 + 9445
    20  libdyld.dylib                           0x00007fff8cea97e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8befc6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90d3ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90d3fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90d2a1b1 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8befcd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b98ee26 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b98ea2a _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8befc6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90d3ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90d3fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90d2a1b1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8befc6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90d3ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90d3fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90d2a1b1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8befc6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90d3ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90d3fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90d2a1b1 start_wqthread + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8befc0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90d41fc9 _pthread_cond_wait + 869
    2   com.apple.CoreVideo                     0x00007fff8a5372d4 CVDisplayLink::runIOThread() + 680
    3   com.apple.CoreVideo                     0x00007fff8a537013 startIOThread(void*) + 148
    4   libsystem_c.dylib                       0x00007fff90d3d782 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff90d2a1c1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff59875458  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff59875480  rsp: 0x00007fff59875458
       r8: 0x00007fff76c89278   r9: 0x0000000000000011  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff598755e0  r13: 0x00007f84b241a410  r14: 0x00007fff76c8a180  r15: 0x00007fff598754c0
      rip: 0x00007fff8befc212  rfl: 0x0000000000000206  cr2: 0x00007fff76c82fe8
    Logical CPU: 0
    Binary Images:
           0x106389000 -        0x106684fff  com.apple.iCal (6.0 - 1639) <3994282C-2987-367F-A7A2-49366A500DDF> /Applications/Calendar.app/Contents/MacOS/Calendar
           0x109735000 -        0x109738ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10988b000 -        0x109a42fff  GLEngine (8.5) <F65D1C15-7432-3E46-9EC2-056C8BAA2523> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x109a79000 -        0x109bbafff  libGLProgrammability.dylib (8.5) <61BBF728-1AD3-3268-AD5B-49BDFAD79068> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x109bee000 -        0x109e8ffff  com.apple.AMDRadeonX3000GLDriver (1.0.25 - 1.0.0) <EB9C0694-AA6A-35F4-B77A-11A9CC9A819D> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
           0x109ede000 -        0x109ee1fff  com.apple.IOAccelerator (19.0.26 - 19.0.26) <C6378B7C-F52D-3CF6-BE62-2C85F2F5CE80> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x109ee8000 -        0x109ef5ff7  libGPUSupportMercury.dylib (8.5) <75A06230-9BC5-3244-B41A-FDD489B409C5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x10a2fc000 -        0x10a6afff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.0.51 - 8.0.0) <E1B84EB5-627D-3751-B37C-49CB52E85614> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x10a7cd000 -        0x10a7dbff7  libGPUSupport.dylib (8.5) <FCC58D3C-BB45-3F76-8548-0ED6D5E92B90> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10a7e2000 -        0x10a80ffff  GLRendererFloat (8.5) <C0A8788A-1F4C-308E-ADF4-EDC70C09A4EC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10a818000 -        0x10a821fef  libcldcpuengine.dylib (2.1.16) <BA5F6C17-7A08-3DCF-A30E-E9C4D76B7356> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff65f89000 -     0x7fff65fbd93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff85426000 -     0x7fff85523fff  libsqlite3.dylib (138) <8D6A6805-1494-30D1-9F2A-F58FA3C0D7EE> /usr/lib/libsqlite3.dylib
        0x7fff85526000 -     0x7fff856acfff  libBLAS.dylib (1073.3) <6B71AB8C-3D9A-33C2-9EAF-2A0BA504D493> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff856be000 -     0x7fff858befff  libicucore.A.dylib (491.11.1) <17E8B610-6B16-3F91-B49C-7CAE0D08E9CF> /usr/lib/libicucore.A.dylib
        0x7fff858bf000 -     0x7fff85990ff7  com.apple.CoreText (260.0 - 275.14) <98A59BFB-9AC0-3EAB-B5A4-26C2F965A65D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff85991000 -     0x7fff85991fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff85992000 -     0x7fff859c0fff  com.apple.CoreServicesInternal (153 - 153) <11507A03-9165-350C-9492-A545EA7331BD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85a0c000 -     0x7fff85aa6fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff85aa7000 -     0x7fff85ac2ff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <FF8AB34C-5C19-3C05-AE02-85AA39812686> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff85ac3000 -     0x7fff85b33fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff85b34000 -     0x7fff85b47ff7  com.apple.AppContainer (2.0 - 1) <B5FD7F25-D376-3BFB-9E36-B382A14ED40A> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff85b8e000 -     0x7fff85bafff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff85bb0000 -     0x7fff85bdcfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85bdd000 -     0x7fff85c34ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff85c35000 -     0x7fff85c42ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff85c43000 -     0x7fff8686dfff  com.apple.AppKit (6.8 - 1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8686e000 -     0x7fff86872ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86873000 -     0x7fff8698cff7  com.apple.ImageIO.framework (3.2.0 - 843) <A9AC2A79-331A-3B06-AFE6-7E34EF876221> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8698d000 -     0x7fff8698dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8698e000 -     0x7fff86c49fff  com.apple.AddressBook.framework (7.0 - 1143) <EC55CF4B-4194-3163-B6E1-8C8D2712FBCF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86c4a000 -     0x7fff86c4efff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff86c4f000 -     0x7fff86c89fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86c8f000 -     0x7fff86c93fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86caf000 -     0x7fff86cf3ff7  com.apple.CalDAV (6.0 - 112) <AEA3B46B-8F87-38DE-A8F9-D2C838A92D98> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff86cf4000 -     0x7fff86d3cfff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff86d3d000 -     0x7fff87159fff  FaceCoreLight (2.0.1) <BEDAFBE8-CC12-343D-85D5-29B694DC97F6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8715a000 -     0x7fff87258ff7  com.apple.QuickLookUIFramework (4.0 - 555.0) <BD4FD137-918A-3755-B2B5-4E552D85B460> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff87260000 -     0x7fff872adfff  com.apple.CoreMediaIO (301.0 - 4147) <61E348A5-1F9E-3390-9613-3EACE40DBD8C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff872ae000 -     0x7fff872edff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff87ba8000 -     0x7fff87c0eff7  com.apple.coredav (1.0.1 - 179.4) <511B0351-3856-3221-B52D-FCAC0B6F9000> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff87c0f000 -     0x7fff87c31ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff87c32000 -     0x7fff87c54ff7  libxpc.dylib (140.37) <C552985C-2171-3136-A1B9-3AB21CBF7C4A> /usr/lib/system/libxpc.dylib
        0x7fff87c97000 -     0x7fff87c97ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <ECC4891A-9BA8-3C13-9A2B-6116521B7B46> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87e19000 -     0x7fff87e38ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff87e39000 -     0x7fff87ea6fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff87ea7000 -     0x7fff87edeff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff87fd1000 -     0x7fff8802dff7  com.apple.Symbolication (1.3 - 93) <66BAF8B0-26D5-38B6-A742-01031F1B4EC0> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88771000 -     0x7fff88771fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff88772000 -     0x7fff88772fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88773000 -     0x7fff888fcfff  com.apple.WebKit (8536 - 8536.25) <6827B87B-9921-3E69-80A6-115ED325DBA4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff888fd000 -     0x7fff88910ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff88911000 -     0x7fff8891efff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8891f000 -     0x7fff8891ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff88920000 -     0x7fff88a2bfff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88a2c000 -     0x7fff88a2dff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff88a2e000 -     0x7fff88a70fff  com.apple.RemoteViewServices (2.0 - 80.3) <E0224421-A421-3DB6-99AF-B249684FD13A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff88a71000 -     0x7fff88bc9ff7  com.apple.syncservices (7.0 - 713) <924B8B34-2C9C-3C1D-909D-FF215AA8985D> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff88bca000 -     0x7fff88e3eff7  com.apple.RawCamera.bundle (3.14.2 - 644) <11978DA8-3427-33FB-95BD-315608107265> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88e3f000 -     0x7fff88ec1fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff88ec2000 -     0x7fff88ecdff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <7A5F12E8-C1C2-39C7-8599-2362EAAB9F03> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88ece000 -     0x7fff88f8bff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88fe4000 -     0x7fff89041ff7  com.apple.AE (645 - 645) <9C3E54BA-EE6B-3F02-8775-9C4AF40F40CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89042000 -     0x7fff89092ff7  com.apple.iCalendar (6.0 - 126.2) <67C9CA39-1D08-3750-A4E0-29047B632116> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff89093000 -     0x7fff890d7fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff890d8000 -     0x7fff890eaff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff89477000 -     0x7fff89612fef  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
        0x7fff89613000 -     0x7fff896cbff7  com.apple.CoreMessage (1.0 - 1486) <5A53A715-7DE9-3CED-B3C5-0934E17B89AA> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
        0x7fff896cc000 -     0x7fff896e6fff  com.apple.geokit (2.1 - 2.1) <2B0ED144-9284-3396-8B34-292C29F4EED6> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff89710000 -     0x7fff89853fef  com.apple.MediaControlSender (1.4.1 - 141.23) <983E0905-BA7A-35D3-9370-430032201712> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff89854000 -     0x7fff89860fff  libCSync.A.dylib (322) <C1321292-F5D3-3B8F-8CBB-57AC8E05F90C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff89870000 -     0x7fff89884fff  libGL.dylib (8.5) <0FDF05D4-D560-3194-9DEA-52EEBD147618> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff898ae000 -     0x7fff89b09fff  com.apple.QuartzComposer (5.1 - 281) <E2BADA0D-2078-36FD-A761-97F9430C3C1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff89b0a000 -     0x7fff89f02ff7  com.apple.MediaToolbox (1.0 - 926.37) <347504AF-1028-3829-B51B-80E2F22BA600> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff89f03000 -     0x7fff89f0efff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89f0f000 -     0x7fff8a0bdfff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8a0be000 -     0x7fff8a1ddfff  com.apple.desktopservices (1.7.1 - 1.7.1) <0E1A57B2-9EC7-32EC-8B87-82902A1FD357> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a1df000 -     0x7fff8a237ff7  com.apple.ImageCaptureCore (4.0 - 4.0) <43B3255C-7567-3508-B2C9-6D1CFA61DB83> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8a238000 -     0x7fff8a24bff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8a292000 -     0x7fff8a4e7ff7  com.apple.CalendarStore (6.0 - 1235.1) <C50C83AD-255D-3329-91D0-5463419565DA> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8a4e8000 -     0x7fff8a534ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8a535000 -     0x7fff8a55fff7  com.apple.CoreVideo (1.8 - 99.0) <ED17EF3A-2775-3840-BBD1-6513B5B112F2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8a560000 -     0x7fff8a565fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8a566000 -     0x7fff8a95dfff  libLAPACK.dylib (1073.3) <E670020A-6969-3ED7-B80B-285AE1DE5F95> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a95e000 -     0x7fff8ad9afff  com.apple.VideoToolbox (1.0 - 926.37) <2C623B6A-42C1-30C3-93A6-0A10880D07D3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8ad9b000 -     0x7fff8adeaff7  libcorecrypto.dylib (106) <57BC99C6-3C3F-344C-BDD6-25E845D956F2> /usr/lib/system/libcorecrypto.dylib
        0x7fff8adeb000 -     0x7fff8ae47fff  com.apple.corelocation (1.0 - 1239.35) <0E3482AE-CF12-3CE2-A15E-0BF3D5F956CB> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8ae48000 -     0x7fff8ae83fff  com.apple.LDAPFramework (2.4.28 - 194.5) <012E3038-92EA-3DC8-82B1-A71462DDAE9E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8ae84000 -     0x7fff8aeccfff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8aecd000 -     0x7fff8af18fff  com.apple.framework.CoreWLAN (3.0 - 300.9) <96AEAA18-AEFB-3CB1-BAFD-F27D56140AE2> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8af19000 -     0x7fff8b248ff7  com.apple.HIToolbox (2.0 - 624) <49C4A53E-9239-3B9A-95DC-8C7B398E491D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8b249000 -     0x7fff8b361a27  libobjc.A.dylib (532) <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
        0x7fff8b362000 -     0x7fff8b3bffff  com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8b3c0000 -     0x7fff8b3c4fff  com.apple.SecCodeWrapper (2.0 - 1) <9C89FB5E-A3C1-34B0-85C8-EF5B093A461C> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8b3c5000 -     0x7fff8b3cffff  com.apple.DisplayServicesFW (2.6 - 352.4.2) <7FF30C43-84D7-3305-B8AD-F9754F3C582B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8b3d0000 -     0x7fff8b450ff7  com.apple.ApplicationServices.ATS (332 - 341) <487A3EA8-E180-3EA4-B60E-B87E8F0AB5D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8b451000 -     0x7fff8b4effff  com.apple.ink.framework (1.4 - 110) <C6E43ED5-7189-3291-80F0-BB7702AD051A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8b4f0000 -     0x7fff8b4fdfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8b4fe000 -     0x7fff8b77dfff  com.apple.AOSKit (1.05 - 148) <C7246547-252D-3505-BC4C-B26ECE575118> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8b77e000 -     0x7fff8b785fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8b7c1000 -     0x7fff8b8b1ff7  com.apple.DiskImagesFramework (10.8 - 344) <AC72B2EF-7307-3B20-B561-5ECF30E83627> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8b8b2000 -     0x7fff8b8d9ff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8b8de000 -     0x7fff8b978fff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b97b000 -     0x7fff8b989ff7  libkxld.dylib (2050.9.2) <4BEE9BC3-3708-330E-89D6-03E715D712CC> /usr/lib/system/libkxld.dylib
        0x7fff8b98a000 -     0x7fff8b99fff7  libdispatch.dylib (228.18) <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
        0x7fff8b9a0000 -     0x7fff8b9fafff  com.apple.print.framework.PrintCore (8.0 - 387) <3CA8A004-8F93-3936-9F9E-7030BD474D2B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8ba89000 -     0x7fff8bae0ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8bae1000 -     0x7fff8bdf8ff7  com.apple.CoreServices.CarbonCore (1037 - 1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8be01000 -     0x7fff8be12fff  com.apple.CalendarFoundation (1.0 - 27) <1C9D7450-9C25-3B2C-A3E4-B658780C3C0F> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8be13000 -     0x7fff8be41ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8be85000 -     0x7fff8bee4ff7  com.apple.IMAP (6.0 - 1486) <3E95C946-5581-3AEB-894D-04656E4829BE> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8bee8000 -     0x7fff8bee9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8beea000 -     0x7fff8bf05ff7  libsystem_kernel.dylib (2050.9.2) <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8bf06000 -     0x7fff8bf73ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <9B7C5E7A-3F7A-3E70-8179-4384992B84E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8bf74000 -     0x7fff8bf76ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8bfa5000 -     0x7fff8c0a7fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c0c3000 -     0x7fff8c0d0fff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8c0d1000 -     0x7fff8c36aff7  com.apple.JavaScriptCore (8536 - 8536.24) <3A80677B-3381-3281-8033-0F96F7D8D01A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8c36b000 -     0x7fff8c460fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8c461000 -     0x7fff8c462ff7  libdnsinfo.dylib (453.16) <38A3E0F4-E34C-3D45-A2C9-4CDE2DF007BD> /usr/lib/system/libdnsinfo.dylib
        0x7fff8c463000 -     0x7fff8c467fff  libGIF.dylib (843) <21324AF8-AFDA-3149-B547-C5109C1FBECF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8c468000 -     0x7fff8c50efff  com.apple.CoreServices.OSServices (557 - 557) <2806326A-6C4A-32C1-9BBE-ECB08453F328> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8c50f000 -     0x7fff8c51eff7  com.apple.opengl (1.8.5 - 1.8.5) <8960E72A-9692-3B32-8452-B2163855AD86> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c578000 -     0x7fff8c58dfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c58e000 -     0x7fff8c668fff  com.apple.backup.framework (1.4 - 1.4) <00964E68-4A36-3F9F-B0A5-B782575C64DE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8c6a8000 -     0x7fff8c6b0ff7  com.apple.AppSandbox (2.0 - 1) <07AA8651-890F-3CDE-A32C-275C387C8740> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8c6b1000 -     0x7fff8c702fff  com.apple.SystemConfiguration (1.12 - 1.12) <921FC1D6-06E6-3F37-8AFB-8CFB14E10AF9> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8c707000 -     0x7fff8c70dfff  libGFXShared.dylib (8.5) <A68A5A0B-F90C-3078-BF5A-2874C4BC5DC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8c7a2000 -     0x7fff8c7a6fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8c7a7000 -     0x7fff8c7b5ff7  com.apple.Librarian (1.1 - 1) <B0248F96-6BC9-3F63-8557-65DF1606039C> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8c7b6000 -     0x7fff8c7b8fff  com.apple.securityhi (4.0 - 55002) <8B2008A2-B6A2-3E69-9FA2-77B38C869DD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8c99e000 -     0x7fff8c9b8fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c9bf000 -     0x7fff8c9bffff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c9f9000 -     0x7fff8ca7afff  com.apple.Metadata (10.7.0 - 707.1) <ED39A710-1D87-3207-BB7D-4465B2673C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8ca87000 -     0x7fff8cae1fff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8cae2000 -     0x7fff8cb60ff7  com.apple.securityfoundation (6.0 - 55115.4) <137E156C-B29C-3B84-95B3-669BC7C1BA7A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8cb61000 -     0x7fff8cb8cfff  com.apple.framework.Apple80211 (8.0 - 800.15) <BF4FE748-2053-3FC6-BD16-1B8D29EA8B69> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8cb8d000 -     0x7fff8cb8ffff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8cb93000 -     0x7fff8cbbefff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8cbbf000 -     0x7fff8cd30ff7  com.apple.QTKit (7.7.1 - 2599) <823F862A-4A34-3894-A36C-C6D91B8AF5A8> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8cd31000 -     0x7fff8cde2fff  com.apple.LaunchServices (539 - 539) <04FA5C61-6349-3841-9609-B650B6222800> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8cde3000 -     0x7fff8cde7fff  com.apple.CalendarUI (1.0 - 13) <BC3FB569-77F6-3718-991E-1948FF633B79> /System/Library/PrivateFrameworks/CalendarUI.framework/Versions/A/CalendarUI
        0x7fff8ce90000 -     0x7fff8ce92fff  libCVMSPluginSupport.dylib (8.5) <0ED3B9E3-2F29-30F3-B2D6-3EDBF97F787F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ce93000 -     0x7fff8ce9efff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ce9f000 -     0x7fff8cea6fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8cea7000 -     0x7fff8ceaaff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ceab000 -     0x7fff8cf01fff  com.apple.HIServices (1.20 - 416) <99AC513F-B0AE-38AA-834E-9018902BB70C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8cf02000 -     0x7fff8cf57ff7  libTIFF.dylib (843) <4EB491F3-8DA4-3E4F-AE83-E207720F38B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8d13f000 -     0x7fff8d17bfff  com.apple.GeoServices (1.0 - 1) <F55A4DD8-FA21-3842-8450-1D707D24E69B> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8d17c000 -     0x7fff8d241fff  com.apple.coreui (2.0 - 181) <CFCB6868-36AC-3734-ACEA-DF9CAB2B84F2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d242000 -     0x7fff8d262fff  libPng.dylib (843) <8F83F355-CA33-3D15-8178-54A135BA23BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d263000 -     0x7fff8d2acfff  com.apple.ical.EventKit (1.0 - 47) <2AE23516-746E-38B3-BBEC-920553635E09> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
        0x7fff8d2ad000 -     0x7fff8d2edfff  com.apple.MediaKit (13 - 658) <3614D66C-0712-3049-9C5A-1ED9A94D82C5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8d381000 -     0x7fff8d40eff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d40f000 -     0x7fff8dbb7fff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8dbb8000 -     0x7fff8dbdfff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8dbe0000 -     0x7fff8dbe6fff  com.apple.DiskArbitration (2.5 - 2.5) <348AC0CC-6BCE-3416-9141-A5C1164EDDFF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8dbe7000 -     0x7fff8dc44fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8dc45000 -     0x7fff8dc94ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8dc95000 -     0x7fff8dca1ff7  com.apple.CrashReporterSupport (10.8.1 - 412) <3CBB620C-BDCF-31B1-B473-4B6380DE03F7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8dca2000 -     0x7fff8dca3fff  libDiagnosticMessagesClient.dylib (7) <56A70657-E8C2-3804-AB87-77DC100512A4> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8dca4000 -     0x7fff8dd41fff  com.apple.PDFKit (2.7 - 2.7) <00F5A07D-4F61-3BE7-8836-EB03DA904FB1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8dd42000 -     0x7fff8dd66ff7  libc++abi.dylib (24.2) <340E7C7B-DC93-3AA2-B015-B1C9541EC255> /usr/lib/libc++abi.dylib
        0x7fff8dd67000 -     0x7fff8dd88fff  com.apple.Ubiquity (1.2 - 234.2) <AC544B6F-0879-39A3-90A3-8BC8C29CBAD5> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8dd89000 -     0x7fff8dd8cfff  libRadiance.dylib (843) <61405840-A8B0-368E-B39A-704B5A04FDA5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8dd8d000 -     0x7fff8e71e39f  com.apple.CoreGraphics (1.600.0 - 322) <2F5D7032-9A96-36AE-A227-428E95CAE0C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8e721000 -     0x7fff8e755fff  com.apple.securityinterface (6.0 - 55024.3) <1AF13976-72BB-351F-A263-09284BA25C88> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8e76f000 -     0x7fff8e774fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8e775000 -     0x7fff8e79dfff  libJPEG.dylib (843) <377EC31E-1831-32E2-AEEB-C375E0A80335> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8e79e000 -     0x7fff8e79fff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8e7a0000 -     0x7fff8e7a0fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8e7a1000 -     0x7fff8e7a8fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8e7a9000 -     0x7fff8e9effff  com.apple.MessageFramework (6.0 - 1486) <AD7C0357-919D-3376-9826-2D53CB3646C4> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff8e9f0000 -     0x7fff8e9f2fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8ea4a000 -     0x7fff8ea4efff  libCGXType.A.dylib (322) <0FA2272E-7733-36EA-9B9B-9279169D5919> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8ea4f000 -     0x7fff8ea59fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8ea5a000 -     0x7fff8ea86ff7  libRIP.A.dylib (322) <36880C8B-7FC0-3689-91FF-A0E8F4F57FE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8ea87000 -     0x7fff8ede3ff7  com.apple.Foundation (6.8 - 945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ede4000 -     0x7fff8edfafff  com.apple.MultitouchSupport.framework (235.27 - 235.27) <78E356A6-78E8-3CAB-8982-7A4958C7A955> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8edfb000 -     0x7fff8fdadff7  com.apple.WebCore (8536 - 8536.24) <A890E18B-9224-38B3-ADFB-C84B3BCD2AAC> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8fdb0000 -     0x7fff8feadff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8feae000 -     0x7fff8feaefff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8feaf000 -     0x7fff8febdff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8febe000 -     0x7fff8febefff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8febf000 -     0x7fff8fec7ff7  libsystem_dnssd.dylib (379.27.1) <B9F7B01D-8FAF-3CA5-909E-4D52B8D2DD8A> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8fec8000 -     0x7fff8ffcafff  libJP2.dylib (843) <04915A7F-EE27-3C01-8582-0BD9919558B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ffcb000 -     0x7fff8ffd5fff  com.apple.CalendarAgentLink (1.0 - 35) <F196DC3A-8881-33CF-820B-7C79E17A22F5> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8ffd6000 -     0x7fff8ffeaff7  com.apple.iCal.CalendarDraw (6.0 - 1624) <255CE1A2-AD76-3A18-946F-44ECF916F46C> /System/Library/PrivateFrameworks/CalendarDraw.framework/Versions/A/CalendarDra w
        0x7fff900ba000 -     0x7fff900c6ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff900c7000 -     0x7fff900ccfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff900cd000 -     0x7fff900cefff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff90281000 -     0x7fff902b7fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff902b8000 -     0x7fff9030eff7  com.apple.opencl (2.1.17 - 2.1.17) <CA9E8BED-17C9-393B-A53E-8EAA8BF01C47> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff9030f000 -     0x7fff9032efff  com.apple.ChunkingLibrary (2.0 - 132) <F5051C19-6C4E-3E65-9BEC-B0A4BA82457A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff9032f000 -     0x7fff905fcff7  com.apple.security (7.0 - 55178.0.1) <8102877E-C866-33D4-A947-02FC7F4BAA95> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff905fd000 -     0x7fff90606fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff90611000 -     0x7fff90637fff  com.apple.framework.familycontrols (4.0 - 400) <B296674D-6D0B-323D-84C0-1D356F6F3BFA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff90641000 -     0x7fff90684ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff90685000 -     0x7fff90687ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff90688000 -     0x7fff9068bfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9068c000 -     0x7fff90692fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff906d8000 -     0x7fff90715fe7  libGLImage.dylib (8.5) <E6FE6970-FE3C-3844-AE9D-4B9B5505601A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff90716000 -     0x7fff9077eff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9077f000 -     0x7fff907dbfff  com.apple.QuickLookFramework (4.0 - 555.0) <8B163B8C-001E-3BBB-98ED-8173C68BC84C> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff907dc000 -     0x7fff907e7ff7  com.apple.aps.framework (3.0 - 3.0) <17CAFBFA-B842-33F0-B1F5-14EED36799FD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff907e8000 -     0x7fff907f9ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff907fa000 -     0x7fff90844ff7  libGLU.dylib (8.5) <5D71D182-D92F-35A7-81AA-0F1C79428911> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff90845000 -     0x7fff90876fff  com.apple.DictionaryServices (1.2 - 184) <B37F9A90-8954-3DEC-A216-8ABB15C615A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff90877000 -     0x7fff908e6fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <65B30FD8-DEC0-31D4-8E7F-CBCB987D7A48> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff908e9000 -     0x7fff90a39fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <8019964B-4FFB-3328-A425-B1A702177A25> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff90a3a000 -     0x7fff90a4efff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <21086D96-F997-38D3-BB59-8600CCC3A36F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff90a7e000 -     0x7fff90d28fff  com.apple.imageKit (2.2 - 660) <C14E3765-B683-3530-9312-256CEF43A258> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff90d29000 -     0x7fff90df5fef  libsystem_c.dylib (825.24) <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
        0x7fff90df6000 -     0x7fff90e04fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff90e05000 -     0x7fff90e14ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff90e15000 -     0x7fff90e4bfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90e4c000 -     0x7fff90e50fff  com.apple.IOSurface (86.0.2 - 86.0.2) <739A481A-DF06-39EB-B784-D03BA1CBD762> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90edb000 -     0x7fff90edcff7  libSystem.B.dylib (169.3) <132FE02E-3865-3F1F-B78D-C93D65930A67> /usr/lib/libSystem.B.dylib
        0x7fff90f2d000 -     0x7fff91000ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <005BE6FF-38A1-3AEA-B24C-9D4F330EF6BE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff91034000 -     0x7fff91050fff  com.apple.openscripting (1.3.5 - 148) <ACDE22A1-6170-3289-AF26-E501E6326BD7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff91051000 -     0x7fff9123afff  com.apple.CoreFoundation (6.8 - 744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9123b000 -     0x7fff9123bfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff91258000 -     0x7fff91291ff7  com.apple.framework.internetaccounts (2.0 - 200) <F4C8194D-D9CF-3D48-A9C0-CE572CDBD070> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff91292000 -     0x7fff912bbfff  libsandbox.1.dylib (220) <163B48F0-2A0D-3E07-8576-6734C98CEF25> /usr/lib/libsandbox.1.dylib
        0x7fff912f5000 -     0x7fff9130cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff9130d000 -     0x7fff91310fff  com.apple.TCC (1.0 - 1) <DE7ECAC3-BD08-323A-9C12-EE4A49B72871> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff91311000 -     0x7fff91328fff  com.apple.GenerationalStorage (1.1 - 132.1) <EAB41613-0145-3CE5-AA60-A8A791A3EE22> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91899000 -     0x7fff9189fff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff918a0000 -     0x7fff918ebff7  com.apple.CoreMedia (1.0 - 926.37) <4C2A8C16-ED81-3127-8E27-3B4024EB9BBE> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff918ec000 -     0x7fff91a5fff7  com.apple.CFNetwork (596.1 - 596.1) <62830510-738D-3719-AD51-68E816B13BB7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff91a60000 -     0x7fff91af1ff7  com.apple.CorePDF (2.0 - 2) <BD4EBB01-5A60-34F1-B9DD-AF745AA10902> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff91af2000 -     0x7fff91d82fff  com.apple.CoreImage (8.0.17 - 1.0.1) <FFD6159F-DF31-3EFC-9C59-7FC4F4219D43> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff91d83000 -     0x7fff91fa1fff  com.apple.CoreData (106 - 407.5) <45EF39FE-7FD6-366E-BB5C-3E86E0B7DA3C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91fa2000 -     0x7fff920bcfff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff920c0000 -     0x7fff92128fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff921a3000 -     0x7fff9220cfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff92239000 -     0x7fff92239fff  libOpenScriptingUtil.dylib (148) <4DB14EC4-422C-3AE8-83BF-354FEC197FD3> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9223a000 -     0x7fff92242fff  liblaunch.dylib (442.21) <224CB010-6CF8-3FC2-885C-6F80330321EB> /usr/lib/system/liblaunch.dylib
        0x7fff92243000 -     0x7fff92246fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff92247000 -     0x7fff92252ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    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: 656
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=230.6M resident=111.4M(48%) swapped_out_or_unallocated=119.1M(52%)
    Writable regions: Total=162.7M written=9540K(6%) resident=22.9M(14%) swapped_out=0K(0%) unallocated=139.8M(86%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  4920K
    CG image                              8K
    CG shared images                   1216K
    CoreAnimation                        92K
    CoreServices                       1376K
    IOKit                              7728K
    MALLOC                            121.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       60K
    OpenGL GLSL                        1024K
    SQLite page cache                  2208K
    STACK GUARD                        56.

    Connect the iPod to its syncing computer and restore via iTunes.  If iTunes asks for the passcode and you can't enter the passcode, place the iPod in recovery mode and then retore. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore
    For more info see:
    iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen

  • Connection Problem with Facetime on my Macbook Pro

    i have the same problems here ....
    here is the error report
    it isnt working on th macbook pro ... all my other products dont have issues ...
    imac, ipad air, ipad mini, iphone 5s ....
    PLEASE HELP
    Process:         FaceTime [2169]
    Path:            /Applications/FaceTime.app/Contents/MacOS/FaceTime
    Identifier:      com.apple.FaceTime
    Version:         3.0 (1636)
    Build Info:      FaceTime-1636000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [147]
    Responsible:     FaceTime [2169]
    User ID:         501
    PlugIn Path:       /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    PlugIn Identifier: libvMisc.dylib
    PlugIn Version:    ??? (423.32)
    Date/Time:       2014-04-26 20:07:46.337 +0200
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  858EDE74-E255-B5CC-26D6-01A629BDFA7C
    Sleep/Wake UUID: 28DAD34C-E93C-4A19-85BE-FF3854E1CF70
    Crashed Thread:  20
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff7a4f12b8
    VM Regions Near 0x7fff7a4f12b8:
        __DATA                 00007fff7a4f0000-00007fff7a4f1000 [    4K] rw-/rwx SM=COW  /usr/lib/system/libkeymgr.dylib
    --> __DATA                 00007fff7a4f1000-00007fff7a4f2000 [    4K] rw-/rwx SM=COW  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        __DATA                 00007fff7a4f2000-00007fff7a4f3000 [    4K] rw-/rwx SM=COW  /usr/lib/system/libsystem_m.dylib
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8a59fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a59ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff9157bfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff9157b5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff9157af25 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x00007fff8e53ba0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x00007fff8e53b7b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x00007fff8e53b5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x00007fff890da3de _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x00007fff890d9a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit                        0x00007fff890cdb2c -[NSApplication run] + 553
    11  com.apple.AppKit                        0x00007fff890b8913 NSApplicationMain + 940
    12  libdyld.dylib                           0x00007fff8cc325fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a5a4662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8846f43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8846f152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a59ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff9157bfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff9157b5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff9157af25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8927a16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa6e semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x00007fff884719da _dispatch_semaphore_wait_slow + 147
    2   libdispatch.dylib                       0x00007fff8846ef08 _dispatch_worker_thread + 145
    3   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa6e semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x00007fff884719da _dispatch_semaphore_wait_slow + 147
    2   libdispatch.dylib                       0x00007fff8846ef08 _dispatch_worker_thread + 145
    3   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 5:: com.apple.gamekitservices.tundracapture.frameproc
    0   libsystem_kernel.dylib                  0x00007fff8a59fa56 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff88471a15 _dispatch_semaphore_wait_slow + 206
    2   com.apple.AVConference                  0x0000000108b793f8 FrameProc + 247
    3   com.apple.CoreMedia                     0x00007fff9446d4aa figThreadMain + 382
    4   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e8d1dc0 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8e8d1cb2 usleep + 54
    3   com.apple.CoreMediaIO                   0x00007fff94f8d6bb CMIOGraph::OneOrMoreInputUnitsAreReadyToBePulled(bool&) + 571
    4   com.apple.CoreMediaIO                   0x00007fff94f8df7f CMIOGraph::DoWork(unsigned int) + 129
    5   com.apple.CoreMediaIO                   0x00007fff94f90cb2 CMIO::Thread::QueuedTWorkThread<unsigned int>::DoWork() + 120
    6   com.apple.CoreMediaIO                   0x00007fff94f99b9f CMIO::Thread::SignaledThread::ThreadLoop() + 129
    7   com.apple.CoreMediaIO                   0x00007fff94f99afb CMIO::Thread::SignaledThread::WorkQueuedThreadCallback(void*) + 159
    8   com.apple.CoreMedia                     0x00007fff9446d4aa figThreadMain + 382
    9   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    10  libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    11  libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a59ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff9157bfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff9157b5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff9157af25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff91630811 CFRunLoopRun + 97
    6   com.apple.cmio.DAL.VDC-4                0x0000000107c41f8b 0x107c3b000 + 28555
    7   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8a59fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a59ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff9157bfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff9157b5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff9157af25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff91761967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff9176176b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 9:: com.apple.gamekitservices.vtransport.recvproc
    0   libsystem_kernel.dylib                  0x00007fff8a5a39aa __select + 10
    1   com.apple.AVConference                  0x0000000108b6b1d4 VTPRecvProc + 355
    2   com.apple.CoreMedia                     0x00007fff9446d4aa figThreadMain + 382
    3   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92338f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9233bfb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92338f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9233bfb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92338f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9233bfb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92338f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9233bfb9 start_wqthread + 13
    Thread 14:: com.apple.gamekitservices.transport.recvproc
    0   libsystem_kernel.dylib                  0x00007fff8a5a3716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92339c77 _pthread_cond_wait + 787
    2   com.apple.AVConference                  0x0000000108b6f52a VTP_Select + 1438
    3   com.apple.AVConference                  0x0000000108b314a2 TPRecvProc + 620
    4   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 15:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8a5a39aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff915c7ab3 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa6e semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x00007fff884719da _dispatch_semaphore_wait_slow + 147
    2   libdispatch.dylib                       0x00007fff8846ef08 _dispatch_worker_thread + 145
    3   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8a59fa6e semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x00007fff884719da _dispatch_semaphore_wait_slow + 147
    2   libdispatch.dylib                       0x00007fff8846ef08 _dispatch_worker_thread + 145
    3   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92338f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9233bfb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8a5a3716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92339c77 _pthread_cond_wait + 787
    2   com.apple.AVConference                  0x0000000108b2c250 TPRecvUDPPacketWithTimeout + 712
    3   com.apple.ICE                           0x0000000108f5b3a7 ICERecvUDPPacketWithTimeout + 583
    4   com.apple.ICE                           0x0000000108f630af RecvAndProcess + 410
    5   com.apple.ICE                           0x0000000108f666a0 ConnectivityCheckProc + 577
    6   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 20 Crashed:
    0   libvDSP.dylib                           0x00007fff8eafb21c DYLD-STUB$$vvcospif + 0
    1   com.apple.AVConference                  0x0000000108bb16da wsola_info_create + 53
    2   com.apple.AVConference                  0x0000000108babde8 JPlayback_Initialize + 401
    3   com.apple.AVConference                  0x0000000108af8924 RTPSetPayload + 508
    4   com.apple.AVConference                  0x0000000108b4e8a6 -[VCCallSession(PrivateMethods) setRTPPayloads:numPayloads:withError:] + 548
    5   com.apple.AVConference                  0x0000000108b4eaa1 -[VCCallSession(PrivateMethods) setupCallerRTPChannelWithError:] + 143
    6   com.apple.AVConference                  0x0000000108b4ee29 -[VCCallSession(PrivateMethods) sipConnectWithError:] + 241
    7   com.apple.AVConference                  0x0000000108b536c8 -[VCCallSession(PrivateMethods) sipConnectThreadProc:] + 205
    8   com.apple.Foundation                    0x00007fff9176176b __NSThread__main__ + 1318
    9   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    10  libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    11  libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 21:: com.apple.gamekitservices.jitternew.rtprecvproc
    0   libsystem_kernel.dylib                  0x00007fff8a5a3716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92339c3b _pthread_cond_wait + 727
    2   com.apple.AVConference                  0x0000000108b6f552 VTP_Select + 1478
    3   com.apple.AVConference                  0x0000000108afac56 RTPGetReceiveStatus + 383
    4   com.apple.AVConference                  0x0000000108af33fe RTPRecvProc + 254
    5   com.apple.CoreMedia                     0x00007fff9446d4aa figThreadMain + 382
    6   libsystem_pthread.dylib                 0x00007fff92337899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9233772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9233bfc9 thread_start + 13
    Thread 20 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000258  rbx: 0x00007fe193188a00  rcx: 0x00007fe193189360  rdx: 0x000000010c3c371c
      rdi: 0x00007fe193188a00  rsi: 0x00007fe193188a00  rbp: 0x000000010c3c3750  rsp: 0x000000010c3c3708
       r8: 0x0000000000000000   r9: 0x0000000000000074  r10: 0x00007fff95e6f62c  r11: 0x00007fff8eaeb7e0
      r12: 0x0000000000009600  r13: 0x0000000000002580  r14: 0x0000000000000b40  r15: 0x0000000000000258
      rip: 0x00007fff8eafb21c  rfl: 0x0000000000010246  cr2: 0x00007fff7a4f12b8
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x106003000 -        0x1060e9ff7  com.apple.FaceTime (3.0 - 1636) <1984FC2F-149D-323E-B84B-C4F83D8684C1> /Applications/FaceTime.app/Contents/MacOS/FaceTime
           0x106143000 -        0x10619efff  com.apple.imavcore (10.0 - 1000) <A976F3A6-9064-3EA5-BCDA-8791CB952BA9> /System/Library/PrivateFrameworks/IMAVCore.framework/Versions/A/IMAVCore
           0x107a9d000 -        0x107aa5ff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x107b32000 -        0x107b35fff  libspindump.dylib (161.2) <B8AA261C-AACA-3924-AB0E-06E2C37E48B0> /usr/lib/libspindump.dylib
           0x107b3b000 -        0x107b3cfff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1369) <FC0AC7FD-5351-3F6B-9D24-DD3BAA52C5ED> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x107b4e000 -        0x107b52ff7  com.apple.DirectoryServicesSource (8.0 - 1369) <7D4F2AE3-325D-36BA-8DA7-590CFC67AF49> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x107b5a000 -        0x107ba6ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x107c28000 -        0x107c2dfff  com.apple.RTCReporting (1.0 - 1.28) <3870D0A2-9A54-3B8A-9F4A-1A2E5C318702> /System/Library/PrivateFrameworks/RTCReporting.framework/Versions/A/RTCReportin g
           0x107c3b000 -        0x107c61ffb  com.apple.cmio.DAL.VDC-4 (407.0 - 4561) <4804434D-EF53-3DE9-863B-90BE545DCC20> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
           0x107c92000 -        0x107c95ffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x107c9e000 -        0x107cc6ffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x108ad3000 -        0x108c0fff4  com.apple.AVConference (2.0 - 586.16.4) <5F4EADE6-2AFA-39DE-964F-379DB5B42885> /System/Library/PrivateFrameworks/AVConference.framework/Versions/A/AVConferenc e
           0x108ca4000 -        0x108eddff7  com.apple.VideoProcessing (166.8 - 166.8) <3679F373-6CEE-3187-A822-20109E0E1E03> /System/Library/PrivateFrameworks/VideoProcessing.framework/Versions/A/VideoPro cessing
           0x108f33000 -        0x108f3dff6  com.apple.ViceroyTrace (2.0 - 586.16.4) <AE19F915-3F1F-3D60-BFD3-733666574C57> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrac e.framework/Versions/A/ViceroyTrace
           0x108f48000 -        0x108f4eff7  com.apple.SimpleKeyExchange (2.0 - 586.16.4) <B4ED0F49-558F-3B78-9529-5DB51C5D9300> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyEx change.framework/Versions/A/SimpleKeyExchange
           0x108f55000 -        0x108f7bffb  com.apple.ICE (2.0 - 586.16.4) <2016142A-6E06-38EF-AED4-CA66D7D79324> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framewo rk/Versions/A/ICE
           0x108f84000 -        0x108f84fff  com.apple.LegacyHandle (2.0 - 586.16.4) <73E54BA9-248E-3825-A041-B3D3051868C3> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandl e.framework/Versions/A/LegacyHandle
           0x108f89000 -        0x108f8afff  com.apple.snatmap (2.0 - 586.16.4) <39B4D894-FFA6-3381-9E52-FF4EDB4321DE> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.fra mework/Versions/A/snatmap
           0x1090df000 -        0x1090e3ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1090fd000 -        0x109107ff7  AppleIntelSNBVA (8.24.11) <718970F7-A074-39F7-A7DF-AFD807935772> /System/Library/Extensions/AppleIntelSNBVA.bundle/Contents/MacOS/AppleIntelSNBV A
           0x10912f000 -        0x10912ffeb +cl_kernels (???) <85DD9A4D-51FA-4AD5-A456-AF03FEBE7C43> cl_kernels
           0x10ad4d000 -        0x10adf9ff7  com.apple.AppleGVAFramework (7.1.10 - 7.1.10) <3FD3AD06-ADCA-3F90-931C-9B8011328C87> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/Current/AppleGVA
           0x10ae0c000 -        0x10af08fff  com.apple.AppleIntelHD3000GraphicsVADriver (8.24.11 - 8.2.4) <16ED5CA2-A838-3A5C-AF6A-C5B3AED90501> /System/Library/Extensions/AppleIntelHD3000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsVADriver
           0x10b04f000 -        0x10b1b7ff5  com.apple.CMIOUnits (407.0 - 4561) <8FD025B9-5BFB-33CE-B76D-462F6D639318> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
           0x10b1e0000 -        0x10b20bfff  com.apple.FWAVC (403.47 - 47) <8E5C3102-AB99-3C75-9036-03C5BDA177E9> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x10b553000 -        0x10b55efff  libGPUSupport.dylib (9.6) <039FC0EF-1B2C-3465-907B-A1856DCF5ADF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10b5e5000 -        0x10b5ebff7  libCGXCoreImage.A.dylib (599.21.1) <D66366B5-33BA-3715-9A40-50F0FF5EAE39> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x10bc05000 -        0x10bc06ff9 +cl_kernels (???) <BF6CF256-FE51-43C5-8BB5-24F89E5517BB> cl_kernels
           0x10bc0b000 -        0x10bc0cffa +cl_kernels (???) <14EC56D1-E412-4456-8E9A-220B3E6F6E94> cl_kernels
           0x10bf18000 -        0x10bffefef  unorm8_bgra.dylib (2.3.58) <6E7397EF-CC78-3C15-8B21-05E7FB47F645> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10d74a000 -        0x10d91bfff  com.apple.audio.units.Components (1.10 - 1.10) <7AB53801-51BD-347E-B267-BCF71C15C023> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10e0e0000 -        0x10e2d6fff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
        0x123400000000 -     0x12340034dff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.11 - 8.2.4) <32F185FB-3FC5-312C-80DD-AC47FE71C8D2> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
        0x7fff6f1a2000 -     0x7fff6f1d5817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff87d65000 -     0x7fff87d7eff7  com.apple.MessagesKit (1.0 - 1) <31EEEB23-D3E9-3D59-9FC7-50AD94184C21> /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit
        0x7fff87d7f000 -     0x7fff87e07ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87e08000 -     0x7fff87e10ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff87e11000 -     0x7fff87e13fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff87e14000 -     0x7fff87e15ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff87e16000 -     0x7fff87e21ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87e22000 -     0x7fff87e32ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff87e33000 -     0x7fff87e3cfff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff87ec8000 -     0x7fff87eedff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff87eee000 -     0x7fff87f79fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff87f7a000 -     0x7fff87f7efff  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
        0x7fff87f7f000 -     0x7fff87f88ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8801e000 -     0x7fff8801efff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8801f000 -     0x7fff8818dff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8818e000 -     0x7fff881b7ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff881b8000 -     0x7fff881defff  com.apple.AOSAccounts (1.2.47 - 1.2.74) <BA7AA453-31FB-304A-A40C-14B20533C31D> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff881df000 -     0x7fff881ebff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff881ec000 -     0x7fff88218fff  com.apple.SocialAppsCore (8.0 - 4230) <B32D9FB5-B13C-38FC-ABF2-E7EE71FF7ED9> /System/Library/PrivateFrameworks/SocialAppsCore.framework/Versions/A/SocialApp sCore
        0x7fff88219000 -     0x7fff88231ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8827e000 -     0x7fff8836fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff88370000 -     0x7fff8837cff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8837f000 -     0x7fff8837fffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88380000 -     0x7fff883beff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff883bf000 -     0x7fff883fafff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff883fb000 -     0x7fff88456ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88457000 -     0x7fff88459ff7  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
        0x7fff8845a000 -     0x7fff88464ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88468000 -     0x7fff8846bfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8846c000 -     0x7fff88486fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff88487000 -     0x7fff884abff7  libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff884ac000 -     0x7fff884cbff7  com.apple.CalendarFoundation (7.0 - 113.1) <12352B25-2DCF-38C8-9776-CCC68907CF50> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff884d6000 -     0x7fff88517fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff88518000 -     0x7fff885d0ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff885d1000 -     0x7fff88741ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff88742000 -     0x7fff88744ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff887f2000 -     0x7fff88808ff7  com.apple.ContactsUI (8.0 - 1369) <54A4A86A-B9F8-37A1-810B-BA39C00E02CF> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff88809000 -     0x7fff88b3ffff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff88b70000 -     0x7fff88b9dff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff88b9e000 -     0x7fff88ba0fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff88ba1000 -     0x7fff88ba9ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff88baa000 -     0x7fff88bd8ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff88bd9000 -     0x7fff88bdaffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff88bdb000 -     0x7fff88c37fff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff88c38000 -     0x7fff88c4ffff  com.apple.ScriptingBridge (1.3.1 - 63) <CE24DD07-7A89-3105-AE57-A1BED0189292> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff88e67000 -     0x7fff88e79ff7  com.apple.CoreBluetooth (1.0 - 1) <67A00F44-563E-3C55-9187-34D502D84DDE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff88e7a000 -     0x7fff88ea3fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88ea4000 -     0x7fff88ea7ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88ee7000 -     0x7fff88fd6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88fd7000 -     0x7fff89039ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8903a000 -     0x7fff89042ffb  com.apple.CloudServices (1.0 - 1) <644772DA-9267-376D-AD90-749D6B692566> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff89044000 -     0x7fff8904dffb  libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib
        0x7fff89099000 -     0x7fff890b5fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff890b6000 -     0x7fff89c2cfff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff89c2d000 -     0x7fff89c46ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff89c47000 -     0x7fff89c62ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff89c63000 -     0x7fff89c63ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89c64000 -     0x7fff89c9cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff89c9d000 -     0x7fff8a1c0fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8a21b000 -     0x7fff8a234fff  com.apple.AssistantServices (1.1 - 132) <8046BCBE-4F58-3F51-85A2-4F876C299B5E> /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Assist antServices
        0x7fff8a235000 -     0x7fff8a23bfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8a23c000 -     0x7fff8a4cdfff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8a4ce000 -     0x7fff8a525fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8a526000 -     0x7fff8a538fff  com.apple.addressbook.ContactsAutocomplete (8.0 - 1369) <3FE9486E-0B79-32FE-A544-9B323BF160B7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff8a550000 -     0x7fff8a55bff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8a55c000 -     0x7fff8a58bfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8a58c000 -     0x7fff8a58dff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff8a58e000 -     0x7fff8a5aaff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a5ab000 -     0x7fff8a5adff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8a5ae000 -     0x7fff8a621fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a622000 -     0x7fff8a634fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8a635000 -     0x7fff8a639ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff8a63a000 -     0x7fff8a647fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8a648000 -     0x7fff8a655ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a656000 -     0x7fff8a69dfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8a9ff000 -     0x7fff8aa0bff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8aa0c000 -     0x7fff8aa3dfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8aaf4000 -     0x7fff8ab08fff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8ab09000 -     0x7fff8abcbff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8abcc000 -     0x7fff8abd8ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8abd9000 -     0x7fff8ac05fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ac06000 -     0x7fff8ac13ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8ac14000 -     0x7fff8ac26ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ac27000 -     0x7fff8ac31ff7  com.apple.corerecents (1.0 - 1) <0F44FFB3-8C65-3565-9262-CF6FA0AE0C8A> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff8ac32000 -     0x7fff8ac3afff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ac3b000 -     0x7fff8ac9bfff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8ac9c000 -     0x7fff8ac9cfff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff8ac9d000 -     0x7fff8ae2aff7  GLEngine (9.6) <51D58F76-B9B3-3B4F-B65A-F6D213C2EED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8ae2b000 -     0x7fff8aebffff  com.apple.Bluetooth (4.2.3 - 4.2.3f10) <633E8260-2E5E-3640-9582-D159C3FF0636> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8aec0000 -     0x7fff8afaefff  libJP2.dylib (1042.2) <DD2DE799-C053-3C6A-91EC-D637CBD6FF90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8afaf000 -     0x7fff8b03ffff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8b040000 -     0x7fff8b064fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8b065000 -     0x7fff8b083ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8b084000 -     0x7fff8b088ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff8b089000 -     0x7fff8b0d0ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff8b0d1000 -     0x7fff8b12afff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b1ed000 -     0x7fff8b1f9ff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8b209000 -     0x7fff8b20afff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8b20d000 -     0x7fff8b20dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8b254000 -     0x7fff8b261ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8b262000 -     0x7fff8b2a7ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b2a8000 -     0x7fff8b40efff  libGLProgrammability.dylib (9.6) <8807FAD2-11E2-3293-89D8-397B87334138> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8b40f000 -     0x7fff8b42aff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8b42b000 -     0x7fff8b453ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8b454000 -     0x7fff8b4a5fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b4a6000 -     0x7fff8b4cdffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8b4ce000 -     0x7fff8b5d4fff  com.apple.ImageIO.framework (3.3.0 - 1042) <DEA4FF1B-D340-32C3-977D-D249709C6031> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8b5d5000 -     0x7fff8b5fcff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8b5fd000 -     0x7fff8b616ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8b617000 -     0x7fff8b664ff2  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
        0x7fff8b665000 -     0x7fff8b665fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8b666000 -     0x7fff8b6e4fff  com.apple.SAObjects (3.0 - ???) <402D8DD3-9675-3186-92F0-232E5F1E85B7> /System/Library/PrivateFrameworks/SAObjects.framework/Versions/A/SAObjects
        0x7fff8b6e5000 -     0x7fff8b826fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b827000 -     0x7fff8b906fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8bd1c000 -     0x7fff8be06fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8be07000 -     0x7fff8be6bfff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8be6c000 -     0x7fff8c24dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8c24e000 -     0x7fff8c3eaff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8c3eb000 -     0x7fff8c412ff7  com.apple.shortcut (2.6 - 2.6) <A62BC973-6782-3893-B014-EC6503AB7EAD> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8c46a000 -     0x7fff8c47bfff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff8c47c000 -     0x7fff8c4b1ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8c4b2000 -     0x7fff8c583ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8c584000 -     0x7fff8c588fff  com.apple.ServerInformation (2.0 - 1) <85F3EFCA-246B-30A1-8757-ECC97533D38D> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8c589000 -     0x7fff8c58fff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c590000 -     0x7fff8c6e3ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c6e4000 -     0x7fff8c74afff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8c74b000 -     0x7fff8c7a0fff  com.apple.iChat.IMRenderingFoundation (7.0 - 800) <61B15AB7-9BEC-36F1-BE83-98280D34E160> /System/Library/PrivateFrameworks/SocialUI.framework/Versions/A/Frameworks/IMRe nderingFoundation.framework/Versions/A/IMRenderingFoundation
        0x7fff8c7ae000 -     0x7fff8c7b3ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8c7b4000 -     0x7fff8cc02fff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8cc03000 -     0x7fff8cc29fff  com.apple.iCalendar (7.0 - 162.1) <2027875B-A366-33BE-AE9D-CE5425AD290E> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8cc2a000 -     0x7fff8cc2eff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8cc2f000 -     0x7fff8cc32ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8cc33000 -     0x7fff8cc36fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8cc37000 -     0x7fff8cc66ff9  com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8cc8d000 -     0x7fff8ced3fff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8ced4000 -     0x7fff8cedeff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8cedf000 -     0x7fff8cfc3fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8cfc4000 -     0x7fff8d33bff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <DC1116A7-934C-37C1-9AB2-354DBA43EAD7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8da8c000 -     0x7fff8da94ff7  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
        0x7fff8da95000 -     0x7fff8da9fff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8daa6000 -     0x7fff8dab0fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8dab1000 -     0x7fff8dafffff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8db00000 -     0x7fff8db01ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8db99000 -     0x7fff8dbecfff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8dbed000 -     0x7fff8dc11fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8dc12000 -     0x7fff8ddcaff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8ddcb000 -     0x7fff8de8fff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8de90000 -     0x7fff8dfbffef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8e262000 -     0x7fff8e26bfff  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
        0x7fff8e26c000 -     0x7fff8e26effb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8e26f000 -     0x7fff8e274fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e275000 -     0x7fff8e280fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8e299000 -     0x7fff8e2a8ff8  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
        0x7fff8e2a9000 -     0x7fff8e2aafff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8e2ab000 -     0x7fff8e2f9fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8e2fa000 -     0x7fff8e318fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8e319000 -     0x7fff8e50aff3  com.apple.WebKit2 (9537 - 9537.75.14) <A54F32B2-5D0D-3A1D-A1F6-FB2162BD50D1> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8e50b000 -     0x7fff8e50cffc  com.apple.SafariServices.framework (9537 - 9537.75.14) <700D5B79-CE93-330D-BD9B-37ECCDC4CA98> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8e50d000 -     0x7fff8e7b7ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra m

    ?

  • Problem with auvaltool Logic Pro 9 and Nexus2

    This is the message im getting the report from and no idea why or whats caused it. Anyone with suggestions. Still waiting for reply from refx.
    Process:         Logic Pro [2261]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~2
    App Item ID:     459578486
    App External ID: 10394291
    Code Type:       X86 (Native)
    Parent Process:  launchd [154]
    User ID:         501
    PlugIn Path:       /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    PlugIn Identifier: com.reFX.Nexus
    PlugIn Version:    2.4.2 (2.4.2)
    Date/Time:       2013-07-12 08:36:29.184 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8218 sec
    Crashes Since Last Report:           46
    Per-App Interval Since Last Report:  2642 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      156B85D5-BE04-F1BD-C3EE-5063704C424C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
        __TEXT                 0000000000001000-0000000000beb000 [ 11.9M] r-x/rwx SM=COW  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Application Specific Information:
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x98cd5a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x99f0fb2f pthread_kill + 101
    2   libsystem_c.dylib                       0x99f465f3 __abort + 199
    3   libsystem_c.dylib                       0x99f4652c abort + 232
    4   com.apple.logic.pro                     0x003e6729 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842985
    5   libsystem_c.dylib                       0x99efa8cb _sigtramp + 43
    6   com.reFX.Nexus                          0x21ad04ed CFileList::getAllFileNames() + 29
    7   ???                                     0x21f7dfa4 0 + 569892772
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98cd69ae kevent + 10
    1   libdispatch.dylib                       0x9132fc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9132f7a9 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x98cd37d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98cd2cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x96b29f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x96b2f95f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x96b2f01a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x96b2ee8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x99a9837a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x99afc448 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99afc3cb __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x98cd5be6 __select + 10
    1   com.apple.CoreFoundation                0x96b73650 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x98cd58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99f13280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99f99095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b403a9 MDFileIOThread_IsBusy + 3593
    4   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x98cd37d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98cd2cb0 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0138322d XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3   com.apple.audio.midi.CoreMIDI           0x013a0ae0 MIDIProcess::RunMIDIInThread() + 144
    4   com.apple.audio.midi.CoreMIDI           0x013a6c48 MIDIProcess::MIDIInPortThread::Run() + 24
    5   com.apple.audio.midi.CoreMIDI           0x01384805 XThread::RunHelper(void*) + 17
    6   com.apple.audio.midi.CoreMIDI           0x013842ee CAPThread::Entry(CAPThread*) + 196
    7   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x98cd58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99f132e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99f13572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x929616ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x92961184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9296140d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x929471a3 TimerThread + 324
    7   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 13:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x98cd5c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x99f98a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x99f9891e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x907b1c2d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x99afc448 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99afc3cb __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0xbfff99ac  edx: 0x98cd5a6a
      edi: 0xacd78a28  esi: 0x00000006  ebp: 0xbfff99c8  esp: 0xbfff99ac
       ss: 0x00000023  efl: 0x00000206  eip: 0x98cd5a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x99f65780
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro (9.1.8 - 1700.67) <D8F173FC-C08A-5AF3-A7DD-ECFFDB6A8877> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe85000 -   0xeb8fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <4A75EC0F-CD9B-99B7-187C-FAD6560734D7> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xec7000 -   0xef8ff3  com.apple.musicaudiodataservices (1.1 - 251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf08000 -   0xf0afff  com.apple.ExceptionHandling (1.5 - 10) <D565F065-B45F-37FF-BA46-C675F95BBC00> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf10000 -   0xf6eff3  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <A1CB744D-B391-438C-28DE-2CABB594E4A9> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xf86000 -  0x11bfff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12d9000 -  0x1353fff  com.apple.music.apps.MACore (9.1.8 - 477.58) <53D4EB61-BFD7-ADA1-217C-BBEA1F38DA80> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1375000 -  0x13bdffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <CE34882B-8B96-3376-9451-592BE9A0D04F> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13e2000 -  0x1438ff7  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <D93A5C62-91A1-2D04-A715-5805EBEF693B> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1451000 -  0x186bfeb  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <D98859D6-BA99-5073-49B7-44B57F4FE211> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a92000 -  0x1b74feb  com.apple.music.apps.OMF (9.1.8 - 109.7) <869B8C49-7726-C45F-E301-A21EAE7A3B3B> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b8b000 -  0x21dcfe3  com.apple.music.apps.MADSP (9.1.8 - 588.98) <7BEB4983-28A6-8808-2B8D-A48F0A3F0111> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28d3000 -  0x28f4ff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <FEEA3128-4A7E-7FDD-0E7E-BFC9554CA78B> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28fe000 -  0x2977ff7  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <3396D969-32DF-0446-8E3D-F2FE82B23CD8> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x298d000 -  0x29aeff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <D058F550-BB20-ABD6-51E8-3001AE32A6E1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29b5000 -  0x29baff7  com.apple.music.apps.MAResources (9.1.8 - 212.66) <985579E4-F9E5-F7C6-39C8-FC294A330A2A> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29bf000 -  0x29ecff3  com.apple.audio.CoreAudioKit (1.6.5 - 1.6.5) <42BE7C8C-9EF9-3F12-8827-961B349C5B31> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29ff000 -  0x2a0fff7  com.apple.AERegistration (1.2 - 401) <4FEFA52A-BF2E-2BCC-0124-4E3653B88D95> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a25000 -  0x2a31ff3  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <FB0DE08A-CFEB-7039-796A-F05E8FE0DA11> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a3b000 -  0x2af1fff  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <FF7A5441-B41F-B937-9269-29C589FE6BFF> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2b0c000 -  0x2b84fe3  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <77E17BDE-E079-7A68-621C-2947475D0402> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bed000 -  0x2bf8ff7  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <77A2C3F7-3530-3D65-4247-D520A1C1F487> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bfe000 -  0x2c12ff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <74AD8812-DB1B-1845-B389-ACB0FC255ECB> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c26000 -  0x2d45ffb  com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2df6000 -  0x2f42ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x2fbe000 -  0x305affc  com.apple.MobileMe (9 - 1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x30ba000 -  0x3165fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x31a9000 -  0x31bfffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x31c8000 -  0x3e5dff3  com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x473a000 -  0x475fffa  com.apple.prokit.LionPanels (7.3.2 - 1944.10) <C3E4CAA0-A1F7-3DF4-8BBC-9D6A7CF2EB5E> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x47d2000 -  0x47dfff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5700000 -  0x5780fff  com.apple.iLifeMediaBrowser (2.7.4 - 546.7) <130581CE-0699-3524-B487-726353FDDF96> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10d8e000 - 0x10e4cff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x122e4000 - 0x122e9fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1231d000 - 0x12325ff7  com.apple.proapps.mrcheckpro (1.4 - 397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x12fcb000 - 0x1315fffa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13196000 - 0x13317fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x13349000 - 0x13354fff  libGPUSupport.dylib (8.9.2) <01E0F852-CBB7-3EE7-A2CD-79CB4A3EF2B5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x1335b000 - 0x13386ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1338f000 - 0x13397ffd  libcldcpuengine.dylib (2.2.16) <43E630D7-14C3-3455-9A4E-B5EBFA638C9D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x133a3000 - 0x133a5ff3  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <232E095C-4B63-5F35-5A7A-0CF691EB1101> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x133aa000 - 0x133acff3  com.apple.music.apps.common.resources (9.1.8 - 280.4) <1D975834-BD71-B0D0-D8CF-1BA760AA9488> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x133b1000 - 0x133b3ff3  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <191CB44E-25E3-0BAA-6E45-E4FC625432A0> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x133b8000 - 0x133baff3  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <2EEB43AB-D405-62D0-140B-0B887CE18A70> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x133bf000 - 0x133c1ff3  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <2E91FDD0-709D-AF8A-02C1-169C401D9A9D> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x133c6000 - 0x133c8ff3  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <CFDBF0D9-083A-F0A9-DA2E-7D5F6A6D249A> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x133cd000 - 0x133cfff3  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <3257B0C1-B4F6-E276-56E4-E226736A1371> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x133d4000 - 0x133d6ff3  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <53480C20-F2F1-A2D5-BDA6-E70F6B281A5F> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x133db000 - 0x133ddff3  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <8F63A05D-3A14-004C-246F-3D6B5EBEEA7E> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x133e2000 - 0x133e4ff3  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <BE781A59-67E2-FB1E-3F4E-B99D0D30C61C> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x133e9000 - 0x133ebff3  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <D80EB53C-5AFC-7AC6-44E8-7A23AEF023C3> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x133f0000 - 0x133f2ff3  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <80760949-9342-4C9F-CF3D-4C6333D024FE> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x133f7000 - 0x133f9ff3  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <F5393D5E-8BF1-6C37-ED93-5FACFD419DEB> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x137da000 - 0x137dcff3  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <AE07C5E6-1D57-D2BB-4942-80AACD51CD44> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x137e1000 - 0x137e3ff3  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <40F8A885-63FA-D784-78D9-9958EF4EEBF3> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x137e8000 - 0x137eaff3  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <C6EB6C33-138E-C992-14D1-B03D9EFEFB49> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x137ef000 - 0x137f1ff3  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <BCF98464-A2C8-D71F-87D5-FEFF35404932> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x137f6000 - 0x137f8ff3  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <199A76D9-1086-BC6C-68D0-B74431FAF415> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x149ab000 - 0x149adff3  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <2C6B75C7-E32A-B021-7119-E830E7F2E853> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x149b2000 - 0x149b4ff3  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <E8D4E3E6-8C6F-5D10-57DA-B7C0F71C35F9> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x15dbb000 - 0x15e39ff7 +com.eLicenser.POSAccess-DLL (1.12.2.0) <86346B72-3923-9F25-A6B7-4DE71931FC82> /Library/Application Support/eLicenser/*/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x1a141000 - 0x1a17bfff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.31) <0761249B-19FD-39DA-819E-C827BE16B0B8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1a187000 - 0x1a190fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <A4F09F97-11B7-3AB1-A1CC-026CBB0EE901> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x20a51000 - 0x20a52ff5 +cl_kernels (???) <8E3407FA-8F5B-40B9-BD9E-82934BAFCB0E> cl_kernels
    0x20a5f000 - 0x20a5ffff +cl_kernels (???) <8AA07E0C-7324-4D17-B647-B429B08DF4A5> cl_kernels
    0x20c00000 - 0x20c92fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x21a54000 - 0x21e63fc3 +com.reFX.Nexus (2.4.2 - 2.4.2) <CB29856E-0602-3904-A599-26FDDB615A26> /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    0x8e2fa000 - 0x8ec49ffb  com.apple.GeForceGLDriver (8.12.47 - 8.1.2) <ED7895B5-BF75-3BC8-A956-8E423FD02395> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe9a000 - 0x8fecce57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90010ffd  com.apple.audio.SoundManager (4.0 - 4.0) <6A0B4A5D-6320-37E4-A1CA-91189777848C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90011000 - 0x90018ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9003f000 - 0x90089ff7  com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9008a000 - 0x9008afff  com.apple.CoreServices (57 - 57) <83B793A6-720D-31F6-A76A-89EBB2644346> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9008b000 - 0x9008cfff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x9008d000 - 0x90112ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E947DC1-7985-3111-A864-58EDD6D955DC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90113000 - 0x9012aff4  com.apple.CoreMediaAuthoring (2.1 - 914) <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9012b000 - 0x9018cfff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9019c000 - 0x902cfff3  com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x902d0000 - 0x90338fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90339000 - 0x9039dff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9039e000 - 0x903bdff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9045c000 - 0x90468ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90469000 - 0x91025ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91026000 - 0x91312fff  com.apple.AOSKit (1.051 - 152.4) <31156351-70C4-381A-810D-8E5A937EF95C> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x91313000 - 0x9132afff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9132b000 - 0x9133dff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x91340000 - 0x91376ffb  com.apple.DebugSymbols (98 - 98) <D0293694-C381-30DF-8DD9-D1B04CD0E5F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91377000 - 0x913d1fff  com.apple.Symbolication (1.3 - 93) <4A794D1C-DE02-3183-87BF-0008A602E4D3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x913d2000 - 0x913d5ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x913d6000 - 0x91424ffb  libFontRegistry.dylib (100) <97D8F15F-F072-3AF0-8EF8-50C41781951C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91425000 - 0x91428ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91429000 - 0x9146eff7  com.apple.NavigationServices (3.7 - 200) <6AB1A00C-BC94-3889-BA95-40A454B720CE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9146f000 - 0x914cafff  com.apple.htmlrendering (77 - 1.1.4) <CD33B313-7E85-3AC0-9EFF-6B0C05F10135> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9192d000 - 0x91d29feb  com.apple.VideoToolbox (1.0 - 926.104) <4275B89E-F826-3F65-ACE1-89052A9CAC6B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x91d2a000 - 0x91d79ff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d7a000 - 0x91d7dff9  libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91dca000 - 0x91e05fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91e06000 - 0x91e10fff  libCSync.A.dylib (332) <86C5C84F-11EC-39C0-9FAC-A93FDEEC3117> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91e11000 - 0x91f5fff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x91f60000 - 0x91f67ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <48407521-A4A3-3D28-8784-29E36AA04804> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91f68000 - 0x921c1ff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x921c2000 - 0x9234bff7  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
    0x9237c000 - 0x923f7ff3  com.apple.CorePDF (2.2 - 2.2) <5A52A1CF-4801-3E6C-BF6E-E5E75A8DBD8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x923f8000 - 0x9241dff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <BBB53E4F-BCBA-3461-875F-8FA8E9157261> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9241e000 - 0x92422ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x92423000 - 0x9247aff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x924d3000 - 0x924e2fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x924e3000 - 0x924ebfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x924ec000 - 0x924edfff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x924ee000 - 0x924f7ff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x924f8000 - 0x92506fff  libxar.1.dylib (105) <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x92507000 - 0x92515ff3  libsystem_network.dylib (77.10) <11CAF6A8-17CF-3178-9348-57C5ED494BA8> /usr/lib/system/libsystem_network.dylib
    0x92519000 - 0x92631ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <D871D730-1D5C-34E7-98C7-0FF09964E618> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x92632000 - 0x92726ff3  com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92727000 - 0x9275effa  com.apple.LDAPFramework (2.4.28 - 194.5) <23668AB5-68EA-37D2-978E-C9EF22BF8C0C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9275f000 - 0x927ffff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92800000 - 0x92830ff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
    0x92831000 - 0x92873ff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x92874000 - 0x92874fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x92875000 - 0x9289affb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9289e000 - 0x92ba3ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92ba4000 - 0x92c3bff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c3c000 - 0x933d7ff3  libclh.dylib (4.0.3 - 4.0.3) <6BAF7FE7-3CF3-388B-8C64-43D4F8C6493C> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x933d8000 - 0x93401ff7  libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93402000 - 0x93410fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93411000 - 0x9342dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93432000 - 0x93433fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93434000 - 0x93456fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x93457000 - 0x93475ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9347c000 - 0x93480ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93481000 - 0x93484ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x93485000 - 0x9348fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x93490000 - 0x934c3ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x934c4000 - 0x934c5ffd  libunc.dylib (25) <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x934c6000 - 0x934f1fff  com.apple.shortcut (2.2 - 2.2) <6E4DD034-A28E-3419-B197-7BB13D2B7C3E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x934f2000 - 0x93567ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93568000 - 0x93585ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x93586000 - 0x935caff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x935cb000 - 0x93631ffc  com.apple.ISSupport (1.9.8 - 56) <B9F397ED-4F1F-3264-869E-F055EB87C3B8> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93632000 - 0x938a4ff3  com.apple.RawCamera.bundle (4.07 - 696) <6D4C54D0-2C3A-3364-B7D1-2148B9D30C07> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x938a5000 - 0x939a3ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x939a4000 - 0x939a6fff  com.apple.securityhi (4.0 - 55002) <79E3B880-3AB7-3BF3-9CDF-117A45599545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x939a7000 - 0x93a20ffb  libType1Scaler.dylib (101.1) <C12C5169-4E91-3148-934F-8A9CAB8546C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x93a21000 - 0x93b12ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93b13000 - 0x93b44fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93b49000 - 0x93b76ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93b77000 - 0x93b78ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93b79000 - 0x93bc1ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93bc2000 - 0x93c76fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c77000 - 0x93db2ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93db3000 - 0x94061ffb  com.apple.MediaToolbox (1.0 - 926.104) <DD264DFD-9AFB-38E2-A44C-B463DCB721A0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94062000 - 0x9406cfff  com.apple.DisplayServicesFW (2.7.2 - 357) <5042CDAE-5580-3204-B675-745DA083E7AA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x940c4000 - 0x940d0ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x940d1000 - 0x940eaffb  com.apple.frameworks.preferencepanes (15.1 - 15.1) <D788C8BE-5A13-3EA3-93FA-9B5CEEFE249B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x940eb000 - 0x941f6ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x941f7000 - 0x945dafff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x945db000 - 0x945dbfff  com.apple.Carbon (154 - 155) <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x945dc000 - 0x945e9ff7  com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x945ea000 - 0x9461dfff  libssl.0.9.8.dylib (47.1) <1725A506-BD80-39D5-8EE8-78D2FBBE194C> /usr/lib/libssl.0.9.8.dylib
    0x9461e000 - 0x9484efff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9484f000 - 0x94884fff  libTrueTypeScaler.dylib (84.6) <B7DB746B-7A61-38EF-8CA7-408ED9C14A02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94885000 - 0x949fdff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x949fe000 - 0x94a0eff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x94a0f000 - 0x94a18fff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a62000 - 0x94b49ff7  libxml2.2.dylib (22.3) <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x94b4a000 - 0x94b58ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94b59000 - 0x94b59fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x94b5a000 - 0x94bb4ff3  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94bb5000 - 0x94c31ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94c35000 - 0x94c4bfff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94c4c000 - 0x94ca7ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94ca8000 - 0x94cb1ffe  com.apple.aps.framework (3.0 - 3.0) <26A02202-9CCA-37A5-AD26-234F55D51471> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x94cb2000 - 0x94cbdffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <ABC37C4F-4B9E-327D-90C0-1682526371F4> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94cbe000 - 0x94cc2fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94cc3000 - 0x94edafff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94edb000 - 0x95175ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95176000 - 0x9517afff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9517b000 - 0x951f5ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x951f6000 - 0x95291fff  com.apple.CoreSymbolication (3.0 - 117) <2BBBE224-301D-3931-AEF2-DD967A6E9172> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95292000 - 0x95292ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95293000 - 0x956d5fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x956d6000 - 0x95773ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <639CF802-BE94-39C5-AC97-B5B42FF910C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95774000 - 0x95786fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x95789000 - 0x959f6ffb  com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x959f7000 - 0x95a51ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95a52000 - 0x95a65ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95a66000 - 0x960f2ff3  com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x960f3000 - 0x9611eff9  com.apple.framework.Apple80211 (8.4 - 840.22.1) <DBC31BEB-B771-315F-852D-66ADC3BD75A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9611f000 - 0x9611ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96166000 - 0x961b2fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96255000 - 0x96313ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <B534DE6A-3AF0-307C-B274-A4FCFC5BC696> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96314000 - 0x96314ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x96315000 - 0x9635cff3  com.apple.CoreMedia (1.0 - 926.104) <D0E3BE86-12ED-31BE-816F-E72D757A9F2F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96362000 - 0x96438fff  com.apple.DiscRecording (7.0 - 7000.2.4) <528052A0-FCFB-3867-BCDF-EE0F8A998C1C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9643b000 - 0x9647dffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9647e000 - 0x9655ffff  libcrypto.0.9.8.dylib (47.1) <E4820342-4F42-3DEB-90DB-DE5A66C5585E> /usr/lib/libcrypto.0.9.8.dylib
    0x96560000 - 0x96560fff  com.apple.Cocoa (6.7 - 19) <01AA482A-677A-31CA-9EC9-05C57FDDE427> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96561000 - 0x9657efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x9657f000 - 0x9673bffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x9673c000 - 0x96849ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9688a000 - 0x96997057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96998000 - 0x969fefff  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
    0x969ff000 - 0x96af7ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x96af8000 - 0x96ce0ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96ce1000 - 0x97099ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9709a000 - 0x9716eff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9716f000 - 0x971aeff7  com.apple.bom (12.0 - 192) <D245FA22-3B6C-3872-B485-BE84AD9098B2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x971af000 - 0x971d4ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x971d5000 - 0x97267ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97268000 - 0x9726bff3  com.apple.AppleSystemInfo (2.0 - 2) <4DB3FD8F-655E-3F96-97BC-040B33044A34> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9726c000 - 0x972cefff  libc++.1.dylib (65.1) <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x972cf000 - 0x97367fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <8DEEED08-A4B3-3B08-8C2A-BDDBF005B43F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97368000 - 0x973ccff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x973cd000 - 0x973d3fff  com.apple.phonenumbers (1.1 - 47) <0D9B4A12-C1D3-374C-B320-11806C0CCF2A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x973d4000 - 0x977f1fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x977f2000 - 0x9790effb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9790f000 - 0x97916fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x97917000 - 0x97919fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9791a000 - 0x9792ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97930000 - 0x97940ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <C6076983-A02E-389E-BFC6-008EECC4C896> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97941000 - 0x97965fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97966000 - 0x9869eff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.31) <A0445D02-A1C1-3D40-8219-D8EA6B28811C> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9869f000 - 0x9869ffff  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
    0x986a0000 - 0x986a2ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x986a3000 - 0x986e5fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x986e6000 - 0x986f2ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x986f3000 - 0x986fafff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x98702000 - 0x98702fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98703000 - 0x98704fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x98705000 - 0x98862ffb  com.apple.QTKit (7.7.1 - 2599.31) <B9AE5675-22B0-3AA9-903F-2195DA0B04F5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98863000 - 0x988aaff7  com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x988ab000 - 0x988e0ff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x988e1000 - 0x98ba1ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98ba2000 - 0x98babfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98bac000 - 0x98bafff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98cc1000 - 0x98cdbffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x98cdc000 - 0x98ce0fff  com.apple.CommonPanels (1.2.5 - 94) <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98ce1000 - 0x98d05fff  com.apple.PerformanceAnalysis (1.16 - 16) <7B7EAA0B-5208-32DB-B083-D4B62F37EC46> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98d06000 - 0x98d06ffe  com.apple.AOSMigrate (1.0 - 1) <862E23D4-A796-3D0C-89E6-0D026E777EC7> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x98d07000 - 0x98d0bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x98d0c000 - 0x98d0dfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x98d0e000 - 0x98d2effd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x98d2f000 - 0x98ddeff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x98ddf000 - 0x9905bff7  com.apple.QuickTime (7.7.1 - 2599.31) <3839E1F3-7948-3E68-9AE1-A0CEE8C59212> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9905c000 - 0x99066fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99067000 - 0x990cfff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x990d0000 - 0x991cdff7  com.apple.DiskImagesFramework (10.8.3 - 345) <B2CBC585-D206-3155-BB33-4359271AC444> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x991ce000 - 0x991dbff7  com.apple.AppleFSCompression (49 - 1.0) <9A066D13-6E85-36FC-8B58-FD46E51751CE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99a5e000 - 0x99d7eff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99d7f000 - 0x99d8afff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x99d8b000 - 0x99dcbfff  com.apple.MediaKit (14 - 687) <8735A76E-7766-33F5-B3D2-86630070A1BA> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x99dcc000 - 0x99dd6fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x99dd7000 - 0x99e25ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99e30000 - 0x99e49fff  com.apple.Kerberos (2.0 - 1) <8413EDD3-7E01-3D47-83FD-C14A5235DCD2> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99e4a000 - 0x99e4afff  com.apple.ApplicationServices (45 - 45) <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99e56000 - 0x99e5cfff  com.apple.print.framework.Print (8.0 - 258) <3E10C488-C390-33BD-8A4F-568E3021811D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99e5d000 - 0x99e72fff  com.apple.ImageCapture (8.0 - 8.0) <F681CA5B-2871-32CF-8E9F-9220EB387407> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99e73000 - 0x99e73fff  libSystem.B.dylib (169.3) <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x99e74000 - 0x99e7afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x99e7b000 - 0x99eeaffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99eeb000 - 0x99ef7ff7  com.apple.NetAuth (4.0 - 4.0) <52D23F12-0718-341D-B9DF-16C814022250> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x99ef8000 - 0x99fb5feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x99fb6000 - 0x99ff8fff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x99ff9000 - 0x9a049ff7  com.apple.CoreMediaIO (308.0 - 4155.4) <E2FF59A9-3728-3D17-A1AD-84DC1BDA2146> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9a04a000 - 0x9a04cffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a04d000 - 0x9a054ff3  com.apple.NetFS (5.0 - 4.0) <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a055000 - 0x9a0aefff  com.apple.QuickLookFramework (4.0 - 555.5)

    This is the actaul Auvaltool problem
    Process:         auvaltool [2666]
    Path:            /usr/bin/auvaltool
    Identifier:      auvaltool
    Version:         251.14.1
    Code Type:       X86 (Native)
    Parent Process:  Logic Pro [2629]
    User ID:         501
    PlugIn Path:       /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    PlugIn Identifier: com.reFX.Nexus
    PlugIn Version:    2.4.2 (2.4.2)
    Date/Time:       2013-07-12 09:24:48.718 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          9635 sec
    Crashes Since Last Report:           54
    Per-App Crashes Since Last Report:   22
    Anonymous UUID:                      156B85D5-BE04-F1BD-C3EE-5063704C424C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /usr/bin/auvaltool
        VM_ALLOCATE            0000000000001000-000000000004a000 [  292K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.reFX.Nexus                          0x004794ed CFileList::getAllFileNames() + 29
    1   ???                                     0x02c12fa4 0 + 46215076
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98cd69ae kevent + 10
    1   libdispatch.dylib                       0x9132fc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9132f7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x008297c0  ecx: 0x00000000  edx: 0x00000000
      edi: 0x007f0828  esi: 0x008297c0  ebp: 0x02c12fa4  esp: 0xbffb2ac0
       ss: 0x00000023  efl: 0x00010202  eip: 0x004794ed   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 1
    Binary Images:
       0x4a000 -    0x67ff7  auvaltool (251.14.1) <4211EF34-B62D-3258-B21C-ED3B57756E89> /usr/bin/auvaltool
      0x1b0000 -   0x22eff7 +com.eLicenser.POSAccess-DLL (1.12.2.0) <86346B72-3923-9F25-A6B7-4DE71931FC82> /Library/Application Support/eLicenser/*/Synsoacc.bundle/Contents/MacOS/Synsoacc
      0x3fd000 -   0x80cfc3 +com.reFX.Nexus (2.4.2 - 2.4.2) <CB29856E-0602-3904-A599-26FDDB615A26> /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    0x8fe49000 - 0x8fe7be57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90010ffd  com.apple.audio.SoundManager (4.0 - 4.0) <6A0B4A5D-6320-37E4-A1CA-91189777848C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90011000 - 0x90018ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9008a000 - 0x9008afff  com.apple.CoreServices (57 - 57) <83B793A6-720D-31F6-A76A-89EBB2644346> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9008b000 - 0x9008cfff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x9008d000 - 0x90112ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E947DC1-7985-3111-A864-58EDD6D955DC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9012b000 - 0x9018cfff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x902d0000 - 0x90338fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90339000 - 0x9039dff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9039e000 - 0x903bdff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9045c000 - 0x90468ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90469000 - 0x91025ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91313000 - 0x9132afff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9132b000 - 0x9133dff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x91340000 - 0x91376ffb  com.apple.DebugSymbols (98 - 98) <D0293694-C381-30DF-8DD9-D1B04CD0E5F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91377000 - 0x913d1fff  com.apple.Symbolication (1.3 - 93) <4A794D1C-DE02-3183-87BF-0008A602E4D3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x913d2000 - 0x913d5ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x913d6000 - 0x91424ffb  libFontRegistry.dylib (100) <97D8F15F-F072-3AF0-8EF8-50C41781951C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91425000 - 0x91428ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91429000 - 0x9146eff7  com.apple.NavigationServices (3.7 - 200) <6AB1A00C-BC94-3889-BA95-40A454B720CE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9146f000 - 0x914cafff  com.apple.htmlrendering (77 - 1.1.4) <CD33B313-7E85-3AC0-9EFF-6B0C05F10135> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91d2a000 - 0x91d79ff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91dca000 - 0x91e05fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91e11000 - 0x91f5fff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x921c2000 - 0x9234bff7  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
    0x9241e000 - 0x92422ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x92423000 - 0x9247aff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x924d3000 - 0x924e2fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x924e3000 - 0x924ebfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x924ec000 - 0x924edfff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x924ee000 - 0x924f7ff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x924f8000 - 0x92506fff  libxar.1.dylib (105) <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x92507000 - 0x92515ff3  libsystem_network.dylib (77.10) <11CAF6A8-17CF-3178-9348-57C5ED494BA8> /usr/lib/system/libsystem_network.dylib
    0x9275f000 - 0x927ffff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92831000 - 0x92873ff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x92874000 - 0x92874fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x92875000 - 0x9289affb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9289e000 - 0x92ba3ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92ba4000 - 0x92c3bff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93402000 - 0x93410fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93411000 - 0x9342dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93432000 - 0x93433fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93434000 - 0x93456fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x93457000 - 0x93475ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9347c000 - 0x93480ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93481000 - 0x93484ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x93485000 - 0x9348fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x93490000 - 0x934c3ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x934c4000 - 0x934c5ffd  libunc.dylib (25) <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x934f2000 - 0x93567ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93568000 - 0x93585ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x93586000 - 0x935caff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x938a5000 - 0x939a3ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x939a4000 - 0x939a6fff  com.apple.securityhi (4.0 - 55002) <79E3B880-3AB7-3BF3-9CDF-117A45599545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93a21000 - 0x93b12ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93b13000 - 0x93b44fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93b49000 - 0x93b76ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93b77000 - 0x93b78ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93b79000 - 0x93bc1ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93bc2000 - 0x93c76fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c77000 - 0x93db2ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x940c4000 - 0x940d0ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x940eb000 - 0x941f6ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x941f7000 - 0x945dafff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x945db000 - 0x945dbfff  com.apple.Carbon (154 - 155) <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94885000 - 0x949fdff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94a0f000 - 0x94a18fff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a62000 - 0x94b49ff7  libxml2.2.dylib (22.3) <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x94b4a000 - 0x94b58ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94b59000 - 0x94b59fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x94bb5000 - 0x94c31ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94c35000 - 0x94c4bfff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94cbe000 - 0x94cc2fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94cc3000 - 0x94edafff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95176000 - 0x9517afff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9517b000 - 0x951f5ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x951f6000 - 0x95291fff  com.apple.CoreSymbolication (3.0 - 117) <2BBBE224-301D-3931-AEF2-DD967A6E9172> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95292000 - 0x95292ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95293000 - 0x956d5fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95774000 - 0x95786fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x959f7000 - 0x95a51ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95a52000 - 0x95a65ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9611f000 - 0x9611ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96166000 - 0x961b2fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96255000 - 0x96313ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <B534DE6A-3AF0-307C-B274-A4FCFC5BC696> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96314000 - 0x96314ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x9643b000 - 0x9647dffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x96561000 - 0x9657efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x9657f000 - 0x9673bffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x9673c000 - 0x96849ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9688a000 - 0x96997057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96998000 - 0x969fefff  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
    0x969ff000 - 0x96af7ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x96af8000 - 0x96ce0ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96ce1000 - 0x97099ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9709a000 - 0x9716eff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9716f000 - 0x971aeff7  com.apple.bom (12.0 - 192) <D245FA22-3B6C-3872-B485-BE84AD9098B2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x971af000 - 0x971d4ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x971d5000 - 0x97267ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9726c000 - 0x972cefff  libc++.1.dylib (65.1) <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x972cf000 - 0x97367fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <8DEEED08-A4B3-3B08-8C2A-BDDBF005B43F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97368000 - 0x973ccff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x973d4000 - 0x977f1fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x977f2000 - 0x9790effb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9790f000 - 0x97916fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x97917000 - 0x97919fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9791a000 - 0x9792ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97930000 - 0x97940ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <C6076983-A02E-389E-BFC6-008EECC4C896> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97941000 - 0x97965fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9869f000 - 0x9869ffff  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
    0x986a0000 - 0x986a2ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x986a3000 - 0x986e5fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x986e6000 - 0x986f2ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x986f3000 - 0x986fafff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x98703000 - 0x98704fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x988e1000 - 0x98ba1ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98ba2000 - 0x98babfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98bac000 - 0x98bafff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98cc1000 - 0x98cdbffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x98cdc000 - 0x98ce0fff  com.apple.CommonPanels (1.2.5 - 94) <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98ce1000 - 0x98d05fff  com.apple.PerformanceAnalysis (1.16 - 16) <7B7EAA0B-5208-32DB-B083-D4B62F37EC46> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98d07000 - 0x98d0bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x98d0c000 - 0x98d0dfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x98d0e000 - 0x98d2effd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x98d2f000 - 0x98ddeff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9905c000 - 0x99066fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99067000 - 0x990cfff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x991ce000 - 0x991dbff7  com.apple.AppleFSCompression (49 - 1.0) <9A066D13-6E85-36FC-8B58-FD46E51751CE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99a5e000 - 0x99d7eff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99d7f000 - 0x99d8afff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x99dcc000 - 0x99dd6fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x99dd7000 - 0x99e25ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99e30000 - 0x99e49fff  com.apple.Kerberos (2.0 - 1) <8413EDD3-7E01-3D47-83FD-C14A5235DCD2> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99e4a000 - 0x99e4afff  com.apple.ApplicationServices (45 - 45) <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99e56000 - 0x99e5cfff  com.apple.print.framework.Print (8.0 - 258) <3E10C488-C390-33BD-8A4F-568E3021811D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99e5d000 - 0x99e72fff  com.apple.ImageCapture (8.0 - 8.0) <F681CA5B-2871-32CF-8E9F-9220EB387407> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99e73000 - 0x99e73fff  libSystem.B.dylib (169.3) <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x99e74000 - 0x99e7afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x99e7b000 - 0x99eeaffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99eeb000 - 0x99ef7ff7  com.apple.NetAuth (4.0 - 4.0) <52D23F12-0718-341D-B9DF-16C814022250> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x99ef8000 - 0x99fb5feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9a04a000 - 0x9a04cffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a04d000 - 0x9a054ff3  com.apple.NetFS (5.0 - 4.0) <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a0af000 - 0x9a208ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a209000 - 0x9a20cfff  com.apple.help (1.3.2 - 42) <2B727B38-0E18-3108-9735-F65958924A91> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9a20d000 - 0x9a4b0ff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9a4b1000 - 0x9a55bfff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9a58c000 - 0x9a5a9fff  libCRFSuite.dylib (33) <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x9a5aa000 - 0x9a5d7ffe  libsystem_m.dylib (3022.6) <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x9a5d8000 - 0x9a5d8fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9a5d9000 - 0x9a5dafff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x9a5db000 - 0x9a604fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9a605000 - 0x9a631ff7  libsystem_info.dylib (406.17) <2731CC70-DF2E-3BD1-AE73-A3B83C531756> /usr/lib/system/libsystem_info.dylib
    0x9a632000 - 0x9a689ff3  com.apple.HIServices (1.20 - 417) <B8410ABC-E0DB-31EB-B923-17F3B65B5F4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    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: 2838
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=118.6M resident=90.8M(77%) swapped_out_or_unallocated=27.8M(23%)
    Writable regions: Total=77.2M written=10.0M(13%) resident=13.5M(18%) swapped_out=0K(0%) unallocated=63.6M(82%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1560K
    MALLOC                             50.2M
    MALLOC guard page                    48K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Memory tag=35                      7404K
    Stack                              66.5M
    VM_ALLOCATE                        16.3M
    __DATA                             5512K
    __DATA/__OBJC                       120K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         30.9M
    __OBJC                             1568K
    __OBJC/__DATA                         4K
    __PAGEZERO                            4K
    __TEXT                             87.7M
    __UNICODE                           544K
    mapped file                       102.7M
    shared memory                       556K
    ===========                      =======
    TOTAL                             372.0M
    Model: iMac13,1, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.9f5
    Graphics: NVIDIA GeForce GT 640M, NVIDIA GeForce GT 640M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Elements 1042, 0x1058  (Western Digital Technologies, Inc.), 0x1042, 0x14a00000 / 4
    USB Device: eLicenser, 0x0819, 0x0101, 0x14300000 / 5
    USB Device: ION Laptop Piano, 0x15e4, 0x0113, 0x14400000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2412, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828b, 0x1d181300 / 6
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8511, 0x1a110000 / 3

  • Problem with SystemUIServer

    Greetings:
    I am having a problem with SystemUIServer - it keeps crashing. The error log is displayed below:
    Process: SystemUIServer [67034]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier: com.apple.systemuiserver
    Version: 1.5.5 (248.9)
    Build Info: SystemUIServer-2480900~13
    Code Type: X86 (Native)
    Parent Process: launchd [65]
    Date/Time: 2009-05-30 04:29:04.022 -0400
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 20D97D81-51AD-4556-B42E-1E666316B8AC
    Exception Type: EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXCI386DIV (divide by zero)
    Crashed Thread: 6
    Thread 0:
    0 libSystem.B.dylib 0x96995286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9699ca7c mach_msg + 72
    2 com.apple.CoreGraphics 0x95ee2f09 _CGSSetWindowShapeInline + 232
    3 com.apple.CoreGraphics 0x95e2b7fb CGSShapeWindow + 1242
    4 com.apple.CoreGraphics 0x95e2b31c CGSSetWindowShapeWithWeighting + 76
    5 com.apple.AppKit 0x932018ee _NXPlaceWindow + 183
    6 com.apple.AppKit 0x93139829 -[NSWindow _setFrame:updateBorderViewSize:] + 614
    7 com.apple.AppKit 0x93139166 -[NSWindow _oldPlaceWindow:] + 1146
    8 com.apple.AppKit 0x93138a23 -[NSWindow _setFrameCommon:display:stashSize:] + 1569
    9 com.apple.AppKit 0x931383fa -[NSWindow setFrame:display:] + 78
    10 com.apple.AppKit 0x930ddd40 _NXAllocateImageCache + 2196
    11 com.apple.AppKit 0x930dd265 -[NSCachedImageRep _initWithSize:depth:separate:alpha:allowDeep:] + 323
    12 com.apple.AppKit 0x930e0497 -[NSImage _focusOnCache:creatingWithSizeInPixels:] + 659
    13 com.apple.AppKit 0x930dffe5 -[NSImage _cacheRepresentation:toSizeInPixels:stayFocused:] + 128
    14 com.apple.AppKit 0x930d87f7 -[NSImage drawInRect:fromRect:operation:fraction:] + 5345
    15 com.apple.AppKit 0x9351bbb3 -[NSImage _createCGImageAndRect:forDrawingInRect:inReferenceContext:] + 1928
    16 com.apple.AppKit 0x9351c078 -[NSImage _copyCGImageAndRect:needsFlip:isCached:forDrawingInRect:inReferenceContext:requ ireNoFlipNecessary:] + 883
    17 com.apple.AppKit 0x9351de8c -[NSImage _drawMappingAlignmentRectToRect:withState:backgroundStyle:operation:fraction:fl ip:] + 1395
    18 com.apple.AppKit 0x93457296 NSDrawImage + 446
    19 com.apple.AppKit 0x9311a901 -[NSCell drawInteriorWithFrame:inView:] + 657
    20 ...apple.menuextra.TimeMachine 0x14f9d39b _HandleProgressNotify + 11277
    21 ...apple.menuextra.TimeMachine 0x14f9d499 _HandleProgressNotify + 11531
    22 com.apple.AppKit 0x9314c22c -[NSView _drawRect:clip:] + 3853
    23 com.apple.AppKit 0x9314ad23 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    24 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    25 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    26 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    27 com.apple.AppKit 0x93149679 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    28 com.apple.AppKit 0x93231929 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 340
    29 com.apple.AppKit 0x93145adf -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    30 com.apple.AppKit 0x930864b3 -[NSView displayIfNeeded] + 933
    31 com.apple.AppKit 0x93086061 -[NSWindow displayIfNeeded] + 189
    32 com.apple.AppKit 0x93085e84 _handleWindowNeedsDisplay + 436
    33 com.apple.CoreFoundation 0x91a5d942 __CFRunLoopDoObservers + 466
    34 com.apple.CoreFoundation 0x91a5ec9c CFRunLoopRunSpecific + 844
    35 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    36 com.apple.HIToolbox 0x966bb28c RunCurrentEventLoopInMode + 283
    37 com.apple.HIToolbox 0x966bafde ReceiveNextEventCommon + 175
    38 com.apple.HIToolbox 0x966baf19 BlockUntilNextEventMatchingListInMode + 106
    39 com.apple.AppKit 0x93083d0d _DPSNextEvent + 657
    40 com.apple.AppKit 0x930835c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41 com.apple.AppKit 0x9307c5fb -[NSApplication run] + 795
    42 com.apple.systemuiserver 0x00005d84 0x1000 + 19844
    43 com.apple.systemuiserver 0x00005886 0x1000 + 18566
    Thread 1:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 ...e.ImageCaptureNotifications 0x000d4e9e _StaticProcessIOObjectsArray + 95
    3 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    4 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x969c59c6 kevent + 10
    1 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    2 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96995286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9699ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a5f04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x92fe25f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x92fe2480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    7 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x903c8942 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x9038128a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x903d48f8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.apple.systemuiserver 0x0002d837 0x1000 + 182327
    6 com.apple.Foundation 0x90380e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x903809b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    9 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x91d9aa09 fefragmentthread + 54
    3 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    4 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 6 Crashed:
    0 com.apple.systemuiserver 0x0002595d 0x1000 + 149853
    1 com.apple.systemuiserver 0x00025bea 0x1000 + 150506
    2 com.apple.systemuiserver 0x000267c6 0x1000 + 153542
    3 com.apple.DiskArbitration 0x9418a6df _DADispatchCallback + 273
    4 com.apple.DiskArbitration 0x9418a2d9 _DASessionCallback + 309
    5 com.apple.CoreFoundation 0x91a3b1c5 __CFMachPortPerform + 117
    6 com.apple.CoreFoundation 0x91a5f888 CFRunLoopRunSpecific + 3896
    7 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    8 com.apple.systemuiserver 0x00026a6c 0x1000 + 154220
    9 com.apple.Foundation 0x90380e0d -[NSThread main] + 45
    10 com.apple.Foundation 0x903809b4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    12 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
    eax: 0x00007e9b ebx: 0x0055cc60 ecx: 0x00000000 edx: 0x00000000
    edi: 0x0059cd20 esi: 0x0059c450 ebp: 0xb033b468 esp: 0xb033b200
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002595d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x15023000
    Binary Images:
    0x1000 - 0x52ff3 com.apple.systemuiserver 1.5.5 (248.9) <f8a92b652c2aa54f46f8f5c32449c1eb> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x6a000 - 0x6efff com.apple.framework.SystemUIPlugin 1.5 (20) <693b3808ff85a09a6c5fb1de9a24cc3f> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
    0x78000 - 0xa3fff com.apple.framework.NetworkConfig 2.3 (2.3) <d31639730be1f32d1ee71dbd8ffcf09e> /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
    0xcc000 - 0xd8ffb com.apple.ImageCaptureNotifications 4.0.1 (4.0.1) /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
    0xf6000 - 0xfafff com.apple.iPod 1.5 (15) <808d4802c643ebbf266f508935200c99> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x101000 - 0x103fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x10a000 - 0x1d3fe5 com.apple.DiscRecording 4.0.5 (4050.4.1) <503c77a4da92eb3262d3fbfe46e74f20> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x23e000 - 0x337fe0 com.apple.DiskImagesFramework 10.5.5 (199) <221119fb6b335af96fb0e85a9403cbc5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x39d000 - 0x3c7ff8 com.apple.framework.Apple80211 5.2.7 (527.2) <5982190f9caa25fca18b8753671d0d64> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x3d8000 - 0x3e2ffc com.apple.framework.AppleTalk 1.2.0 (???) <e8d0dc99744c2eb3aafefe463d3daf43> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x3e9000 - 0x41ffff com.apple.MediaKit 9.1 (401) <62f8d49f7d7eb4096d74377d0b7b51d5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x430000 - 0x45bffb libcurl.4.dylib ??? (???) <92c23039fbe46c86a58d55d4b9d2d3e2> /usr/lib/libcurl.4.dylib
    0x4aa000 - 0x4adfff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x4b3000 - 0x4b8fff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14e6e000 - 0x14e7fffa com.apple.menuextra.airport 5.3.2 (532.3) <dde78ca7918d3edfb70b8b6fe57d2cb2> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    0x14e8a000 - 0x14e95ff7 com.apple.menuextra.bluetooth 2.1.6 (2.1.6f8) <8ecdc9f49ac25d3053470e757298fa13> /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
    0x14e9f000 - 0x14f13ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x14f61000 - 0x14f7dfff com.apple.BluetoothUI 2.1.6 (2.1.6f8) <89d3e2503e2255d40fc25886bb4a8019> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x14f98000 - 0x14fa4ff7 com.apple.menuextra.TimeMachine 10.5.7 (10.5) <ba85317e0c9608ccdba50230c833d2c2> /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
    0x14ff1000 - 0x14ff6ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <1c2a016b2ac25fe8b7575f51e49b9334> /usr/lib/dyld
    0x90003000 - 0x90027feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x9005f000 - 0x90083fff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x90089000 - 0x90089ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x900d5000 - 0x900e5fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x900e6000 - 0x9010eff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9010f000 - 0x90138fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x90139000 - 0x90221ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90222000 - 0x902c9feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x902ca000 - 0x902e0fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x902e1000 - 0x90374fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90376000 - 0x905f2fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x906f8000 - 0x90754ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90755000 - 0x90b13fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90b1c000 - 0x90ba8ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90bf9000 - 0x90ed3ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90eda000 - 0x90fa1ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90fa2000 - 0x90fe1fef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91015000 - 0x910c5fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91195000 - 0x91228ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91229000 - 0x9136fff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91370000 - 0x91841fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91842000 - 0x9184eff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9184f000 - 0x9187afe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x9187b000 - 0x9195cff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x9195d000 - 0x9195dffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9195e000 - 0x9197dffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x919b0000 - 0x919b3fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x919b4000 - 0x919ccfff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x919ec000 - 0x91b1ffef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91b20000 - 0x91b9dfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91b9e000 - 0x91bd8fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91ca6000 - 0x92043fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92044000 - 0x9207effe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9207f000 - 0x92109fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9210a000 - 0x9225cff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9234f000 - 0x92350ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9236f000 - 0x9239cfeb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x923f6000 - 0x92450ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92451000 - 0x924a2ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x924a8000 - 0x924f1fef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x924f2000 - 0x924f2ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92523000 - 0x9252fffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x926bf000 - 0x926c8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x926e6000 - 0x928b7ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x928b8000 - 0x9293fff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x92d9f000 - 0x92daafe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92dab000 - 0x92e4ffec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92e50000 - 0x92e60ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92fc5000 - 0x93042feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93043000 - 0x93841fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93842000 - 0x93842ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x93843000 - 0x938f5ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x938f7000 - 0x9390cffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x939fe000 - 0x93ac9fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93b1b000 - 0x93bfbfff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x93bfc000 - 0x93d35ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x93d36000 - 0x94146fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94147000 - 0x94162ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94169000 - 0x94187fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x94188000 - 0x94190fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x941ce000 - 0x941dafff libbz2.1.0.dylib ??? (???) <1922ca2214a131073cd1c7ef3ee76398> /usr/lib/libbz2.1.0.dylib
    0x941db000 - 0x9420afe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9529f000 - 0x9529fff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952a0000 - 0x952aeffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x952f4000 - 0x952f4ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95368000 - 0x9536afff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x955e1000 - 0x955f9ff7 com.apple.CoreVideo 1.6.0 (20.0) <464fc6630b483a693d1dfeff144c4733> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95c4c000 - 0x95c59fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95c5a000 - 0x95c5afff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95c5b000 - 0x95ce7ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95ce8000 - 0x95d45ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x95d46000 - 0x95dc5ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95dd6000 - 0x95e17fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95e18000 - 0x964b8fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x964b9000 - 0x964c0ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x964c1000 - 0x964c1ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96581000 - 0x96587fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96588000 - 0x9658dfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96594000 - 0x965d2fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x965d3000 - 0x965d5ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x965ee000 - 0x96647ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96648000 - 0x9668afef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9668b000 - 0x96993fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96994000 - 0x96afbff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x96bf1000 - 0x96cabfe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96cac000 - 0x96cb3fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96cb4000 - 0x96cebfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96fc6000 - 0x96fd0feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96fd1000 - 0x96fd1ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9718f000 - 0x97193fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97238000 - 0x972b2ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x972b3000 - 0x972b7fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    The menubar items keep blinking on and off and I cannot display the time on the menu bar.
    I tried deleting the com.apple.systemuiserver.plist file and rebooting, but the problem persists.
    I do not have any additional menubar items installed.
    Judging from looking at the log above, there is a a problem that I cannot see. Does anyone have any ideas?
    Thank you.
    EA

    Greetings:
    Thank you for the reply. I tried repairing the Disk permissions; unfortunately, the problem is still there. I am including the error log below:
    Process: SystemUIServer [406]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier: com.apple.systemuiserver
    Version: 1.5.5 (248.9)
    Build Info: SystemUIServer-2480900~13
    Code Type: X86 (Native)
    Parent Process: launchd [112]
    Date/Time: 2009-05-30 19:03:43.644 -0400
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 20D97D81-51AD-4556-B42E-1E666316B8AC
    Exception Type: EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXCI386DIV (divide by zero)
    Crashed Thread: 6
    Thread 0:
    0 libSystem.B.dylib 0x95a24286 machmsgtrap + 10
    1 libSystem.B.dylib 0x95a2ba7c mach_msg + 72
    2 com.apple.CoreGraphics 0x90304a8f _CGSSynchronizeWindowBackingStore + 139
    3 com.apple.CoreGraphics 0x902f7a6b _CGSLockWindow + 4600
    4 com.apple.CoreGraphics 0x903045bb CGSDeviceLock + 450
    5 libRIP.A.dylib 0x9366ad60 ripd_Lock + 61
    6 libRIP.A.dylib 0x93669eee ripl_BltShape + 438
    7 libRIP.A.dylib 0x9364e213 ripc_Render + 386
    8 libRIP.A.dylib 0x936576bd ripc_DrawRects + 689
    9 com.apple.CoreGraphics 0x9030157e CGContextFillRects + 162
    10 com.apple.CoreGraphics 0x903562ae CGContextFillRect + 32
    11 com.apple.AppKit 0x94841c3b NSRectFill + 240
    12 com.apple.AppKit 0x948d322c -[NSView _drawRect:clip:] + 3853
    13 com.apple.AppKit 0x948d1d23 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    14 com.apple.AppKit 0x948d0679 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    15 com.apple.AppKit 0x949b8929 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 340
    16 com.apple.AppKit 0x948ccadf -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    17 com.apple.AppKit 0x9480d4b3 -[NSView displayIfNeeded] + 933
    18 com.apple.AppKit 0x9480d061 -[NSWindow displayIfNeeded] + 189
    19 com.apple.AppKit 0x9480ce84 _handleWindowNeedsDisplay + 436
    20 com.apple.CoreFoundation 0x9020d942 __CFRunLoopDoObservers + 466
    21 com.apple.CoreFoundation 0x9020ec9c CFRunLoopRunSpecific + 844
    22 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    23 com.apple.HIToolbox 0x926d928c RunCurrentEventLoopInMode + 283
    24 com.apple.HIToolbox 0x926d8fde ReceiveNextEventCommon + 175
    25 com.apple.HIToolbox 0x926d8f19 BlockUntilNextEventMatchingListInMode + 106
    26 com.apple.AppKit 0x9480ad0d _DPSNextEvent + 657
    27 com.apple.AppKit 0x9480a5c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    28 com.apple.AppKit 0x948035fb -[NSApplication run] + 795
    29 com.apple.systemuiserver 0x00005d84 0x1000 + 19844
    30 com.apple.systemuiserver 0x00005886 0x1000 + 18566
    Thread 1:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 ...e.ImageCaptureNotifications 0x000d4e9e _StaticProcessIOObjectsArray + 95
    3 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    4 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x95a549c6 kevent + 10
    1 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    2 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x95a24286 machmsgtrap + 10
    1 libSystem.B.dylib 0x95a2ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9020f04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x96a0a5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x96a0a480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    7 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x957f0942 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x957a928a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x957fc8f8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.apple.systemuiserver 0x0002d837 0x1000 + 182327
    6 com.apple.Foundation 0x957a8e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x957a89b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    9 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x9415aa09 fefragmentthread + 54
    3 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    4 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 6 Crashed:
    0 com.apple.systemuiserver 0x0002595d 0x1000 + 149853
    1 com.apple.systemuiserver 0x00025bea 0x1000 + 150506
    2 com.apple.systemuiserver 0x000267c6 0x1000 + 153542
    3 com.apple.DiskArbitration 0x9118e6df _DADispatchCallback + 273
    4 com.apple.DiskArbitration 0x9118e2d9 _DASessionCallback + 309
    5 com.apple.CoreFoundation 0x901eb1c5 __CFMachPortPerform + 117
    6 com.apple.CoreFoundation 0x9020f888 CFRunLoopRunSpecific + 3896
    7 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    8 com.apple.systemuiserver 0x00026a6c 0x1000 + 154220
    9 com.apple.Foundation 0x957a8e0d -[NSThread main] + 45
    10 com.apple.Foundation 0x957a89b4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    12 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
    eax: 0x00007e99 ebx: 0x00577e10 ecx: 0x00000000 edx: 0x00000000
    edi: 0x005950b0 esi: 0x0059b2d0 ebp: 0xb033e468 esp: 0xb033e200
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002595d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x1500c000
    Binary Images:
    0x1000 - 0x52ff3 com.apple.systemuiserver 1.5.5 (248.9) <f8a92b652c2aa54f46f8f5c32449c1eb> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x6a000 - 0x6efff com.apple.framework.SystemUIPlugin 1.5 (20) <693b3808ff85a09a6c5fb1de9a24cc3f> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
    0x78000 - 0xa3fff com.apple.framework.NetworkConfig 2.3 (2.3) <d31639730be1f32d1ee71dbd8ffcf09e> /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
    0xcc000 - 0xd8ffb com.apple.ImageCaptureNotifications 4.0.1 (4.0.1) /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
    0xf6000 - 0xfafff com.apple.iPod 1.5 (15) <808d4802c643ebbf266f508935200c99> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x101000 - 0x103fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x10a000 - 0x1d3fe5 com.apple.DiscRecording 4.0.5 (4050.4.1) <503c77a4da92eb3262d3fbfe46e74f20> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x23e000 - 0x337fe0 com.apple.DiskImagesFramework 10.5.5 (199) <221119fb6b335af96fb0e85a9403cbc5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x39d000 - 0x3c7ff8 com.apple.framework.Apple80211 5.2.7 (527.2) <5982190f9caa25fca18b8753671d0d64> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x3d8000 - 0x3e2ffc com.apple.framework.AppleTalk 1.2.0 (???) <e8d0dc99744c2eb3aafefe463d3daf43> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x3e9000 - 0x41ffff com.apple.MediaKit 9.1 (401) <62f8d49f7d7eb4096d74377d0b7b51d5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x430000 - 0x45bffb libcurl.4.dylib ??? (???) <92c23039fbe46c86a58d55d4b9d2d3e2> /usr/lib/libcurl.4.dylib
    0x4aa000 - 0x4adfff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x4b3000 - 0x4b8fff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7e0000 - 0x7f1ffa com.apple.menuextra.airport 5.3.2 (532.3) <dde78ca7918d3edfb70b8b6fe57d2cb2> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    0x14e6e000 - 0x14e79ff7 com.apple.menuextra.bluetooth 2.1.6 (2.1.6f8) <8ecdc9f49ac25d3053470e757298fa13> /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
    0x14e83000 - 0x14ef7ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x14f45000 - 0x14f61fff com.apple.BluetoothUI 2.1.6 (2.1.6f8) <89d3e2503e2255d40fc25886bb4a8019> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x14f85000 - 0x14f91ff7 com.apple.menuextra.TimeMachine 10.5.7 (10.5) <ba85317e0c9608ccdba50230c833d2c2> /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
    0x14fda000 - 0x14fdfff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <1c2a016b2ac25fe8b7575f51e49b9334> /usr/lib/dyld
    0x90003000 - 0x9013cff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x9013d000 - 0x90144ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x90145000 - 0x90155ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90156000 - 0x90162fff libbz2.1.0.dylib ??? (???) <1922ca2214a131073cd1c7ef3ee76398> /usr/lib/libbz2.1.0.dylib
    0x90163000 - 0x9019afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9019b000 - 0x9019bffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9019c000 - 0x902cffef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902d0000 - 0x902e5ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x902e6000 - 0x90986fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90987000 - 0x90c61ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e30000 - 0x91001ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91069000 - 0x910fcfff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x910fd000 - 0x91106fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91107000 - 0x91161ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9118c000 - 0x91194fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x911b4000 - 0x911eefe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92304000 - 0x92314fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92315000 - 0x92315fff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92316000 - 0x92320feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92321000 - 0x92339fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x924fd000 - 0x925b7fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9269a000 - 0x926a8ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x926a9000 - 0x929b1fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x929c4000 - 0x929d0ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x929d1000 - 0x929dcfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92ac4000 - 0x92b1dff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b2e000 - 0x92b49ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92cca000 - 0x92cf7feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92cf8000 - 0x92d77ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92d78000 - 0x92d78ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9335b000 - 0x9335dff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9335e000 - 0x9339dfef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9339e000 - 0x933dcfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x934f3000 - 0x9352dffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x935f2000 - 0x935feff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x935ff000 - 0x9360cfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364a000 - 0x9368bfe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93744000 - 0x93744ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93745000 - 0x93c16fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93c17000 - 0x93c17ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93c18000 - 0x94028fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94066000 - 0x94403fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94404000 - 0x94409fff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9444f000 - 0x9452ffff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x94530000 - 0x94676ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94677000 - 0x947c9ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x947ca000 - 0x94fc8fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94fcf000 - 0x94ff3feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x94ff4000 - 0x95051ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x95052000 - 0x95102fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95103000 - 0x95121fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x95122000 - 0x9513aff7 com.apple.CoreVideo 1.6.0 (20.0) <464fc6630b483a693d1dfeff144c4733> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95205000 - 0x95209fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9523f000 - 0x95241fff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9525f000 - 0x95260ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x95261000 - 0x952aafef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x952ab000 - 0x952caffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9545b000 - 0x9545bffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9545c000 - 0x95503feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95504000 - 0x9550afff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9550b000 - 0x9550bffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x955c6000 - 0x95622ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95623000 - 0x9569dff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x956a4000 - 0x956ccff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x956cd000 - 0x956f8fe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x956f9000 - 0x956f9ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9579e000 - 0x95a1afe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95a1b000 - 0x95a22fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x95a23000 - 0x95b8aff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x95bd2000 - 0x95bd6fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95bd7000 - 0x95c28ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95c29000 - 0x95d0aff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x95e32000 - 0x95e74fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95ee8000 - 0x95f8cfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95f8d000 - 0x95f8dffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95f8e000 - 0x96076ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96077000 - 0x960f4fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96105000 - 0x961d0fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x961d1000 - 0x961e7fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x961e8000 - 0x96274ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96275000 - 0x9629efff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x9629f000 - 0x962c3fff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x9630e000 - 0x9639aff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x969ed000 - 0x96a6afeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a6b000 - 0x96af5fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96bd7000 - 0x96c9eff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96cf1000 - 0x96d20fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96d21000 - 0x96d24fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96d2a000 - 0x970e8fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x970e9000 - 0x97170ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x97171000 - 0x97204ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97205000 - 0x972b7ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I am still back at Square 1.
    I am curious - where can I find the Crash Reporter dialog that you mentioned earlier?
    Still, thank you for your reply.
    EA

  • Problem with Save Password for Network

    Hello,
    I have a problem with wireless for my Macbook pro.
    I can't save an access for any network. alwayse ask me to write password.
    the report for the problem is:
    Process:         System Preferences [5321]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         7.0 (7.0)
    Build Info:      SystemPrefsApp-1750100~19
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [174]
    Date/Time:       2011-05-09 00:11:24.058 +1000
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          158710 sec
    Crashes Since Last Report:           56
    Per-App Interval Since Last Report:  7920 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      A5DC5407-56A8-4389-9C63-9126A7D28BE6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000060
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    __NSCFType
    objc[5321]: garbage collection is ON
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.framework.Apple80211    0x00007fff83dc997f __ACKnownNetworksCopy + 246
    1   com.apple.framework.Apple80211    0x00007fff83dc9f6d __ACKnownNetworksFindCopy + 27
    2   com.apple.framework.Apple80211    0x00007fff83dc7d23 __synchronizeWithKnownNetworksCopy + 188
    3   com.apple.framework.Apple80211    0x00007fff83dcd5b0 ACInterfaceSetPreferredNetworks + 36
    4   ....networkpreferences.airport    0x000000010235a4a8 AirPortUSB_GetDeviceList + 61311
    5   com.apple.preference.network      0x0000000118a939cf MyBrowserCallBack + 760
    6   com.apple.AppKit                  0x00007fff83fc0e9a -[NSApplication sendAction:to:from:] + 95
    7   com.apple.AppKit                  0x00007fff83fc0df9 -[NSControl sendAction:to:] + 94
    8   com.apple.AppKit                  0x00007fff8404c76b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    9   com.apple.AppKit                  0x00007fff8407d2aa -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    10  com.apple.AppKit                  0x00007fff8404b215 -[NSControl mouseDown:] + 624
    11  com.apple.AppKit                  0x00007fff83f6534f -[NSWindow sendEvent:] + 5409
    12  com.apple.AppKit                  0x00007fff83e9aa86 -[NSApplication sendEvent:] + 4719
    13  com.apple.systempreferences       0x000000010000724e 0x100000000 + 29262
    14  com.apple.AppKit                  0x00007fff83e314da -[NSApplication run] + 474
    15  com.apple.AppKit                  0x00007fff83e2a1a8 NSApplicationMain + 364
    16  com.apple.systempreferences       0x0000000100001cf4 0x100000000 + 7412
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff8599f12a kevent + 10
    1   libSystem.B.dylib                 0x00007fff859a0ffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff859a0cd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff859a07fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff859a0128 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff8599ff4a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff859a035c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x00007fff859c9e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff8865a498 __CFSocketManager + 824
    2   libSystem.B.dylib                 0x00007fff859bf4f6 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff859bf3a9 thread_start + 13
    Thread 4:  Dispatch queue: Garbage Collection Work Queue
    0   libSystem.B.dylib                 0x00007fff8598629a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff8598690d mach_msg + 59
    2   com.apple.SystemConfiguration     0x00007fff8038cb81 configclose + 88
    3   com.apple.SystemConfiguration     0x00007fff8038c9b5 __SCDynamicStoreDeallocate + 76
    4   com.apple.CoreFoundation          0x00007fff886ba3d7 -[__NSCFType finalize] + 39
    5   libobjc.A.dylib                   0x00007fff8482af67 finalizeOneObject + 48
    6   libauto.dylib                     0x00007fff852d23e5 Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 85
    7   libobjc.A.dylib                   0x00007fff8482ab5c batchFinalize + 64
    8   libobjc.A.dylib                   0x00007fff8482ac40 batchFinalizeOnTwoThreads + 98
    9   libauto.dylib                     0x00007fff852cc147 Auto::Zone::invalidate_garbage(unsigned long, unsigned long const*) + 71
    10  libauto.dylib                     0x00007fff852bcb31 auto_collect_internal(Auto::Zone*, unsigned int) + 481
    11  libauto.dylib                     0x00007fff852bd0cd auto_collection_work(Auto::Zone*) + 157
    12  libSystem.B.dylib                 0x00007fff859c2284 _dispatch_call_block_and_release + 15
    13  libSystem.B.dylib                 0x00007fff859a0df2 _dispatch_queue_drain + 251
    14  libSystem.B.dylib                 0x00007fff859a0c54 _dispatch_queue_invoke + 57
    15  libSystem.B.dylib                 0x00007fff859a07fe _dispatch_worker_thread2 + 252
    16  libSystem.B.dylib                 0x00007fff859a0128 _pthread_wqthread + 353
    17  libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff8599ff4a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff859a035c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000008  rdx: 0x0000000000000000
      rdi: 0x00007fff83dd6480  rsi: 0x01d4b4ebf0770d93  rbp: 0x00007fff5fbfee90  rsp: 0x00007fff5fbfee40
       r8: 0x00007fff83dd6480   r9: 0x0000000000000000  r10: 0x0000000200473560  r11: 0x00007fff5fbfed70
      r12: 0x00000001020714e0  r13: 0x0000000000000000  r14: 0x0000000200498b60  r15: 0x00000002004ad5a0
      rip: 0x00007fff83dc997f  rfl: 0x0000000000010246  cr2: 0x0000000000000060
    Binary Images:
           0x100000000 -        0x10001eff7  com.apple.systempreferences 7.0 (7.0) <AC669017-E97F-61B7-1303-A21DABA33797> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x100719000 -        0x10073cff7  com.apple.SystemConfiguration.EAP8021X 10.0.1 (1.0) <B4A89B96-3E7E-B8AF-C2DF-9A47E7E8F984> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
           0x10234a000 -        0x10237cfe7  com.apple.networkpreferences.airport 6.2.1 (621.1) <E3190071-E108-44AC-70DF-7936D21F26AC> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Air PortPrefs.bundle/Contents/MacOS/AirPortPrefs
           0x1023cd000 -        0x1023f3fff  GLRendererFloat ??? (???) <0AF0FF0D-6FD6-B5FA-9991-C8F58E8F1DD4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1023fe000 -        0x102402fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <5D9C8E0B-2B62-6EC8-0590-476A73C006FB> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x102407000 -        0x10240dfff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <DDDE04F6-09A4-2DE5-CD04-B6DA707D3713> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x115743000 -        0x1158d4fef  GLEngine ??? (???) <7B2CD458-D828-6A44-C918-C194838974D5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x115905000 -        0x11608cfff  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <D469864E-34A6-37EE-A01D-7C2AF0223D35> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
           0x116486000 -        0x1168a9fef  libclh.dylib 3.1.1 C  (3.1.1) <0774DA8C-734E-2639-0F37-CCB20D17CDBD> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x118a73000 -        0x118b0ffff  com.apple.preference.network 2.4.1 (2.4.1) <F5FF8159-4029-430B-9D2A-57DC5A392FD2> /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network
           0x11a247000 -        0x11a266ff7  com.apple.airport.clientdialogs 6.2.1 (621.1) <4EB0EB03-71BC-4622-6BB8-004D81E6256A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entDialogs.bundle/Contents/MacOS/ClientDialogs
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80255000 -     0x7fff8026bfff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8026c000 -     0x7fff80277ff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff80278000 -     0x7fff80328fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff80329000 -     0x7fff8032bfff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8032c000 -     0x7fff8034dfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8037e000 -     0x7fff80383fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff80384000 -     0x7fff803c5fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff803c6000 -     0x7fff80809fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8080a000 -     0x7fff80923fef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8095a000 -     0x7fff8099bff7  com.apple.MediaKit 10.4 (486) <5ABA1213-744C-5C65-CA8E-84BE866DB7B4> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8099c000 -     0x7fff8099efff  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
        0x7fff8099f000 -     0x7fff809dbfe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
        0x7fff809dc000 -     0x7fff80a1dfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff80d62000 -     0x7fff80d8afff  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
        0x7fff80d8b000 -     0x7fff80dd5ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff80e3f000 -     0x7fff80e4bfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff8105b000 -     0x7fff81183ff7  com.apple.MediaToolbox 0.484.20 (484.20) <1C80C29E-6FDB-71F3-B465-FF92A30BBF9D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff811ce000 -     0x7fff811e9ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff811ea000 -     0x7fff81301fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff81302000 -     0x7fff8134bfef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8134c000 -     0x7fff81850fe7  com.apple.VideoToolbox 0.484.20 (484.20) <B01F6A80-D197-2127-2A05-49F9446EF6E5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff81851000 -     0x7fff81860fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81861000 -     0x7fff818a9ff7  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
        0x7fff818aa000 -     0x7fff818bfff7  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
        0x7fff818c0000 -     0x7fff8197dfff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff819eb000 -     0x7fff81ba9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff81baa000 -     0x7fff81babff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff81c0f000 -     0x7fff81c16fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff81ca1000 -     0x7fff81d79fe7  com.apple.DiscRecording 5.0.8 (5080.4.1) <41A9AC05-7247-599C-7CED-89BACB63CDB6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff81d7a000 -     0x7fff81dbdfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff81dbe000 -     0x7fff81dcbfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff81de2000 -     0x7fff81e11fff  com.apple.framework.Admin 4.5 (4.5) <8F5A3803-7C4F-16DA-1B74-B9A1EF92614B> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff81e12000 -     0x7fff81e18ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff81e19000 -     0x7fff81e1aff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81e1b000 -     0x7fff81e41fe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81e42000 -     0x7fff81e85ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81e86000 -     0x7fff81e89fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81e8a000 -     0x7fff81f8afef  com.apple.DiskImagesFramework 10.6.5 (289) <B4C7A42F-241C-F3C7-8977-18B620CB66D9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff820f5000 -     0x7fff820f5ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff820f6000 -     0x7fff82145ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff82146000 -     0x7fff82166ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff822e6000 -     0x7fff822e6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff822e7000 -     0x7fff8261bfff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8261c000 -     0x7fff826a8fef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff826a9000 -     0x7fff82818fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff82819000 -     0x7fff82819ff7  com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8281a000 -     0x7fff8286fff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff828e3000 -     0x7fff828e7ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff829e3000 -     0x7fff829e8ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff829f5000 -     0x7fff82a3cff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82aac000 -     0x7fff82b6efef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82b6f000 -     0x7fff82ba2fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff82c8a000 -     0x7fff82d3ffe7  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
        0x7fff82d40000 -     0x7fff82d7bfff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff83a28000 -     0x7fff83a28ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff83a29000 -     0x7fff83cb1fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff83cb2000 -     0x7fff83d98fef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff83d99000 -     0x7fff83d99ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83d9a000 -     0x7fff83da0ff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff83da1000 -     0x7fff83da7ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff83da8000 -     0x7fff83dddfef  com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff83dde000 -     0x7fff83e27ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff83e28000 -     0x7fff8481efff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8481f000 -     0x7fff848d5fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff84978000 -     0x7fff8499fff7  com.apple.frameworks.preferencepanes 13.5 (13.5) <C79DCAF8-302A-843F-BE9B-407DDA682A8E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff849f0000 -     0x7fff84a80fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff84a81000 -     0x7fff84a84ff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84a91000 -     0x7fff84b16ff7  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
        0x7fff84ba7000 -     0x7fff84bbdfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff84bbe000 -     0x7fff84bd2ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84c89000 -     0x7fff84cacfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84cad000 -     0x7fff84e65fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff84e66000 -     0x7fff84e75fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84e76000 -     0x7fff852a1fef  com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff852a2000 -     0x7fff852b8fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff852b9000 -     0x7fff85305fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff85306000 -     0x7fff853bdff7  com.apple.Bluetooth 2.4.0 (2.4.0f1) <3F3F8097-B4A7-D69E-733E-968BB1B152BA> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff853be000 -     0x7fff853d2fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff853d3000 -     0x7fff85422fef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff854ea000 -     0x7fff85515ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff8555e000 -     0x7fff855ddfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1CF0AE2D-0E85-D41B-EC2D-8CFD298AB5A0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85618000 -     0x7fff85659ff7  com.apple.CoreMedia 0.484.20 (484.20) <C1CC2CE5-0606-5F87-9445-ED7AF1DA31B6> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85662000 -     0x7fff8573ffff  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
        0x7fff85740000 -     0x7fff857a0fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff857a1000 -     0x7fff85862fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff85863000 -     0x7fff85984fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85985000 -     0x7fff85b46fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff85f89000 -     0x7fff85fc3fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff85fc4000 -     0x7fff8607dfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff86191000 -     0x7fff862c6ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff86378000 -     0x7fff86383ff7  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
        0x7fff864d8000 -     0x7fff86ce2fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86e44000 -     0x7fff86e47ff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86e48000 -     0x7fff86e4cff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff86e4d000 -     0x7fff86eb7fe7  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
        0x7fff86eb8000 -     0x7fff86eb8ff7  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
        0x7fff86ee3000 -     0x7fff86ee4fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86ee5000 -     0x7fff86ee5ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86f20000 -     0x7fff8761d06f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8761e000 -     0x7fff87624fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff87625000 -     0x7fff87642ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87643000 -     0x7fff87941fff  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
        0x7fff87942000 -     0x7fff87950ff7  libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
        0x7fff87951000 -     0x7fff87982fff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff87bff000 -     0x7fff87c3cfff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87c3d000 -     0x7fff87d7bfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87e87000 -     0x7fff87ef8ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff87efb000 -     0x7fff87f06ff7  com.apple.bsd.ServiceManagement 1.3 (1.3) <CEB99ECF-4C55-C3DF-EE64-35903BF7B690> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87f8b000 -     0x7fff8820efe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff88281000 -     0x7fff882d3ff7  com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff882e2000 -     0x7fff88382fff  com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff88383000 -     0x7fff88395fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff883f9000 -     0x7fff884cbfe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff884f7000 -     0x7fff88574fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff885ec000 -     0x7fff88763fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8896e000 -     0x7fff889b3fff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff889b4000 -     0x7fff889edfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff889ee000 -     0x7fff88d8bfe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff88d8c000 -     0x7fff88dc9ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88e0a000 -     0x7fff88e0ffff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff88e10000 -     0x7fff88e8eff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff890fa000 -     0x7fff89113fff  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
        0x7fff89114000 -     0x7fff89125ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff89126000 -     0x7fff8914bff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff89152000 -     0x7fff89182fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff89183000 -     0x7fff8921dff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.47f2
    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.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000

    I'm still waiting

  • Problem with Safari crashing every time I try to print.

    Hello Support,
    I currently have a MacBook Pro 2.4Ghz  Mac OS x 10.7.4
    I have uninstalled all plugins in Safari.
    "Everytime I try to print my Safari will crash". The report log is shown below.
    Please can you help me to resolve this matter.
    or Advise me how I can uninstall Safari and re-install a new version.
    I am fairly good with MS Windows, but only had a year hands on Mac. So any help would be good, else I will have to visit the apple store and talk to someone to help me resolve it. I would prefer to resolve myself via this support communitie, and at the same time understand the process to resolve.
    Thanks
    Ash
    Report Log:-
    Process:         Safari [1403]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         6.0 (7536.25)
    Build Info:      WebBrowser-7536025000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [267]
    PlugIn Path:       /Library/Printers/hp/PDEs/hpPostScriptPDE.plugin/Contents/PlugIns/HPPrintSettin gs.bundle/Contents/MacOS/HPPrintSettings
    PlugIn Identifier: com.hp.print.psdriver.HPPrintSettings
    PlugIn Version:    19.1.0 (19.1.0b429)
    Date/Time:       2012-08-18 20:32:48.844 +0100
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          60358 sec
    Crashes Since Last Report:           21
    Per-App Interval Since Last Report:  645038 sec
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      65A488FF-5DBB-4C01-86C8-F0E0D3A33D93
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    objc[1403]: garbage collection is OFF
    Performing @selector(doPrint:) from sender NSButton 0x7fc70e464ad0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff89d121d1 __HALT + 1
    1   com.apple.CoreFoundation                0x00007fff89c3df23 CFStringCreateWithFormat + 211
    2   com.hp.print.psdriver.HPPrintSettings          0x000000011761d5a4 0x1175ff000 + 124324
    3   com.hp.print.psdriver.HPPrintSettings          0x000000011762895a 0x1175ff000 + 170330
    4   com.hp.print.psdriver.HPPrintSettings          0x000000011762d43c 0x1175ff000 + 189500
    5   com.hp.print.psdriver.HPPrintSettings          0x000000011762d606 0x1175ff000 + 189958
    6   com.apple.CoreFoundation                0x00007fff89c62666 __CFDictionaryApplyFunction_block_invoke_1 + 22
    7   com.apple.CoreFoundation                0x00007fff89c44121 CFBasicHashApply + 113
    8   com.apple.CoreFoundation                0x00007fff89c62644 CFDictionaryApplyFunction + 212
    9   com.hp.print.psdriver.HPPrintSettings          0x000000011760088e 0x1175ff000 + 6286
    10  com.hp.print.psdriver.HPPrintSettings          0x000000011762d49b 0x1175ff000 + 189595
    11  com.hp.print.psdriver.HPPrintSettings          0x000000011762c182 0x1175ff000 + 184706
    12  com.hp.print.psdriver.HPPrintSettings          0x000000011760739a 0x1175ff000 + 33690
    13  com.apple.CoreFoundation                0x00007fff89c442d2 __CFSetApplyFunction_block_invoke_1 + 18
    14  com.apple.CoreFoundation                0x00007fff89c44121 CFBasicHashApply + 113
    15  com.apple.CoreFoundation                0x00007fff89c440a4 CFSetApplyFunction + 212
    16  com.hp.print.psdriver.HPPrintSettings          0x0000000117604d6a 0x1175ff000 + 23914
    17  com.hp.print.psdriver.HPPrintSettings          0x00000001176045f4 0x1175ff000 + 22004
    18  com.hp.print.psdriver.HPPrintSettings          0x000000011760425b 0x1175ff000 + 21083
    19  com.hp.print.psdriver.HPPrintSettings          0x000000011762fe9e 0x1175ff000 + 200350
    20  com.hp.print.HPSmartPrint               0x00000001170d69a6 0x1170c0000 + 92582
    21  com.hp.print.HPSmartPrint               0x00000001170c9a02 0x1170c0000 + 39426
    22  com.hp.print.psdriver.hpPostScriptPDE          0x000000011745bcfb 0x117459000 + 11515
    23  com.hp.print.psdriver.hpPostScriptPDE          0x000000011745bf82 0x117459000 + 12162
    24  com.apple.CoreFoundation                0x00007fff89cccfb1 -[NSObject performSelector:] + 49
    25  com.apple.print.framework.Print.Private          0x00000001174063f2 0x117405000 + 5106
    26  com.apple.print.framework.Print.Private          0x00000001174084a7 0x117405000 + 13479
    27  com.apple.print.framework.Print.Private          0x00000001174230d7 0x117405000 + 123095
    28  com.apple.print.framework.Print.Private          0x0000000117422eda 0x117405000 + 122586
    29  com.apple.CoreFoundation                0x00007fff89cc570d -[NSObject performSelector:withObject:] + 61
    30  com.apple.AppKit                        0x00007fff85b76f7e -[NSApplication sendAction:to:from:] + 139
    31  com.apple.Safari.framework              0x000000010f5f4508 -[BrowserApplication sendAction:to:from:] + 54
    32  com.apple.AppKit                        0x00007fff85b76eb2 -[NSControl sendAction:to:] + 88
    33  com.apple.AppKit                        0x00007fff85b76ddd -[NSCell _sendActionFrom:] + 137
    34  com.apple.AppKit                        0x00007fff85b762a0 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2014
    35  com.apple.AppKit                        0x00007fff85bf5fc4 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 489
    36  com.apple.Safari.framework              0x000000010f5b93d2 _ZL30safari_NSButtonCell_trackMouseP11objc_objectP13objc_selectorP7NSEvent6CGRe ctP6NSViewa + 185
    37  com.apple.AppKit                        0x00007fff85b74eaa -[NSControl mouseDown:] + 786
    38  com.apple.AppKit                        0x00007fff85b40348 -[NSWindow sendEvent:] + 6306
    39  com.apple.AppKit                        0x00007fff85ad9a55 -[NSApplication sendEvent:] + 5593
    40  com.apple.Safari.framework              0x000000010f5f4853 -[BrowserApplication sendEvent:] + 818
    41  com.apple.AppKit                        0x00007fff85a700c6 -[NSApplication run] + 555
    42  com.apple.AppKit                        0x00007fff85cec244 NSApplicationMain + 867
    43  com.apple.Safari.framework              0x000000010f7b6806 SafariMain + 166
    44  com.apple.Safari                        0x000000010f59ef2c 0x10f59e000 + 3884
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff84e1c7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8336678a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8336531a _dispatch_mgr_thread + 54
    Thread 2:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff84e1bbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d21f274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x000000011064e1fc WebCore::IconDatabase::syncThreadMainLoop() + 124
    3   com.apple.WebCore                       0x000000011064bd50 WebCore::IconDatabase::iconDatabaseSyncThread() + 496
    4   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 3:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff84e1a67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff84e19d71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff86e992d9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff86e99219 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 4:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff84e1bbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d21f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010fd64fa6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x000000010ff7ba1a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff84e1bbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d21f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010fee09b4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x000000010fee0896 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff84e1bbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d21f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010fee09b4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x000000010fee0896 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff84e1bbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d21f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010fee09b4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x000000010fee0896 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 8:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff84e1a67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff84e19d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89c6250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89c6ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89c6a486 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x000000010f76a83e Safari::MessageRunLoop::threadBody() + 106
    6   com.apple.JavaScriptCore                0x000000010ff9111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    7   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff84e1a67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff84e19d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff89c6250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff89c6ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff89c6a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8ef91fd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8ef8672a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8ef866a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff84e1bdf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff89cb3c8b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff84e1c192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d21d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8d21eb85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff84e1c192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d21d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8d21eb85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff84e1c192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d21d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8d21eb85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff84e1c192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d21d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8d21eb85 start_wqthread + 13
    Thread 15:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff84e1be42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d1d1dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8d1d1bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff85ca84d3 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff8ef8672a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8ef866a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8d21b8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8d21eb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff89d121d0  rbx: 0x0000000000000000  rcx: 0x00007fff72eba6c0  rdx: 0x00007fff89c392e4
      rdi: 0x00007fc71049efb0  rsi: 0x0000000000000000  rbp: 0x00007fff6f19c710  rsp: 0x00007fff6f19b1e8
       r8: 0x00000000ffffffdf   r9: 0x00007fff6f19c7e8  r10: 0x00007fff6f19c750  r11: 0x00007fff6f19b4f0
      r12: 0x00007fff89c38fe4  r13: 0x0000000000000005  r14: 0x000000011764114b  r15: 0x0000000000000000
      rip: 0x00007fff89d121d1  rfl: 0x0000000000000246  cr2: 0x00007fc7104a6000
    Logical CPU: 0
    Binary Images:
           0x10f59e000 -        0x10f59efff  com.apple.Safari (6.0 - 7536.25) <41237DCA-DCCA-34BE-B97E-2398B478CA9F> /Applications/Safari.app/Contents/MacOS/Safari
           0x10f5a7000 -        0x10fa41ff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x10fd5e000 -        0x10ffedfff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x11009a000 -        0x11021cff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x11030b000 -        0x1104e4fff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x110648000 -        0x1115edff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x1149fd000 -        0x1149fdff5 +cl_kernels (??? - ???) <83AC8DCC-DB29-46FC-ADB9-869590FFB980> cl_kernels
           0x11662f000 -        0x116632ff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x116afc000 -        0x116b02fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x116b29000 -        0x116b29ffd +cl_kernels (??? - ???) <1939D417-15A3-4DBE-B19D-70CBB71CF9A0> cl_kernels
           0x116b2b000 -        0x116bbeff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x116be1000 -        0x116be2ff3 +cl_kernels (??? - ???) <957CF4F4-8D32-49B1-B987-12D432143A9F> cl_kernels
           0x116bf9000 -        0x116bfaffc +cl_kernels (??? - ???) <2A2FEB69-B3FF-4E3F-8D2A-775EA31CA965> cl_kernels
           0x116c68000 -        0x116c69ff3 +cl_kernels (??? - ???) <C50DA3A6-4144-4B45-87D5-FDC536780BCF> cl_kernels
           0x1170c0000 -        0x1170e5fff +com.hp.print.HPSmartPrint (5.9.0 - 5.9.0.16) <8F528C7D-5203-31D5-9881-1C60C5C4DC52> /Library/Printers/hp/Frameworks/HPSmartPrint.framework/Versions/A/HPSmartPrint
           0x1173ad000 -        0x1173e1fff  com.apple.printingprivate.framework.PrintingPrivate (7.4 - 68.4) <5C9D0EC3-70C8-34E8-8F11-1CB9FA6991DC> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x117405000 -        0x11743cfff  com.apple.print.framework.Print.Private (7.4 - 378.12) <467D02E5-075A-36AC-B695-95E439F9258B> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x117459000 -        0x1174b6fff +com.hp.print.psdriver.hpPostScriptPDE (19.1.0 - 19.1.0b429) <C00BBE42-D090-36A8-A128-EEFE91EF6D42> /Library/Printers/hp/PDEs/hpPostScriptPDE.plugin/Contents/MacOS/hpPostScriptPDE
           0x1175ff000 -        0x11765aff7 +com.hp.print.psdriver.HPPrintSettings (19.1.0 - 19.1.0b429) <7E4D0018-E8B2-3CFC-86D9-552069D1302A> /Library/Printers/hp/PDEs/hpPostScriptPDE.plugin/Contents/PlugIns/HPPrintSettin gs.bundle/Contents/MacOS/HPPrintSettings
           0x117674000 -        0x1176b7fff  com.apple.print.PrintingCocoaPDEs (7.4 - 378.12) <BD8FE250-5E1E-3CB8-874D-F118ADDD6FA0> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
        0x7fff6f19e000 -     0x7fff6f1d2baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff821b5000 -     0x7fff821beff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff821bf000 -     0x7fff82219ff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff822e2000 -     0x7fff824e4fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff824e5000 -     0x7fff82505fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8250a000 -     0x7fff8293dff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8293e000 -     0x7fff8296bfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8296c000 -     0x7fff82a69ff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff82e1b000 -     0x7fff82e77ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff82e78000 -     0x7fff82e86fff  com.apple.HelpData (2.1.2 - 72.2) <363E36C5-F7C0-34A6-83D3-97C8FB6511F0> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff82e8b000 -     0x7fff82e8bfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff82ea8000 -     0x7fff82ebffff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff82ec0000 -     0x7fff830eafe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff830eb000 -     0x7fff831e0fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff831e1000 -     0x7fff8320aff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8320b000 -     0x7fff8321dff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff83321000 -     0x7fff83362fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff83363000 -     0x7fff83371fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff83372000 -     0x7fff83377fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8358e000 -     0x7fff835bbff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff835bc000 -     0x7fff8361eff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8361f000 -     0x7fff8362bfff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8362c000 -     0x7fff83632ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff83633000 -     0x7fff83663ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff83664000 -     0x7fff83667fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff836eb000 -     0x7fff83a07fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff83bc1000 -     0x7fff83cf7fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83cf8000 -     0x7fff83cfafff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff83cfc000 -     0x7fff83d03fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff83d04000 -     0x7fff83d1bfff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff83d1c000 -     0x7fff83d21fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83d22000 -     0x7fff83d27fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff83f2b000 -     0x7fff83f39fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff83f8e000 -     0x7fff84030fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8406a000 -     0x7fff84176fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8418c000 -     0x7fff84276fff  com.apple.backup.framework (1.3.3 - 1.3.3) <6C49FBCF-D6AF-3351-BBBF-A98A622CA517> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff84277000 -     0x7fff84278ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff84313000 -     0x7fff84315ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff84316000 -     0x7fff84316fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff84317000 -     0x7fff84344fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff84353000 -     0x7fff845c8ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff84616000 -     0x7fff846b7ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff846b8000 -     0x7fff846b8fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff846da000 -     0x7fff846e0fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff846e1000 -     0x7fff84774ff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff84775000 -     0x7fff847a4fff  com.apple.shortcut (2.1 - 2.1) <43C186C0-6B0F-39FA-976A-C307CC410495> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff847b7000 -     0x7fff847f6ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff847f7000 -     0x7fff847fdfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff847fe000 -     0x7fff8481bff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8482d000 -     0x7fff848a0fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff848a1000 -     0x7fff848dcfff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff848dd000 -     0x7fff84908ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff8490b000 -     0x7fff8498fff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff84990000 -     0x7fff84a6fff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff84a70000 -     0x7fff84ac1ff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff84ac2000 -     0x7fff84dabff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff84dac000 -     0x7fff84dc8ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84dc9000 -     0x7fff84dc9fff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff84dd3000 -     0x7fff84dd4fff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff84dd5000 -     0x7fff84df9fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff84dfa000 -     0x7fff84e02fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff84e05000 -     0x7fff84e25fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff84e32000 -     0x7fff857cfc9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff857d0000 -     0x7fff857f9fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff857fa000 -     0x7fff85a68ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff85a69000 -     0x7fff85a6afff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff85a6b000 -     0x7fff86671ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86672000 -     0x7fff866b8fff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff866fe000 -     0x7fff86e92fef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff86e93000 -     0x7fff86e96ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86e97000 -     0x7fff87036ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87049000 -     0x7fff870bffff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff870c0000 -     0x7fff870d2ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff870d3000 -     0x7fff870d7ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8726f000 -     0x7fff872b6ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff872b7000 -     0x7fff872f0fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff874b3000 -     0x7fff874f7ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff874f8000 -     0x7fff8757dff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8757e000 -     0x7fff875f4fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff875f5000 -     0x7fff8760ffff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87618000 -     0x7fff876aeff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff876af000 -     0x7fff876affff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff87de9000 -     0x7fff88192fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff88193000 -     0x7fff881fbff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff881fc000 -     0x7fff881fcfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff881ff000 -     0x7fff8830cfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff88539000 -     0x7fff88546fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8854b000 -     0x7fff8859efff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8859f000 -     0x7fff88644fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff88645000 -     0x7fff8865bfff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8865c000 -     0x7fff8865cfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8865d000 -     0x7fff886abfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff886ac000 -     0x7fff886f0ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff886f1000 -     0x7fff886f5fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff886f6000 -     0x7fff886f9fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff886fa000 -     0x7fff88853fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff88854000 -     0x7fff8887afff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8887b000 -     0x7fff888f6ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff888f7000 -     0x7fff88a81fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88ac8000 -     0x7fff88b4bfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88b4c000 -     0x7fff88b5cff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88b5d000 -     0x7fff88e89ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88f3c000 -     0x7fff89036ff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff89037000 -     0x7fff8904cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff890b0000 -     0x7fff890eafe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff890eb000 -     0x7fff890ebfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8913d000 -     0x7fff89140fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89141000 -     0x7fff89176fff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff89177000 -     0x7fff89277fff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff89278000 -     0x7fff892c4ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff892c5000 -     0x7fff892d8ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff892d9000 -     0x7fff892e4ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff892e5000 -     0x7fff892e6fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff892e7000 -     0x7fff8930bfff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8930c000 -     0x7fff89312fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff89313000 -     0x7fff8932ffff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff89330000 -     0x7fff89372fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff89373000 -     0x7fff897a0fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89c32000 -     0x7fff89e06ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff89ec2000 -     0x7fff89ecdfff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89ece000 -     0x7fff89ed9ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff89fa2000 -     0x7fff8a2c6fff  com.apple.AddressBook.framework (6.1.2 - 1090) <65FE6A36-F3F8-37FE-8B88-50F20F278779> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8a2c7000 -     0x7fff8a37aff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8a40c000 -     0x7fff8a915ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8a918000 -     0x7fff8a91ffff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a920000 -     0x7fff8a934ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8a935000 -     0x7fff8a977ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8a978000 -     0x7fff8a9b3fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8a9c2000 -     0x7fff8a9c7ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8ad42000 -     0x7fff8ad51ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8ad52000 -     0x7fff8ad52fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8ad53000 -     0x7fff8adabfff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8adac000 -     0x7fff8add3fff  com.apple.framework.internetaccounts (1.2 - 3) <483427CA-8140-355D-B668-78F5A5F1A1D6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8add4000 -     0x7fff8addafff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8addb000 -     0x7fff8aee2fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8aee3000 -     0x7fff8af43fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8b267000 -     0x7fff8b269fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8b26a000 -     0x7fff8b280ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8b281000 -     0x7fff8b286fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8b2ee000 -     0x7fff8b455fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8b4b0000 -     0x7fff8b4d9fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8b4da000 -     0x7fff8b4e8ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff8b4e9000 -     0x7fff8b506fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8b50d000 -     0x7fff8b512fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8b513000 -     0x7fff8b51aff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8b51b000 -     0x7fff8b51cff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8b51d000 -     0x7fff8b5fbfff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8b5fc000 -     0x7fff8b64eff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8b64f000 -     0x7fff8b8c2fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b8c3000 -     0x7fff8b903ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8b96b000 -     0x7fff8b9c8ff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b9c9000 -     0x7fff8b9e5fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff8b9e6000 -     0x7fff8be03ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8beab000 -     0x7fff8bebdff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8bebe000 -     0x7fff8bec9ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8beca000 -     0x7fff8bf09fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8bf0a000 -     0x7fff8bf35ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8bf6c000 -     0x7fff8c006ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c007000 -     0x7fff8c050ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8c07a000 -     0x7fff8c07bfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8c07c000 -     0x7fff8c543fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8c557000 -     0x7fff8c670fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c671000 -     0x7fff8c678fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <B3F07872-63B1-3AAF-A313-9B2886822C58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8c863000 -     0x7fff8c896ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c897000 -     0x7fff8c95eff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8c95f000 -     0x7fff8cf43fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8cf44000 -     0x7fff8cf51ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff8cf52000 -     0x7fff8cf7afff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8cf7b000 -     0x7fff8cf7dfff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff8cf8a000 -     0x7fff8cfdefff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8cfdf000 -     0x7fff8d055fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8d056000 -     0x7fff8d0c6fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d0c7000 -     0x7fff8d1ccfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8d1cd000 -     0x7fff8d2aafef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8d2ab000 -     0x7fff8d314fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d315000 -     0x7fff8d319fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8d37a000 -     0x7fff8d399fff  libres

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Problem with Installing software!

    Newbie to Mac, new iMac 2.66, Have a strange problem. Whenever I try to install most software I get this error! (even software from OS X install disks)
    Installer is Damaged
    Installer is unable to open the package. This is likely due to Install framework's runner executable not having the proper ownership and/or permissions.
    Using my admin account, and have full permissions on Mac HD
    Report sent to Apple:
    Process: Installer [256]
    Path: /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
    Identifier: com.apple.installer
    Version: 3.0.2 (281)
    Build Info: Installer-2810000~1
    Code Type: X86 (Native)
    Parent Process: launchd [115]
    Date/Time: 2008-07-09 07:51:17.960 -0400
    OS Version: Mac OS X 10.5.3 (9D34)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000c0000023
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x96a836e8 objc_msgSend + 24
    1 com.apple.Foundation 0x911828d0 _NSAppleEventManagerGenericHandler + 304
    2 com.apple.AE 0x95e9c648 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 144
    3 com.apple.AE 0x95e9c57e dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    4 com.apple.AE 0x95e9c425 aeProcessAppleEvent + 177
    5 com.apple.HIToolbox 0x9091447d AEProcessAppleEvent + 38
    6 com.apple.AppKit 0x9560a719 _DPSNextEvent + 1189
    7 com.apple.AppKit 0x95609db8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    8 com.apple.AppKit 0x95602df3 -[NSApplication run] + 795
    9 com.apple.AppKit 0x955d0030 NSApplicationMain + 574
    10 com.apple.installer 0x00002e18 0x1000 + 7704
    11 com.apple.installer 0x00002c2e 0x1000 + 7214
    Thread 1:
    0 libSystem.B.dylib 0x91677636 recvfrom$UNIX2003 + 10
    1 libSystem.B.dylib 0x916586f5 pthreadstart + 321
    2 libSystem.B.dylib 0x916585b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91627506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9165984f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9165b0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x911a3e8c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x911a3ca0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x911a3c05 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x95670470 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x9115df1d -[NSThread main] + 45
    8 com.apple.Foundation 0x9115dac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x916586f5 pthreadstart + 321
    10 libSystem.B.dylib 0x916585b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00770210 ebx: 0x911593db ecx: 0x96b1f394 edx: 0xc0000003
    edi: 0xfffff954 esi: 0xbffff328 ebp: 0xbffff1c8 esp: 0xbffff058
    ss: 0x0000001f efl: 0x00010202 eip: 0x96a836e8 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xc0000023
    Binary Images:
    0x1000 - 0x32fff com.apple.installer 3.0.2 (281) /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
    0x41000 - 0x55ff7 com.apple.InstallerPlugins 3.0.2 (281) <5f4173ae345695df245671edfd074d86> /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugi ns
    0x68000 - 0x6cff7 com.apple.JavaScriptGlue 5525.13 (5525.13) <6f4e976863a8273be67b65718c5eda83> /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x75000 - 0x7ffff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x12c000 - 0x1ddff2 com.apple.installframework 3.0.3 (384) <8590a9ef57135dac92ca6dcf60635ee4> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    0x258000 - 0x289ffb com.apple.DiskManagement 2.2 (160) <e3ae3a0c97eac8456c6017975e1588a2> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x2ab000 - 0x301ffa com.apple.SystemMigration 2.6 (183.2) <740eed2c89d71128b76b99841a333c92> /System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/SystemMi gration
    0x37b000 - 0x3b1fff com.apple.MediaKit 9.1 (396) <6672e53d54dcf63ab1981d8c4af99388> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x3c2000 - 0x48bff5 com.apple.DiscRecording 4.0.1 (4010.4.5) <a78fc46978268fd4f24bc9175f972938> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x4f6000 - 0x50bffd com.apple.NetInfo 1.0.0 (???) <672281375ad838f541a5d59492dd4792> /System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/NetInfo
    0x516000 - 0x60efe0 com.apple.DiskImagesFramework 10.5.3 (195) <070a3156f309e10fd182a69d0b63a31b> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x674000 - 0x69efe4 com.apple.framework.Apple80211 5.2.1 (521.5.1) <f03bb2ac5eead2326ad76322b11bcad5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x6af000 - 0x6daffb libcurl.4.dylib ??? (???) <0f62e0bfb310b07086810ec3ef76847a> /usr/lib/libcurl.4.dylib
    0x3919b000 - 0x3919dffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x391a3000 - 0x391a4ffd com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x391a9000 - 0x39217ff7 com.apple.Bluetooth 2.1 (2.1f17) <29ab5843bb608c155d4d7353320c2194> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x39263000 - 0x39266fff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x39277000 - 0x3927cfff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <d7aa79798607f865bd48718e2acd6e2b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x39b38000 - 0x39c56ff7 com.apple.RawCamera.bundle 2.0.6 (2.0.6) <c1827b6058c0368f23005d9f6e7d2f82> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x4d57d000 - 0x4d5d2fff com.apple.GraphKit 1.0.4 (24) <8aa86f159eeacaff3791796163358bcb> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <5013f43c4d2c33c9619011f103ec3238> /usr/lib/dyld
    0x90003000 - 0x9003cffe com.apple.securityfoundation 3.0 (32989) <d25780b149d9b0b518899c8aade0b61f> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9003d000 - 0x9007cfef libTIFF.dylib ??? (???) <4b7d3b3b9a9c8335c2538371cb39b60b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9007d000 - 0x9007dfff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x900ec000 - 0x9012efef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9012f000 - 0x9012fffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90130000 - 0x90132ff5 libRadiance.dylib ??? (???) <c307054a6d8337c85ef501780b54704d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90133000 - 0x90143fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90144000 - 0x9014afff com.apple.print.framework.Print 218.0.2 (220.1) <2979f3be4e7e8adc875bf21658e9be94> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9014b000 - 0x90152ff7 libCGATS.A.dylib ??? (???) <02a2c63ef94a180f9a0924cbff8d01ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90153000 - 0x9028bff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x90682000 - 0x90684fff com.apple.securityhi 3.0 (30817) <020419ad33b8638b174e1a472728a894> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x907fc000 - 0x908e1ff3 com.apple.CoreData 100.1 (186) <9187380c86061cb4c37b6bec8abeae75> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x908e2000 - 0x90be9ff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90bea000 - 0x910bdffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x910be000 - 0x910e9fe7 libauto.dylib ??? (???) <2072d673706bbe463ed2426af57a28d7> /usr/lib/libauto.dylib
    0x910ea000 - 0x910ebffc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x910ec000 - 0x91148ff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91153000 - 0x913cefe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x913cf000 - 0x9140dff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x914ef000 - 0x914f8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x914f9000 - 0x91504ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9150a000 - 0x9158cffb com.apple.CFNetwork 330 (330) <6c5eda16e640b09334809ba4c1df985d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9158d000 - 0x91591fff libGIF.dylib ??? (???) <75b4fd9684d792add088205f987fb02e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91592000 - 0x915aafff com.apple.openscripting 1.2.6 (???) <4e0b05f9f47c6f7e2b01b321b2eb1413> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x915ab000 - 0x91625ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91626000 - 0x91786ff3 libSystem.B.dylib ??? (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
    0x91787000 - 0x91852fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91853000 - 0x9190dfe3 com.apple.CoreServices.OSServices 226.3 (226.3) <456bdd65b936baf1ef497b74b4f960a8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9190e000 - 0x9194ffe7 libRIP.A.dylib ??? (???) <c8d988d3880d7268468112c64c626d86> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91950000 - 0x9195bfe7 libCSync.A.dylib ??? (???) <8011fc1963cebdde0c6f101dbee5afd7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91bfe000 - 0x91bfeffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91cae000 - 0x91cdbfeb libvDSP.dylib ??? (???) <2ee4eb005babc90eaa352b33eb09226e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cdc000 - 0x91d83feb com.apple.QD 3.11.52 (???) <d6efc4827b91e646965d15c409a6610f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91e86000 - 0x91f38ffb libcrypto.0.9.7.dylib ??? (???) <8f92cbdc8777bea2ec49b06ee79fabc0> /usr/lib/libcrypto.0.9.7.dylib
    0x91f3f000 - 0x91f3fffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91f40000 - 0x91fccff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92000000 - 0x92087ff7 libsqlite3.0.dylib ??? (???) <11311084bc4be9d4555dfac74fe7218a> /usr/lib/libsqlite3.0.dylib
    0x92088000 - 0x9208afff com.apple.CrashReporterSupport 10.5.2 (157) <0083eb79c8d2c0bb30961d1a06d62994> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9208b000 - 0x92097fe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9213c000 - 0x92148fff libbz2.1.0.dylib ??? (???) <e266a580d35c4518eee864dc064e4b98> /usr/lib/libbz2.1.0.dylib
    0x92149000 - 0x924dffff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x924e1000 - 0x92531ff7 com.apple.HIServices 1.7.0 (???) <f83f0cb838a646c69f08fd38a31265f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92571000 - 0x92581ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <fc8a73eb3d8b94467d46b81759f65d97> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92582000 - 0x92615ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92616000 - 0x9263efff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x9263f000 - 0x9280cfe7 com.apple.security 5.0.3 (33532) <3bef414f3c6f433e707ac5abee340e16> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9280d000 - 0x9293ffff com.apple.CoreFoundation 6.5.2 (476.13) <b633d15f2901d73670cb1475628df1b3> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92940000 - 0x92fdcfff com.apple.CoreGraphics 1.351.31 (???) <c97a42498636b2596764e48669f98e00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93080000 - 0x9309bff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9309c000 - 0x93126fe3 com.apple.DesktopServices 1.4.6 (1.4.6) <94d1a28b351b7dff77becadab0967772> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93284000 - 0x932bbfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x932bc000 - 0x932e0feb libssl.0.9.7.dylib ??? (???) <0ee18f8589ed06aabdc1df5b37a801cd> /usr/lib/libssl.0.9.7.dylib
    0x933c3000 - 0x93491ff7 com.apple.JavaScriptCore 5525.17 (5525.17) <6d94a2fa975b6fc947bd28228a6bc830> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93492000 - 0x93496fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93497000 - 0x934b5ff3 com.apple.DirectoryService.Framework 3.5.3 (3.5.3) <a3277abd826960efb44258699adafc17> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x934b6000 - 0x934caff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x934cb000 - 0x93547feb com.apple.audio.CoreAudio 3.1.0 (3.1) <be7120e91df91425e904d5327b4338b7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93548000 - 0x9360fff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93610000 - 0x93617ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x93618000 - 0x9362efe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93635000 - 0x9367ffe1 com.apple.securityinterface 3.0 (32532) <e849f522f5055fb9083609a3c6e32280> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93cd1000 - 0x93cdfffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x93ce0000 - 0x93e26ff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93e27000 - 0x93e2afff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94f71000 - 0x94f76fff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94f77000 - 0x94f77ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94f78000 - 0x94fbefef com.apple.Metadata 10.5.2 (398.18) <adbb3a14e8f7da444e16d2fd61862771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94fbf000 - 0x94fbfffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94fc0000 - 0x9504bfff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9504c000 - 0x9506bffa libJPEG.dylib ??? (???) <c776945af9d960ccf5a80aa2d89fd918> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9506c000 - 0x95090fff libxslt.1.dylib ??? (???) <59399cc446ed903fd9479526ee9f116b> /usr/lib/libxslt.1.dylib
    0x950ab000 - 0x950c9fff libresolv.9.dylib ??? (???) <32ccbe19e89a3fdd09a0c88151ea508c> /usr/lib/libresolv.9.dylib
    0x950d2000 - 0x95106fef com.apple.bom 9.0 (136) <eca0b933894328d4b005df53c80b67cb> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x95107000 - 0x95160ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x951b2000 - 0x951c8fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x952be000 - 0x95598ff3 com.apple.CoreServices.CarbonCore 786.4 (786.4) <059c4803a7a95e3c1a95a332baeb1edf> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x955ca000 - 0x95dc7fef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95dc8000 - 0x95e78fff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95e79000 - 0x95e99ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95e9a000 - 0x95ec9fe3 com.apple.AE 402.2 (402.2) <d0da935e781446faa4563e7a9c587cce> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95eca000 - 0x96288fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96289000 - 0x963adfe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x963ae000 - 0x9648fff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x96490000 - 0x96490ff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96491000 - 0x964eeffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x964ef000 - 0x96517ff7 com.apple.shortcut 1 (1.0) <5b57f8f162f77a1739b436900517d672> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9672f000 - 0x96769fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x967dd000 - 0x967ecfff libsasl2.2.dylib ??? (???) <75b9d97ca7c3d53cd38bdd420a377522> /usr/lib/libsasl2.2.dylib
    0x967ed000 - 0x967f5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <42908e7ecc17a83cec4afef2850ec79e> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x967f6000 - 0x9683afeb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <7e80635e8f1380dbf4af27e17e709fcb> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9683b000 - 0x968b8fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968f0000 - 0x968f4fff com.apple.OpenDirectory 10.5 (10.5) <29f7b10aad34ba8eb15b55d69dff6ddf> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x968f5000 - 0x9694fff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96950000 - 0x9695afeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9695b000 - 0x969eefff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x969ef000 - 0x96a6eff5 com.apple.SearchKit 1.2.0 (1.2.0) <5abfde5537969168b8a8743ccb9ec735> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96a6f000 - 0x96b4efff libobjc.A.dylib ??? (???) <99a9ad33ca07114848fdd7580968a572> /usr/lib/libobjc.A.dylib
    0x96c87000 - 0x97097fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97098000 - 0x97098ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97099000 - 0x970a0fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x970a1000 - 0x970b2ffe com.apple.CFOpenDirectory 10.5 (10.5) <01a0034b48d63524057b5f57dfc0605c> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x97120000 - 0x97120ff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Without having read through all the log you enclosed I did notice that the computer is concerned about permissions. A first step is to Open Disk Utility, select the hd and Repair permissions. If there is a list of permissions repaired rerun this to verify that there are no more repairs needed. It takes about 10 mins to do this (each time).
    After this you can try one of the installers again to see whether it works.
    If not, I suggest that you insert the original installation dvd and restart holding the C key until the Select your language screen appears. Do this and on the next screen select Disk Utility from the tools menu. This time select your hd and choose repair disk. If there are repairs indicated and completed, rerun this to check that there are no more needed then rerun Repair permissions until these are clear too. Then restart and see whether installers will work.
    Neville

  • My Safari Crashes even before loading. Im having somewhat similar problems with firefox!

    My Safari Crashes even before loading. Im having somewhat similar problems with firefox!
    Please help!!
    This is the error message that safari shows me:
    Process:         WebProcess [1123]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.30.1)
    Build Info:      WebKit2-7536030001000000~9
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         501
    Date/Time:       2013-07-03 21:38:16.680 +0530
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          61924 sec
    Crashes Since Last Report:           16808
    Per-App Interval Since Last Report:  266139 sec
    Per-App Crashes Since Last Report:   28
    Anonymous UUID:                      E12FA0FD-09AA-06A5-CD87-62E3F11BE7E4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.VideoToolbox                  0x00007fff8d92b932 DYLD-STUB$$CFPreferencesCopyValue + 0
    1   com.apple.VideoToolbox                  0x00007fff8d56efe8 VTSelectAndCreateVideoDecoderInstance + 44
    2   com.apple.MediaToolbox                  0x00007fff8dd96a40 FigMediaValidatorValidateRFC4281ExtendedMIMEType + 3281
    3   com.apple.avfoundation                  0x00007fff8d4242f2 +[AVURLAsset isPlayableExtendedMIMEType:] + 71
    4   com.apple.WebCore                       0x00007fff8e11aa85 WebCore::MediaPlayerPrivateAVFoundationObjC::supportsType(***::String const&, ***::String const&) + 261
    5   com.apple.WebCore                       0x00007fff8e980751 WebCore::bestMediaEngineForTypeAndCodecs(***::String const&, ***::String const&, ***::String const&, WebCore::MediaPlayerFactory*) + 369
    6   com.apple.WebCore                       0x00007fff8e980967 WebCore::MediaPlayer::supportsType(WebCore::ContentType const&, ***::String const&, WebCore::MediaPlayerSupportsTypeClient const*) + 295
    7   com.apple.WebCore                       0x00007fff8e728386 WebCore::HTMLMediaElement::canPlayType(***::String const&, ***::String const&) const + 54
    8   com.apple.WebCore                       0x00007fff8e180be5 WebCore::jsHTMLMediaElementPrototypeFunctionCanPlayType(JSC::ExecState*) + 309
    9   ???                                     0x00004012d7601265 0 + 70449666986597
    10  com.apple.JavaScriptCore                0x00007fff91cc88d0 JSC::Interpreter::execute(JSC::ProgramExecutable*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*) + 3104
    11  com.apple.JavaScriptCore                0x00007fff91d807f3 JSC::evaluate(JSC::ExecState*, JSC::ScopeChainNode*, JSC::SourceCode const&, JSC::JSValue, JSC::JSValue*) + 339
    12  com.apple.WebCore                       0x00007fff8e03c063 WebCore::ScriptController::evaluateInWorld(WebCore::ScriptSourceCode const&, WebCore::DOMWrapperWorld*) + 467
    13  com.apple.WebCore                       0x00007fff8e03bc79 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 41
    14  com.apple.WebCore                       0x00007fff8e05ed8b WebCore::ScriptElement::executeScript(WebCore::ScriptSourceCode const&) + 155
    15  com.apple.WebCore                       0x00007fff8e093195 WebCore::HTMLScriptRunner::executePendingScriptAndDispatchEvent(WebCore::Pendin gScript&) + 213
    16  com.apple.WebCore                       0x00007fff8e0930b0 WebCore::HTMLScriptRunner::executeParsingBlockingScript() + 208
    17  com.apple.WebCore                       0x00007fff8e7373b8 WebCore::HTMLScriptRunner::executeParsingBlockingScripts() + 24
    18  com.apple.WebCore                       0x00007fff8e736f34 WebCore::HTMLScriptRunner::execute(***::PassRefPtr<WebCore::Element>, ***::TextPosition const&) + 100
    19  com.apple.WebCore                       0x00007fff8e05e2f4 WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder() + 84
    20  com.apple.WebCore                       0x00007fff8dff90f8 WebCore::HTMLDocumentParser::canTakeNextToken(WebCore::HTMLDocumentParser::Sync hronousMode, WebCore::PumpSession&) + 88
    21  com.apple.WebCore                       0x00007fff8dff8f1c WebCore::HTMLDocumentParser::pumpTokenizer(WebCore::HTMLDocumentParser::Synchro nousMode) + 268
    22  com.apple.WebCore                       0x00007fff8e70e360 WebCore::HTMLDocumentParser::resumeParsingAfterScriptExecution() + 112
    23  com.apple.WebCore                       0x00007fff8e094682 WebCore::HTMLDocumentParser::notifyFinished(WebCore::CachedResource*) + 114
    24  com.apple.WebCore                       0x00007fff8e09456d WebCore::CachedResource::checkNotify() + 93
    25  com.apple.WebCore                       0x00007fff8e091cbf WebCore::SubresourceLoader::didFinishLoading(double) + 143
    26  com.apple.Foundation                    0x00007fff94f4cd88 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 28
    27  com.apple.Foundation                    0x00007fff94f4cccc -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 227
    28  com.apple.Foundation                    0x00007fff94f4cbc8 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 63
    29  com.apple.CFNetwork                     0x00007fff97b79091 ___delegate_didFinishLoading_block_invoke_0 + 40
    30  com.apple.CFNetwork                     0x00007fff97b6b54a ___withDelegateAsync_block_invoke_0 + 90
    31  com.apple.CFNetwork                     0x00007fff97bfbf3a __block_global_1 + 28
    32  com.apple.CoreFoundation                0x00007fff94d75154 CFArrayApplyFunction + 68
    33  com.apple.CFNetwork                     0x00007fff97b5c2b4 RunloopBlockContext::perform() + 124
    34  com.apple.CFNetwork                     0x00007fff97b5c18b MultiplexerSource::perform() + 221
    35  com.apple.CoreFoundation                0x00007fff94d56b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    36  com.apple.CoreFoundation                0x00007fff94d56455 __CFRunLoopDoSources0 + 245
    37  com.apple.CoreFoundation                0x00007fff94d797f5 __CFRunLoopRun + 789
    38  com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    39  com.apple.HIToolbox                     0x00007fff95edceb4 RunCurrentEventLoopInMode + 209
    40  com.apple.HIToolbox                     0x00007fff95edcc52 ReceiveNextEventCommon + 356
    41  com.apple.HIToolbox                     0x00007fff95edcae3 BlockUntilNextEventMatchingListInMode + 62
    42  com.apple.AppKit                        0x00007fff99031533 _DPSNextEvent + 685
    43  com.apple.AppKit                        0x00007fff99030df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    44  com.apple.AppKit                        0x00007fff990281a3 -[NSApplication run] + 517
    45  com.apple.WebCore                       0x00007fff8ea4f4ff WebCore::RunLoop::run() + 63
    46  com.apple.WebKit2                       0x00007fff94851462 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    47  com.apple.WebKit2                       0x00007fff94817bfd WebKitMain + 285
    48  com.apple.WebProcess                    0x0000000106d67e7b 0x106d67000 + 3707
    49  libdyld.dylib                           0x00007fff93f437e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff90316d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9a158dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9a1589ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 4:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff91eddbfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff94f67546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff94fc5562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 10:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff8ea645e1 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 14:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff90316322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff94db8f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 15:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8ea89d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8dfda12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 16:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8ea89d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8dfda12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 17:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff952a32d6 listenOnDelegatePort + 403
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 18:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff952a3771 listenOnNotificationPort + 371
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7e2b3708  rbx: 0x0000000000000000  rcx: 0x00007fff7e2a4660  rdx: 0x00007fff7e2a46e0
      rdi: 0x00007fff7d2b3820  rsi: 0x00007fff7d2b3480  rbp: 0x00007fff58e95260  rsp: 0x00007fff58e951b8
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff7d38a638  r11: 0x00007fff58e95264
      r12: 0x0000000000000000  r13: 0x00007fe5cbc32620  r14: 0x0000000000000000  r15: 0x00007fff7e28a4e0
      rip: 0x00007fff8d92b932  rfl: 0x0000000000010246  cr2: 0x00007fff7d2b62a8
    Logical CPU: 0
    Binary Images:
           0x106d67000 -        0x106d67fff  com.apple.WebProcess (8536 - 8536.30.1) <F967F09F-969C-3788-9376-7B4067F402B4> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x106d6f000 -        0x106d6ffff  WebProcessShim.dylib (7536.30.1) <15AC7990-1B63-3AD9-905F-7331C901A578> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x109d96000 -        0x109dacfff  com.apple.WebInspector (8536 - 8536.30) <7DD903D1-505E-34D3-835A-15BE44CC49B6> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x10b1da000 -        0x10b1f0ff7  com.apple.webcontentfilter.framework (3.1 - 5) <E18D99F4-A52C-30C8-9D70-D0E34DB9D68C> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x10d538000 -        0x10d55efff  libPDFRIP.A.dylib (332) <22085533-A0BE-3660-9312-7BC9E2A69576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
           0x10dc77000 -        0x10de35fff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10de6c000 -        0x10dfdcfff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10e014000 -        0x10e3d1ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x10e501000 -        0x10e50efff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10e515000 -        0x10e540fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e549000 -        0x10e552fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff66967000 -     0x7fff6699b93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8d214000 -     0x7fff8d2affff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d2b0000 -     0x7fff8d2bbff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8d2bc000 -     0x7fff8d35aff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8d35b000 -     0x7fff8d3b1fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d3b2000 -     0x7fff8d3b2fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d3b7000 -     0x7fff8d4e1ff7  com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8d4e2000 -     0x7fff8d54aff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d54b000 -     0x7fff8d987fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8d988000 -     0x7fff8da54ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8da55000 -     0x7fff8daacff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8dc6c000 -     0x7fff8dc75ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8dc76000 -     0x7fff8df2dff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8df2e000 -     0x7fff8dfaeff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8dfaf000 -     0x7fff8dfbaff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8dfbb000 -     0x7fff8ef7aff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8ef7b000 -     0x7fff8ef7efff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8efba000 -     0x7fff8efbcfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8efbd000 -     0x7fff8f063ff7  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
        0x7fff8f064000 -     0x7fff8f0c0ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f0c1000 -     0x7fff8f0c5fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8f0c6000 -     0x7fff8f0c8ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8f1f8000 -     0x7fff8f2e9ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8f2ea000 -     0x7fff8f324fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8f325000 -     0x7fff8f353fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f36e000 -     0x7fff8f3c5ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8fc7c000 -     0x7fff8fc7cfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8fc7d000 -     0x7fff8fed8ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8fed9000 -     0x7fff8fedefff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8fedf000 -     0x7fff8fee1fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fee2000 -     0x7fff90117ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff90162000 -     0x7fff90213fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90214000 -     0x7fff90270fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff90271000 -     0x7fff90271fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90280000 -     0x7fff90283fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90284000 -     0x7fff90295ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff90296000 -     0x7fff90303ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90304000 -     0x7fff9031fff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff90320000 -     0x7fff9037ffff  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
        0x7fff90380000 -     0x7fff903c3ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff904ed000 -     0x7fff904efff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff904f0000 -     0x7fff90511fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff90512000 -     0x7fff90555ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff90556000 -     0x7fff905b0ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff905b1000 -     0x7fff906c992f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff906ca000 -     0x7fff906ccfff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff906cd000 -     0x7fff90729fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff90759000 -     0x7fff90907fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff909ba000 -     0x7fff909c0ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff909c1000 -     0x7fff90cd8ff7  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
        0x7fff90cd9000 -     0x7fff90e5ffff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff90e60000 -     0x7fff90e6ffff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff90e70000 -     0x7fff90ea6fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90ea7000 -     0x7fff90fa5fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff90fa6000 -     0x7fff90fd2fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff90fd3000 -     0x7fff90fd6fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff90fd7000 -     0x7fff9102cff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff91039000 -     0x7fff91043fff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
        0x7fff91134000 -     0x7fff91138fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff91139000 -     0x7fff9114ffff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff91150000 -     0x7fff911a9ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff911aa000 -     0x7fff9129ffff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff912a0000 -     0x7fff912a0fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff913fb000 -     0x7fff914fdfff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff91527000 -     0x7fff9153efff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff9153f000 -     0x7fff9163cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff9163d000 -     0x7fff9178ffff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff917f0000 -     0x7fff917f7fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91831000 -     0x7fff91840ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff91841000 -     0x7fff91868ff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff91869000 -     0x7fff9186dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff9186e000 -     0x7fff91880ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff91881000 -     0x7fff918abff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff918ad000 -     0x7fff918e4ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff918e5000 -     0x7fff918ecfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff918ed000 -     0x7fff91904fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff91905000 -     0x7fff9195ffff  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
        0x7fff91960000 -     0x7fff9196efff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9196f000 -     0x7fff919abfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91b5e000 -     0x7fff91c7efff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91c7f000 -     0x7fff91c80ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff91c81000 -     0x7fff91cb3fff  com.apple.framework.Admin (12.1 - 12.1) <2DA7835C-D3AB-3512-BDC1-03F437270772> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff91cb4000 -     0x7fff91f4fff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91f62000 -     0x7fff9237ffff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff92380000 -     0x7fff92380fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff9238e000 -     0x7fff923d9fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff923da000 -     0x7fff92575fef  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
        0x7fff92576000 -     0x7fff92584fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92587000 -     0x7fff925a9ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff925ac000 -     0x7fff925b8fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff925b9000 -     0x7fff925bdfff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff925be000 -     0x7fff92609fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9260a000 -     0x7fff92610fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff92611000 -     0x7fff92612fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff9261c000 -     0x7fff9261dff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff9262f000 -     0x7fff9264aff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff9264b000 -     0x7fff92656ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff92657000 -     0x7fff92659fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9265a000 -     0x7fff926cafff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff926f4000 -     0x7fff92757ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff92758000 -     0x7fff92766ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff927c5000 -     0x7fff927c9fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff927ca000 -     0x7fff92a6eff7  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
        0x7fff92a6f000 -     0x7fff92ad8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff92b86000 -     0x7fff92ba5ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92ba6000 -     0x7fff92bb1fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff92bb2000 -     0x7fff92beffef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff92bf0000 -     0x7fff92c03ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff92c04000 -     0x7fff92ffbfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff92ffc000 -     0x7fff93090ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff93094000 -     0x7fff930ccfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff93136000 -     0x7fff93158ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff93159000 -     0x7fff93160fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff93161000 -     0x7fff931b2ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff931b8000 -     0x7fff931b9fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff939b5000 -     0x7fff939ccfff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff939cd000 -     0x7fff939e0ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff939e1000 -     0x7fff93a4fff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff93a62000 -     0x7fff93a63ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff93a64000 -     0x7fff93a64fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff93a65000 -     0x7fff93af4fff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
        0x7fff93af5000 -     0x7fff93b82ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff93f41000 -     0x7fff93f44ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff93f45000 -     0x7fff93f73ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff93f75000 -     0x7fff93fbdfff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff93fbe000 -     0x7fff9400bfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff9400c000 -     0x7fff94126fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff94173000 -     0x7fff941a4ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff941c0000 -     0x7fff9429afff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9429b000 -     0x7fff942daff7  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
        0x7fff942db000 -     0x7fff942e7fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff9431e000 -     0x7fff94352fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff9435d000 -     0x7fff943defff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff943ee000 -     0x7fff94438ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff94439000 -     0x7fff94639fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff9463a000 -     0x7fff94745fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94746000 -     0x7fff9474cfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff9474d000 -     0x7fff94939ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff9493a000 -     0x7fff94986ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff94a12000 -     0x7fff94a61fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff94b29000 -     0x7fff94b31ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff94b32000 -     0x7fff94b9afff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff94bf1000 -     0x7fff94cf3fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94cf4000 -     0x7fff94d43ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff94d44000 -     0x7fff94f2eff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff94f2f000 -     0x7fff9528efff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9528f000 -     0x7fff95400ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff95401000 -     0x7fff9542dfff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff95473000 -     0x7fff954b3ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff954b4000 -     0x7fff954c1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9552a000 -     0x7fff95579ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff9557a000 -     0x7fff95588ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff95589000 -     0x7fff9563cff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9563d000 -     0x7fff9563dfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9563e000 -     0x7fff9579cfef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9579d000 -     0x7fff957a2fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff957a3000 -     0x7fff95876ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff95879000 -     0x7fff958a2fff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
        0x7fff958a3000 -     0x7fff958aeff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff958af000 -     0x7fff959c8fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff959c9000 -     0x7fff959d6fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff959dc000 -     0x7fff959dcfff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff959dd000 -     0x7fff95a13fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff95a14000 -     0x7fff95a4eff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff95a4f000 -     0x7fff95cbcff7  com.apple.RawCamera.bundle (4.07 - 696) <CCB97D78-309C-3CD9-B499-81192069A333> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff95cbd000 -     0x7fff95cbefff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff95cbf000 -     0x7fff95e4afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff95e4b000 -     0x7fff95e4fff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff95e50000 -     0x7fff95e7cff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff95e7d000 -     0x7fff961adfff  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
        0x7fff96209000 -     0x7fff962c6ff7  com.apple.ColorSyn

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output andWi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I have a problem with iMovie since the last update to 9.0.7

    I have a problem with iMovie since the last update to 9.0.7 when you press the camera button to import iMovie vypíče stops and an error message. Or he'll file> import from camera so iMovie also quits.

    Process:         iMovie [892]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.7 (1768)
    Build Info:      iMovieApp-1768000000000000~2
    App Item ID:     408981434
    App External ID: 9556074
    Code Type:       X86 (Native)
    Parent Process:  launchd [268]
    User ID:         501
    Date/Time:       2012-07-29 20:23:32.029 +0200
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          8984 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  280 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      0EBB5AAE-B67D-4EFD-AA84-E30FBE793426
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000007bef5184
    VM Regions Near 0x7bef5184:
        __LINKEDIT             000000007016d000-00000000701d2000 [  404K] r--/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    --> MALLOC_TINY            000000007be00000-000000007bf00000 [ 1024K] rw-/rwx SM=COW 
        MALLOC_SMALL           000000007c000000-000000007c800000 [ 8192K] rw-/rwx SM=PRV 
    Application Specific Information:
    Performing @selector(a_noCaptureDevicesAvailable:) from sender MediumButton 0x7cd87010
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                           0x7bef5184 0 + 2079281540
    1   com.apple.CMIOQTUnits         0x0eeff19b 0xeed4000 + 176539
    2   com.apple.CMIOQTUnits         0x0eeff5bf 0xeed4000 + 177599
    3   com.apple.CMIOQTUnits         0x0eedca8c 0xeed4000 + 35468
    4   com.apple.CMIOQTUnits         0x0eef9caa 0xeed4000 + 154794
    5   com.apple.QTKit               0x9a4e936c +[QTCaptureVDIGDevice _refreshDevices] + 470
    6   com.apple.QTKit               0x9a4e8ff4 +[QTCaptureVDIGDevice devicesWithIOType:] + 78
    7   com.apple.QTKit               0x9a44c8c6 +[QTCaptureDevice devicesWithIOType:] + 199
    8   com.apple.QTKit               0x9a439508 +[QTCaptureDevice inputDevices] + 41
    9   com.apple.QTKit               0x9a43944f +[QTCaptureDevice inputDevicesWithMediaType:] + 36
    10  com.apple.iMovieApp           0x000b5d83 0xaa000 + 48515
    11  com.apple.iMovieApp           0x000b4195 0xaa000 + 41365
    12  com.apple.iMovieApp           0x000ca004 0xaa000 + 131076
    13  com.apple.iMovieApp           0x000cc720 0xaa000 + 141088
    14  com.apple.iMovieApp           0x000c9cac 0xaa000 + 130220
    15  com.apple.iMovieApp           0x000cc9b8 0xaa000 + 141752
    16  com.apple.iMovieApp           0x000baa8b 0xaa000 + 68235
    17  com.apple.iMovieApp           0x000e32a3 0xaa000 + 234147
    18  libobjc.A.dylib               0x9a3285d3 -[NSObject performSelector:withObject:] + 70
    19  com.apple.AppKit              0x94f019a2 -[NSApplication sendAction:to:from:] + 436
    20  com.ecamm.iglasses            0x054d14ef newsendAction + 63
    21  com.apple.iMovieApp           0x000fbbdc 0xaa000 + 334812
    22  com.apple.AppKit              0x94f017b0 -[NSControl sendAction:to:] + 102
    23  com.apple.AppKit              0x94f016bf -[NSCell _sendActionFrom:] + 159
    24  com.apple.AppKit              0x94effc30 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    25  com.apple.AppKit              0x94eff46f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    26  com.apple.AppKit              0x94efeb89 -[NSControl mouseDown:] + 867
    27  com.apple.AppKit              0x94ef6841 -[NSWindow sendEvent:] + 6968
    28  com.apple.iMovieApp           0x002219db 0xaa000 + 1538523
    29  com.apple.AppKit              0x94ef181f -[NSApplication sendEvent:] + 4278
    30  com.apple.iMovieApp           0x000fb90c 0xaa000 + 334092
    31  com.apple.AppKit              0x94e0b73c -[NSApplication run] + 951
    32  com.apple.AppKit              0x94dae8e6 NSApplicationMain + 1053
    33  com.apple.iMovieApp           0x000ac62a 0xaa000 + 9770
    34  com.apple.iMovieApp           0x000ac195 0xaa000 + 8597
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x97819c02 __select_nocancel + 10
    1   libdispatch.dylib             0x9a006a5c _dispatch_mgr_invoke + 376
    2   libdispatch.dylib             0x9a0067fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate        0x039c672f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9781a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib             0x92f7004c _pthread_workq_return + 45
    2   libsystem_c.dylib             0x92f6fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib             0x92f57cca start_wqthread + 30
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x97819be6 __select + 10
    1   com.apple.CoreFoundation      0x98539320 __CFSocketManager + 1632
    2   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    3   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   ???                           0x9412758c 0 + 2484237708
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 8:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio     0x959e3536 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio     0x959de07c HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio     0x959dc8bb HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio     0x959dc2a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio     0x959e626a ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio     0x959dc1c3 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   ???                           0x945e17ce 0 + 2489194446
    2   ???                           0x94195e06 0 + 2484690438
    3   ???                           0x945e1560 0 + 2489193824
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x987e36b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore 0x987e3190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore 0x987e3419 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore 0x9878481a AIOFileThread(void*) + 892
    7   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    8   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 11:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92fffb08 pthread_cond_wait + 48
    3   ???                           0x9423e536 0 + 2485380406
    4   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    5   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72289 _pthread_cond_wait + 938
    2   libsystem_c.dylib             0x92f72512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x91fb4506 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation          0x91fb432d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation          0x91fb9880 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO         0x0de5c487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    8   com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    9   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    10  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.framework.IOKit     0x9227ccd6 io_connect_method + 404
    3   com.apple.framework.IOKit     0x9222503d IOConnectCallMethod + 520
    4   com.apple.framework.IOKit     0x922252f1 IOConnectCallStructMethod + 84
    5   com.apple.iokit.SCSITaskLib   0x0ee92a8a MMCDeviceUserClientClass::ModeSense10(unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 220
    6   com.apple.iokit.SCSITaskLib   0x0ee91e77 MMCDeviceUserClientClass::sModeSense10(void*, unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 81
    7   com.apple.DiscRecording       0x95e07f43 DRDevicePlugIn::ExecuteMMCDeviceTask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 815
    8   com.apple.DiscRecording       0x95e07b13 DRDevicePlugIn::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 71
    9   com.apple.DiscRecording       0x95e07984 DROpticalDevice::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 250
    10  com.apple.DiscRecording       0x95e0761b DROpticalDevice::ModeSense10(unsigned char, void*, unsigned short*) + 323
    11  com.apple.DiscRecording       0x95e074a8 DROpticalDevice::GetCDCapabilitiesPage(__CDCapabilitiesPage*) + 120
    12  com.apple.DiscRecording       0x95e0629a DROpticalDevice::InitializeState() + 924
    13  com.apple.DiscRecording       0x95e00c78 DROpticalDevice::Initialize(void*, __CFData const*, __CFString const*) + 228
    14  com.apple.DiscRecording       0x95e008e0 _DRDeviceCreate(void*, __CFData const*, __CFString const*, __CFDictionary const*) + 253
    15  com.apple.DiscRecording       0x95e007c0 -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:usingProfile:] + 46
    16  com.apple.DiscRecording       0x95e0078d -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:] + 55
    17  com.apple.DiscRecording       0x95e41ad6 _DRDeviceCreate + 172
    18  com.apple.DiscRecording       0x95dffd14 DROpticalDevice::Create(__CFData const*, __CFString const*) + 24
    19  com.apple.DiscRecording       0x95dffc53 DRDeviceManager::RegisterAuthoringDevice(__CFData const*, __CFString const*) + 57
    20  com.apple.DiscRecording       0x95dffba7 DRDeviceManager::IOCDDeviceMatched(DRDeviceManager*, unsigned int) + 209
    21  com.apple.DiscRecording       0x95dff812 DRDeviceManager::DRDeviceManager() + 402
    22  com.apple.DiscRecording       0x95dff666 DRDeviceManager::Create() + 30
    23  com.apple.DiscRecording       0x95dfe1a9 DRAutoInit::Initialize() + 759
    24  com.apple.DiscRecording       0x95dfdcdf DRDeviceCopyDeviceForBSDName + 126
    25  com.apple.MPEG2PSRADPlugin    0x0e73067d FenwayIsFolderSupported + 613
    26  com.apple.MPEG2PSRADPlugin    0x0e723c71 -[FenRAD pathIsValidVolume:] + 120
    27  com.apple.proapps.MIO         0x0de5c642 -[PluginLockPair mountPath:] + 290
    28  com.apple.proapps.MIO         0x0de5c3d6 -[PluginLockPair scanPaths] + 363
    29  com.apple.Foundation          0x91f86318 -[NSThread main] + 45
    30  com.apple.Foundation          0x91f8629b __NSThread__main__ + 1396
    31  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    32  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 15:: com.apple.bdplayback-DVDEventCallbackThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 16:: com.apple.bdplayback-TFThread
    0   libsystem_kernel.dylib        0x978198e2 __psynch_cvwait + 10
    1   libsystem_c.dylib             0x92f72220 _pthread_cond_wait + 833
    2   libsystem_c.dylib             0x92ff80ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.AVCHDPlugin         0x0e0eb58c WindowsEvent::Wait(int) + 86
    4   com.apple.AVCHDPlugin         0x0e11b4e1 IdleFiberEntry(void*) + 305
    5   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    6   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 17:: com.apple.bdplayback-OSXMessageThread
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 18:: com.apple.bdplayback-DDPTask
    0   libsystem_kernel.dylib        0x9781780e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin         0x0dfcdc9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin         0x0dfdb2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin         0x0df88bc1 ScheduleRoutine + 81
    4   com.apple.AVCHDPlugin         0x0dfcd300 ST20Thread::Run(PThreadRunParams*) + 38
    5   libsystem_c.dylib             0x92f71014 _pthread_body + 72
    Thread 19:
    0   libsystem_kernel.dylib        0x9781991a __psynch_mutexwait + 10
    1   libsystem_c.dylib             0x92f7313b pthread_mutex_lock + 595
    2   com.apple.DiscRecording       0x95dfdefc DRAutoInit::Initialize() + 74
    3   com.apple.DiscRecording       0x95dffa40 DRDiskArbitor::DiskAppearedCallback(__DADisk*, void*) + 30
    4   com.apple.DiskArbitration     0x902f6b8b _DADispatchCallback + 99
    5   com.apple.DiskArbitration     0x902f68c0 _DASessionCallback + 320
    6   com.apple.CoreFoundation      0x984c01ef __CFMachPortPerform + 303
    7   com.apple.CoreFoundation      0x984c00a5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    8   com.apple.CoreFoundation      0x984bfcd2 __CFRunLoopDoSource1 + 146
    9   com.apple.CoreFoundation      0x984f59c6 __CFRunLoopRun + 2038
    10  com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    11  com.apple.CoreFoundation      0x98504781 CFRunLoopRun + 129
    12  com.apple.DiscRecording       0x95dff285 DRWorkLoop::WorkLoop() + 273
    13  com.apple.DiscRecording       0x95dff15d DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    14  com.apple.DiscRecording       0x95dfeefe DRThreadObject::StartRoutine(DRThreadObject*) + 142
    15  com.apple.DiscRecording       0x95dfee6f DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    16  libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    17  libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib        0x978177d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97816cb0 mach_msg + 68
    2   com.apple.CoreFoundation      0x984efcc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation      0x984f56af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation      0x984f4d6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation      0x984f4bdb CFRunLoopRunInMode + 123
    6   com.apple.CoreMediaIO         0x92f1139f CMIO::DAL::RunLoop::OwnThread(void*) + 151
    7   com.apple.CoreMediaIO         0x92f08938 CAPThread::Entry(CAPThread*) + 176
    8   libsystem_c.dylib             0x92f6d557 _pthread_start + 344
    9   libsystem_c.dylib             0x92f57cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x008505a7  ebx: 0x0eefc77d  ecx: 0x0ef386a0  edx: 0x0ef3869c
      edi: 0x857aa140  esi: 0x00000000  ebp: 0xbff55388  esp: 0xbff54b3c
       ss: 0x00000023  efl: 0x00010246  eip: 0x7bef5184   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x7bef5184
    Logical CPU: 0
    Binary Images:
       0xaa000 -   0x52ffef  com.apple.iMovieApp (9.0.7 - 1768) <5BA2C2F7-B62A-3813-AC63-01FF73AF04A0> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5f2000 -   0x608ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x618000 -   0x619ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x61e000 -   0x64cfe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x686000 -   0x705ff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <679D1492-6CE0-3A36-85E7-B0B612CED18F> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x749000 -   0x867ff3  com.apple.WebKit (8536 - 8536.25) <5365AA39-A1A7-315D-AA1C-0C564909C0E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x919000 -   0x91aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x922000 -   0x923fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x928000 -   0x94dff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x955000 -   0x989fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x98f000 -   0xaf6fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xafd000 -   0xd00feb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd56000 -   0xdd7fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x110e000 -  0x12cbfeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x1301000 -  0x1f8bff3  com.apple.WebCore (8536 - 8536.24) <06F7EC1E-A7F2-37F1-ADC6-687284E661D8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x39c2000 -  0x39f3ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x3a69000 -  0x3a76ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3ab9000 -  0x3abcfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3ac1000 -  0x3b26fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3b9e000 -  0x3b9ffff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x3bac000 -  0x3badffe  com.apple.AddressBook.LocalSourceBundle (2.0 - 1143) <2D6A1C52-95F6-3BDF-BBEF-74A09A2642C1> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3bb2000 -  0x3bb5ffe  com.apple.DirectoryServicesSource (2.0 - 1143) <74F9B668-8028-334F-AC25-6A4588C5AFC9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x4478000 -  0x447fffc  com.apple.AppleGVAHW.component (1.1 - 1) <FC1BC394-2ACC-3611-B476-C3E991A901DE> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x4527000 -  0x4549ffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x54cc000 -  0x5500ff7 +com.ecamm.iglasses (v2.1.5 - 2.1.5) <3472A39E-58E9-1A03-6F10-E90966DE5D96> /Library/InputManagers/*/iGlasses.plugin/Contents/MacOS/iGlasses
    0x551b000 -  0x5563ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/CoreMediaIOServ ices
    0x5584000 -  0x55abff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/CoreMediaPrivate
    0x5869000 -  0x58bafff  com.apple.AddressBook.CardDAVPlugin (10.8 - 320) <8A8BD10E-04F2-385A-B93B-CD03E13BA4B6> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x58d7000 -  0x5937fff  com.apple.coredav (1.0.1 - 179.4) <3E62FDFC-D3A7-3196-A11F-93F54FF44EB8> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x5970000 -  0x597dffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x5987000 -  0x5996ffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x59a1000 -  0x59a8ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x59b2000 -  0x5a0efff  com.apple.corelocation (1.0 - 1239.35) <6E266E57-FA31-3B35-9CFD-29AA45B52C7B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x5a3b000 -  0x5a6dff3  com.apple.GeoServices (1.0 - 1) <5D61BA20-171C-373D-A8F0-BCC02AD1DD81> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x5a7f000 -  0x5a88fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x8cda000 -  0x8e66ff8  GLEngine (8.5) <23C1BECF-D0EF-339D-B312-EFACB26C5983> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8e9d000 -  0x8feeff7  libGLProgrammability.dylib (8.5) <27E2DAE2-DECE-364C-A1C2-138735A3869E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x901c000 -  0x9028ffb  libGPUSupport.dylib (8.5) <DCEDB13E-6E2C-3D14-965E-70522403723B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x902f000 -  0x905bffa  GLRendererFloat (8.5) <1E69D3D7-1782-3FF8-AB52-3F23DC4F617B> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x9064000 -  0x906cff2  libcldcpuengine.dylib (2.1.16) <61717F57-9AAC-31B4-8894-27A1BF7987B9> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x9073000 -  0x9075fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x90f6000 -  0x91b4ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94a1000 -  0x94a1fff  com.apple.iLMBAppDefPlugin (2.7.1 - 327) <F64F0E0D-1124-30F2-8964-A930DC52448D> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x94a6000 -  0x94a7fff  com.apple.iLMBFolderPlugin (2.7.1 - 327) <2B5245FC-4009-3AF0-9046-3CA2CC9382BE> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x94ae000 -  0x94b5ff8  com.apple.iLMBAperturePlugin (2.7.1 - 327) <CF4434CB-6D74-3D2A-9763-A9E510C117CA> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x94bc000 -  0x94bffff  com.apple.iLMBGarageBandPlugin (2.7.1 - 327) <79CFDFDA-6C6C-3005-8B93-C0DDFEB091A6> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x9523000 -  0x9672ff7  com.apple.iLMBAperture31Plugin (2.7.1 - 327) <E019FCC1-82E9-3B5C-8857-C400E2A0C542> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x96ba000 -  0x985effb  com.apple.iLMBAperturePlugin2012 (2.7.1 - 327) <B478A96B-9977-38B0-90CF-6295DEAD35AC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x98de000 -  0x98e7ffd  com.apple.iLMBFinalCutPlugin (2.7.1 - 327) <AADD0E89-19B5-3B28-97F8-7EB1D3415D42> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x98ee000 -  0x98f9ffd  com.apple.iLMBiMoviePlugin (2.7.1 - 327) <9D46F8D8-DF2B-3FC5-A370-7E9392D82181> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x9901000 -  0x9914fff  com.apple.iLMBiPhoto8Plugin (2.7.1 - 327) <AF08A61A-B994-34C5-A266-E53382D3C3B5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x991c000 -  0x9a6dfff  com.apple.iLMBiPhoto9Plugin (2.7.1 - 327) <23389FAA-EF09-3E96-9E56-9599C7C777D5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x9ab5000 -  0x9abdffb  com.apple.iLMBiPhotoPlugin (2.7.1 - 327) <0BCB9184-2CF4-3E30-AB5B-BC54CA0A459D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x9ac4000 -  0x9c69ff3  com.apple.iLMBiPhotoPlugin2012 (2.7.1 - 327) <A10C2006-1338-3D88-A367-5AE4A0AB7BAB> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9cc4000 -  0x9cccffe  com.apple.iLMBiTunesPlugin (2.7.1 - 327) <E7755FD8-BEAA-3A4C-973F-273432FBA0CD> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9cd3000 -  0x9d8aff7  com.apple.iTunesAccess (10.6.3 - 10.6.3) <20F54184-69D0-468A-CEA5-1665192AF5BA> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9dba000 -  0x9dbbfff  com.apple.iLMBMoviesFolderPlugin (2.7.1 - 327) <9EDCCFF3-FEA7-3F34-8711-A1078D1DE025> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x9dc0000 -  0x9dc2ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.1 - 327) <98886D3A-BB21-3939-9DA2-0793D05B799A> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x9dc8000 -  0x9dc9ffd  com.apple.iLMBPhotoBoothPlugin (2.7.1 - 327) <5C980E93-FB91-31E0-849F-F403A1B9A898> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xa5af000 -  0xa5c1fd9  com.apple.FCP Uncompressed 422.component (1.5 - 1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb28b000 -  0xb290fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <D971DBC9-B1D6-3F20-A6EA-B165C32A4E69> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xbf30000 -  0xbf30ff7 +cl_

  • Problem with SheepShaver with Leopard

    Hello everyone!
    I´m having problem to run the SheepShaver at my eMac G4 (1 GB Ram). I can't create my virtual HD because every time I click on "save" the program collapse and don't respond. I can boot OS 8.6 perfect with SheepShaver but if I can't create the Virtual HD and save the specifications of Ram and size just can't continue with the installation.
    http://www.emaculation.com/doku.php/sheepshaver_mac_os_x_setup
    (Every time I click on "Save" the SheepShaver don´t respond enymore).
    Can anyone help me?
    Thanks in advance!
    Carlos

    This is the problem report:
    Date/Time:      2014-08-10 17:03:06 -0300
    OS Version:     10.5.8 (Build 9L31a)
    Architecture:   ppc
    Report Version: 4
    Command:        SheepShaver
    Path:           /Applications/SheepShaver/SheepShaver.app/Contents/MacOS/SheepShaver
    Version:        ??? (???)
    Parent:         launchd [70]
    PID:            262
    Event:          hang
    Time:           7.42s
    Steps:          41
    Process:        SheepShaver [262]
    Path:           /Applications/SheepShaver/SheepShaver.app/Contents/MacOS/SheepShaver
      ADDRESS         BINARY
      00411000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      0041a000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      14a23000        /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
      14e6d000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      160cb000        /System/Library/PrivateFrameworks/URLMount.framework/URLMount
      16976000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      30000000        /Applications/SheepShaver/SheepShaver.app/Contents/MacOS/../Frameworks/SDL.fram ework/Versions/A/SDL
      70000000        /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
      78048000        /Applications/SheepShaver/SheepShaver.app/Contents/MacOS/SheepShaver
      Thread id:      352c3a8
      User stack:
        41 __sigtramp + 68 (in libSystem.B.dylib) [0x92a7489c]
          41 __Z14sigill_handleriP9__siginfoPv + 1344 (in SheepShaver) [0x78083500]
      Kernel stack:
        13 _aaFPopTable + 720 [0xb12d0]
          12 _host_processor_set_priv + 48 [0x27888]
            12 _semaphore_signal_all_trap + 72 [0x36b98]
              12 _AltivecAssist + 708 [0xb1fa4]
          1 ??? [0x78083500]
            1 _rtclock_intr + 260 [0xb4278]
              1 _AlignAssist + 472 [0xb0738]
                1 _host_processor_set_priv + 48 [0x27888]
                  1 _semaphore_signal_all_trap + 72 [0x36b98]
                    1 _AltivecAssist + 708 [0xb1fa4]
        1 _host_processor_info + 20 [0x278b8]
          1 _bsd_read_page_cache_file + 260 [0x2a80ec]
            1 _shared_region_map_file_np + 1268 [0x2a7654]
              1 _unp_connect2 + 980 [0x29a010]
                1 _thread_call_func_delayed + 56 [0x3be4c]
                  1 _vm_map_copy_overwrite + 816 [0x6d2a4]
                    1 _vm_map_copy_copy + 1360 [0x6bf38]
                      1 _handlePF + 1676 [0xa026c]
                        1 _hw_protect_gv + 704 [0xa29a0]
                          1 _rtclock_intr + 260 [0xb4278]
                            1 _AlignAssist + 472 [0xb0738]
                              1 _host_processor_set_priv + 48 [0x27888]
                                1 _semaphore_signal_all_trap + 72 [0x36b98]
                                  1 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      257aaf8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __Z15media_poll_funcPv + 176 (in SheepShaver) [0x7805b460]
            40 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              40 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                40 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      5231af8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x910e9de8]
            40 __ZN10HALRunLoop9OwnThreadEPv + 216 (in CoreAudio) [0x910e9fac]
              40 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                40 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2fc23a8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x910e9de8]
            40 __ZN11HP_IOThread11ThreadEntryEPS_ + 16 (in CoreAudio) [0x910fb7f4]
              40 __ZN11HP_IOThread8WorkLoopEv + 492 (in CoreAudio) [0x910fb9f4]
                40 __ZN7CAGuard7WaitForEy + 212 (in CoreAudio) [0x910fb784]
                  40 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      2ea9248
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __Z12receive_funcPv + 148 (in SheepShaver) [0x78080cc4]
            40 _select$DARWIN_EXTSN$NOCANCEL + 12 (in libSystem.B.dylib) [0x92a3df38]
      Thread id:      2bb03a8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __Z18slirp_receive_funcPv + 376 (in SheepShaver) [0x78080c08]
            40 _select$DARWIN_EXTSN$NOCANCEL + 12 (in libSystem.B.dylib) [0x92a3df38]
      Thread id:      26a9750
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _clock_sleep_trap + 8 (in libSystem.B.dylib) [0x929f51d8]
      Kernel stack:
        40 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          40 _ipc_kobject_server + 168 [0x29198]
            40 _semaphore_signal_all_trap + 72 [0x36b98]
              40 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      352dd40
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _SDL_ThreadID + 180 (in SDL) [0x30042fb4]
            40 _SDL_KillThread + 400 (in SDL) [0x30032244]
              40 __Z11redraw_funcPv + 168 (in SheepShaver) [0x7806d7a8]
                40 __Z10Delay_usecj + 84 (in SheepShaver) [0x7808b574]
                  40 _mach_wait_until + 8 (in libSystem.B.dylib) [0x929f51f8]
      Thread id:      29d3d40
      User stack:
        40 __Z15sigsegv_handleriP9__siginfoPv + 1952 (in SheepShaver) [0x78083e10]
      Kernel stack:
        18 _aaFPopTable + 720 [0xb12d0]
          18 _host_processor_set_priv + 48 [0x27888]
            18 _semaphore_signal_all_trap + 72 [0x36b98]
              18 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      52330e8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 __Z10nvram_funcPv + 108 (in SheepShaver) [0x7808245c]
            40 __Z10Delay_usecj + 84 (in SheepShaver) [0x7808b574]
              40 _mach_wait_until + 8 (in libSystem.B.dylib) [0x929f51f8]
      Thread id:      352d998
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            40 __ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 108 (in DesktopServicesPriv) [0x92b963f0]
              40 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
                40 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                  40 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2ea9998
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            40 __ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 180 (in DesktopServicesPriv) [0x92b9656c]
              40 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
                40 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                  40 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      52313a8
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            40 __ZN13TNodeSyncTask12SyncTaskProcEPv + 92 (in DesktopServicesPriv) [0x92ba1ac4]
              40 _MPWaitOnQueue + 276 (in CarbonCore) [0x9191d160]
                40 _TSWaitOnConditionTimedRelative + 208 (in CarbonCore) [0x918fb920]
                  40 _TSWaitOnCondition + 136 (in CarbonCore) [0x9191d5a4]
                    40 ___semwait_signal + 12 (in libSystem.B.dylib) [0x929fba8c]
      Thread id:      3284be0
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
      Thread id:      5231000
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x92a58c14]
      Thread id:      5233490
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 ___NSThread__main__ + 1008 (in Foundation) [0x96fe7d88]
            40 -[NSUIHeartBeat _heartBeatThread:] + 668 (in AppKit) [0x946639d0]
              40 -[NSConditionLock lockWhenCondition:beforeDate:] + 272 (in Foundation) [0x97024fd0]
                40 -[NSCondition waitUntilDate:] + 388 (in Foundation) [0x970251a4]
                  40 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      352c000
      User stack:
        39 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          39 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            39 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 92 (in DesktopServicesPriv) [0x92ba3784]
              39 _MPWaitOnQueue + 276 (in CarbonCore) [0x9191d160]
                39 _TSWaitOnConditionTimedRelative + 244 (in CarbonCore) [0x918fb944]
                  39 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
    Process:        ATSServer [153]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      Thread id:      2bb0000
      User stack:
        41 ??? [0x5964]
          41 ??? [0xcad9c]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      29d23a8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _TS_exception_listener_thread + 112 (in CarbonCore) [0x918f8fe4]
            41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
    Process:        ATSServer [97]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      Thread id:      2ea8ea0
      User stack:
        41 ??? [0x5964]
          41 ??? [0xcad9c]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2ea8af8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _TS_exception_listener_thread + 112 (in CarbonCore) [0x918f8fe4]
            41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
    Process:        AirPort Base Station Agent [88]
    Path:           /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      Thread id:      1f16be0
      User stack:
        41 ??? [0x2730]
          41 ??? [0x2a2c]
            41 _NSApplicationMain + 444 (in AppKit) [0x945d229c]
              41 -[NSApplication run] + 748 (in AppKit) [0x946018a0]
                41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94607c00]
                  41 __DPSNextEvent + 600 (in AppKit) [0x94608248]
                    41 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9318477c]
                      41 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x9318493c]
                        41 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                          41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                            41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      29d2ea0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x92a58c14]
      Thread id:      29d3998
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ??? [0x1d3c0]
            41 ??? [0x1a464]
              41 ??? [0x1d7d4]
                41 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
    Process:        DirectoryService [14]
    Path:           /usr/sbin/DirectoryService
      ADDRESS         BINARY
      00001000        /usr/sbin/DirectoryService
      0015a000        /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
      Thread id:      1ef7248
      User stack:
        41 start + 68 (in DirectoryService) [0x157f0]
          41 _main + 2540 (in DirectoryService) [0x16210]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      1efe838
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            41 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              41 __ZN20CPluginRunLoopThread10ThreadMainEv + 232 (in DirectoryService) [0x21ae8]
                41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
                  41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                    41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      1efe0e8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            41 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              41 __ZN17CMigHandlerThread10ThreadMainEv + 316 (in DirectoryService) [0x21d68]
                41 _mach_msg_server + 504 (in libSystem.B.dylib) [0x92a7ddb8]
                  41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Kernel stack:
        41 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          41 _host_get_clock_service + 8 [0x25610]
            41 _ipc_port_lookup_notify + 68 [0x1ef60]
              41 _semaphore_signal_all_trap + 72 [0x36b98]
                41 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      1f2b5f0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
      Thread id:      257c0e8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            41 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              41 _syscall + 12 (in libSystem.B.dylib) [0x92a4a60c]
    Process:        Dock [94]
    Path:           /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      01000000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      257b248
      User stack:
        41 ??? [0x556c]
          41 ??? [0x94de0]
            41 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x97015a3c]
              28 _CFRunLoopRunSpecific + 2484 (in CoreFoundation) [0x96bb5634]
                28 _mshPerform + 28 (in HIServices) [0x92c2f56c]
                  28 ??? [0x2ced0]
                    28 ??? [0x15240]
                      28 ??? [0x26828]
                        28 __HandlePopUpMenuSelection2 + 76 (in HIToolbox) [0x932f50b8]
                          28 __HandlePopUpMenuSelection5 + 136 (in HIToolbox) [0x932bb574]
                            28 __HandlePopUpMenuSelection7 + 572 (in HIToolbox) [0x93225c14]
                              27 __Z19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1536 (in HIToolbox) [0x932262a8]
                                21 __Z15TrackMenuCommonR14MenuSelectDataPh + 3184 (in HIToolbox) [0x931b57a4]
                                  21 __Z19IsUserStillTrackingP14MenuSelectDataPh + 476 (in HIToolbox) [0x931cbd08]
                                    21 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x9318493c]
                                      21 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                                        21 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                                          21 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                                3 __Z15TrackMenuCommonR14MenuSelectDataPh + 3788 (in HIToolbox) [0x931b5a00]
                                  3 __Z13FlashFeedbackP14MenuSelectData + 156 (in HIToolbox) [0x931d20f8]
                                    3 __ZN6HIView13SimulateClickEsmPs + 196 (in HIToolbox) [0x931d2294]
                                      3 _SendEventToEventTargetWithOptions + 56 (in HIToolbox) [0x9315ac00]
                                        3 __Z30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 468 (in HIToolbox) [0x9315ade4]
                                          3 __Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1488 (in HIToolbox) [0x9315bc4c]
                                            3 __ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 1872 (in HIToolbox) [0x9316a3c0]
                                              3 __ZN6HIView17SimulateClickSelfEsmPs + 36 (in HIToolbox) [0x931d23c4]
                                                3 __Z22SendControlSimulateHitP6HIViewsmPs + 176 (in HIToolbox) [0x931d24f8]
                                                  3 _SendEventToEventTargetWithOptions + 56 (in HIToolbox) [0x9315ac00]
                                                    3 __Z30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 468 (in HIToolbox) [0x9315ade4]
                                                      3 __Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1488 (in HIToolbox) [0x9315bc4c]
                                                        3 __ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 2044 (in HIToolbox) [0x9316a46c]
                                                          3 __ZN18HIStandardMenuView15SimulateHitSelfEsmPs + 144 (in HIToolbox) [0x931d25e0]
                                                            2 __ZN10HIMenuView15SimulateHitSelfEsmPs + 164 (in HIToolbox) [0x931d26cc]
                                                              2 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                                                                2 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                                                                  2 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                                                            1 __ZN10HIMenuView15SimulateHitSelfEsmPs + 116 (in HIToolbox) [0x931d269c]
                                                              1 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                                                                1 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                                                                  1 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                                3 __Z15TrackMenuCommonR14MenuSelectDataPh + 4128 (in HIToolbox) [0x931b5b54]
                                  3 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                                    3 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                                      3 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                              1 __Z19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 940 (in HIToolbox) [0x93226054]
                                1 __Z16ShowAndCacheMenuP8MenuDataPK4RectP9__CFArrayh + 60 (in HIToolbox) [0x931ca5fc]
                                  1 _ShowMenuWindow + 328 (in HIToolbox) [0x931ca7e0]
                                    1 _HIWindowFlush + 32 (in HIToolbox) [0x93189b40]
                                      1 __FlushWindow + 104 (in HIToolbox) [0x93189bc0]
                                        1 __Z17FlushWindowObjectP10WindowDataPPvh + 888 (in HIToolbox) [0x931867c0]
                                          1 _CGSReenableUpdate + 28 (in CoreGraphics) [0x913a1a8c]
                                            1 _CGSReenableUpdateForConnections + 344 (in CoreGraphics) [0x913a1bf4]
                                              1 __CGSReenableUpdateForConnections + 152 (in CoreGraphics) [0x913a1d08]
                                                1 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
              13 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                13 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2bb1d40
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          33 ??? [0x152ec]
            33 ___semwait_signal + 12 (in libSystem.B.dylib) [0x929fba8c]
          5 ??? [0x15454]
            5 _CGSReenableUpdate + 28 (in CoreGraphics) [0x913a1a8c]
              5 _CGSReenableUpdateForConnections + 344 (in CoreGraphics) [0x913a1bf4]
                5 __CGSReenableUpdateForConnections + 152 (in CoreGraphics) [0x913a1d08]
                  5 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
          3 _clock_sleep_trap + 8 (in libSystem.B.dylib) [0x929f51d8]
      Kernel stack:
        3 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          3 _ipc_kobject_server + 168 [0x29198]
            3 _semaphore_signal_all_trap + 72 [0x36b98]
              3 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      257c838
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___NSThread__main__ + 1008 (in Foundation) [0x96fe7d88]
            41 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
    Process:        Finder [103]
    Path:           /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      00502000        /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
      0051a000        /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
      00544000        /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      02d15000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      048ab000        /System/Library/PrivateFrameworks/URLMount.framework/URLMount
      04d68000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      ba900000        /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
      Thread id:      29d3248
      User stack:
        41 ??? [0x9c0c]
          41 ??? [0x102cc8]
            41 ??? [0x24b38]
              41 _RunApplicationEventLoop + 152 (in HIToolbox) [0x931e29d8]
                41 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x9318493c]
                  41 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                    41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                      41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      271b5f0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            41 __ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 108 (in DesktopServicesPriv) [0x92b963f0]
              41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
                41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                  41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      1f16838
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            41 __ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 180 (in DesktopServicesPriv) [0x92b9656c]
              41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
                41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                  41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2fc40e8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            41 __ZN13TNodeSyncTask12SyncTaskProcEPv + 92 (in DesktopServicesPriv) [0x92ba1ac4]
              41 _MPWaitOnQueue + 276 (in CarbonCore) [0x9191d160]
                41 _TSWaitOnConditionTimedRelative + 208 (in CarbonCore) [0x918fb920]
                  41 _TSWaitOnCondition + 136 (in CarbonCore) [0x9191d5a4]
                    41 ___semwait_signal + 12 (in libSystem.B.dylib) [0x929fba8c]
      Thread id:      2fc2000
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
      Thread id:      3284838
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x92a58c14]
      Thread id:      5232248
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ??? [0xa588]
            41 ??? [0x4e6d8]
              41 ??? [0x4fa28]
                41 ??? [0x4fac4]
                  41 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      1f2c0e8
      User stack:
        18 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          18 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            18 __ZN13TPropertyTask16PropertyTaskProcEPv + 104 (in DesktopServicesPriv) [0x92ba8e38]
              18 _MPWaitOnQueue + 276 (in CarbonCore) [0x9191d160]
                18 _TSWaitOnConditionTimedRelative + 244 (in CarbonCore) [0x918fb944]
                  18 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      5233be0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ??? [0xa588]
            41 ??? [0x99d9c]
              41 ??? [0x4fac4]
                41 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      2fc3248
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ??? [0xa588]
            41 ??? [0xea7b0]
              41 ??? [0xee024]
                41 ??? [0x4fac4]
                  41 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
      Thread id:      352cea0
      User stack:
        40 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          40 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9191b388]
            40 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 92 (in DesktopServicesPriv) [0x92ba3784]
              40 _MPWaitOnQueue + 276 (in CarbonCore) [0x9191d160]
                40 _TSWaitOnConditionTimedRelative + 244 (in CarbonCore) [0x918fb944]
                  40 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x929f50f8]
    Process:        KernelEventAgent [36]
    Path:           /usr/sbin/KernelEventAgent
      ADDRESS         BINARY
      00001000        /usr/sbin/KernelEventAgent
      Thread id:      26a6248
      User stack:
        41 start + 68 (in KernelEventAgent) [0x26a8]
          41 _main + 1008 (in KernelEventAgent) [0x44d8]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      271a000
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x92a58c14]
    Process:        Spotlight [92]
    Path:           /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      00058000        /System/Library/PrivateFrameworks/Calculate.framework/Versions/A/Calculate
      00069000        /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
      000e2000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      01ef3000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      2eaa490
      User stack:
        41 ??? [0x3038]
          41 _NSApplicationMain + 444 (in AppKit) [0x945d229c]
            41 -[NSApplication run] + 748 (in AppKit) [0x946018a0]
              41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94607c00]
                41 __DPSNextEvent + 600 (in AppKit) [0x94608248]
                  41 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9318477c]
                    41 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x9318493c]
                      41 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                        41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                          41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
    Process:        SystemStarter [30]
    Path:           /sbin/SystemStarter
      ADDRESS         BINARY
      00001000        /sbin/SystemStarter
      Thread id:      26abbe0
      User stack:
        41 ??? [0x23c8]
          41 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
    Process:        SystemUIServer [102]
    Path:           /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      0006f000        /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
      0007c000        /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
      000cd000        /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
      000f6000        /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
      00101000        /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
      00109000        /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0023e000        /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
      003a3000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      003df000        /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
      003f0000        /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
      00433000        /usr/lib/libcurl.4.dylib
      0048e000        /Applications/iCal.app/Contents/Resources/iCalDockExtra.bundle/Contents/MacOS/i CalDockExtra
      00499000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      004a2000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      004b5000        /System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/MacOS/RemoteDesktop
      004c6000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      00759000        /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
      0076c000        /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
      0219b000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      29d2af8
      User stack:
        41 ??? [0x6054]
          41 ??? [0x66bc]
            41 -[NSApplication run] + 748 (in AppKit) [0x946018a0]
              41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94607c00]
                41 __DPSNextEvent + 600 (in AppKit) [0x94608248]
                  41 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9318477c]
                    41 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x9318493c]
                      41 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x93184b18]
                        41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                          41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2fc3998
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __StaticProcessIOObjectsArray + 440 (in ICANotifications) [0xd3ff8]
            41 ___semwait_signal + 12 (in libSystem.B.dylib) [0x929fba8c]
      Thread id:      2bb1248
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___kevent + 12 (in libSystem.B.dylib) [0x92a367b0]
      Thread id:      2fc3d40
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___NSThread__main__ + 1008 (in Foundation) [0x96fe7d88]
            41 ??? [0x26914]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      1f2a3a8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x910e9de8]
            41 __ZN10HALRunLoop9OwnThreadEPv + 216 (in CoreAudio) [0x910e9fac]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
    Process:        UserEventAgent [93]
    Path:           /usr/sbin/UserEventAgent
      ADDRESS         BINARY
      00001000        /usr/sbin/UserEventAgent
      00014000        /System/Library/UserEventPlugins/ACRRDaemon.plugin/Contents/MacOS/ACRRDaemon
      00027000        /System/Library/UserEventPlugins/AirPortUserAgent.plugin/Contents/MacOS/AirPort UserAgent
      00030000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0006c000        /System/Library/UserEventPlugins/alfUIplugin.plugin/Contents/MacOS/alfUIplugin
      00071000        /System/Library/UserEventPlugins/AppleHIDMouseAgent.plugin/Contents/MacOS/Apple HIDMouseAgent
      00077000        /System/Library/UserEventPlugins/BluetoothUserAgent-Plugin.plugin/Contents/MacO S/BluetoothUserAgent-Plugin
      0007e000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      00087000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      0008c000        /System/Library/UserEventPlugins/BTMMPortInUseAgent.plugin/Contents/MacOS/BTMMP ortInUseAgent
      00092000        /System/Library/UserEventPlugins/iCalAlarmAgent.plugin/Contents/MacOS/iCalAlarm Agent
      0009d000        /System/Library/UserEventPlugins/ParentalControlsUEAPlugin.plugin/Contents/MacO S/ParentalControlsUEAPlugin
      000a6000        /System/Library/UserEventPlugins/SCMonitor.plugin/Contents/MacOS/SCMonitor
      Thread id:      2eaa0e8
      User stack:
        41 ??? [0x24f0]
          41 ??? [0x3760]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2bb15f0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___NSThread__main__ + 1008 (in Foundation) [0x96fe7d88]
            41 _appusage_server_routine + 8116 (in ACRRDaemon) [0x16d9c]
              41 -[NSRunLoop(NSRunLoop) run] + 76 (in Foundation) [0x97020330]
                41 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x97015a3c]
                  41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                    41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      2fc4be0
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x910e9de8]
            41 __ZN10HALRunLoop9OwnThreadEPv + 216 (in CoreAudio) [0x910e9fac]
              41 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
    Process:        WindowServer [58]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
      00017000        /System/Library/Extensions/ATIRadeon8500GA.plugin/Contents/MacOS/ATIRadeon8500G A
      00400000        /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      005aa000        /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
      03573000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      Thread id:      29270e8
      User stack:
        41 start + 68 (in WindowServer) [0x1f94]
          41 _main + 16 (in WindowServer) [0x1fd8]
            41 _CGXGetRootAdminCredentials + 0 (in CoreGraphics) [0x913e9a48]
              41 _CGXServerLoop + 124 (in CoreGraphics) [0x914509f0]
                40 _CGXRunOneServicesPass + 316 (in CoreGraphics) [0x91444bb0]
                  23 _CGXRunOneServerPass + 276 (in CoreGraphics) [0x914489e4]
                    23 _mach_msg_overwrite_trap + 8 (in libSystem.B.dylib) [0x929f5088]
                  16 _CGXRunOneServerPass + 324 (in CoreGraphics) [0x91448a14]
                    16 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                  1 _CGXRunOneServerPass + 556 (in CoreGraphics) [0x91448afc]
                    1 _CGXPostPortData + 192 (in CoreGraphics) [0x91448d64]
                      1 _notifyHandler + 168 (in CoreGraphics) [0x9146e7b4]
                        1 _CGXPostPortNotification + 152 (in CoreGraphics) [0x9146e888]
                          1 _ProcessConnectionPortDeath + 1044 (in CoreGraphics) [0x9146ece0]
                            1 __CGXReleaseConnectionWindows + 288 (in CoreGraphics) [0x9146f3d4]
                              1 __CGXReleaseWindow + 764 (in CoreGraphics) [0x9144f338]
                                1 _CGXBackingStoreRelease + 44 (in CoreGraphics) [0x914778b4]
                                  1 _CGXBackingStoreTextureRelease + 40 (in CoreGraphics) [0x9143e7f4]
                                    1 _CGXGLDestroyTexture + 160 (in CoreGraphics) [0x91477ac8]
                                      1 _glDeleteTextures_Exec + 696 (in GLEngine) [0x421888]
                                        1 _gleDeleteHashNamesAndObjects + 208 (in GLEngine) [0x4219b0]
                                          1 _gleFreeTextureObject + 36 (in GLEngine) [0x421184]
                                            1 _gleDeletePluginTexture + 100 (in GLEngine) [0x4212e4]
                                              1 _gldDeleteTexture + 24 (in ATIRadeon8500GLDriver) [0x5b22b8]
                                                1 _gldReclaimTexture + 248 (in ATIRadeon8500GLDriver) [0x5b21c8]
                                                  1 _IOConnectCallMethod + 260 (in IOKit) [0x966ae270]
                                                    1 _io_connect_method + 680 (in IOKit) [0x9672a378]
                                                      1 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
                1 _CGXRunOneServicesPass + 160 (in CoreGraphics) [0x91444b14]
                  1 __CGXRunTimerPass + 388 (in CoreGraphics) [0x914323d8]
                    1 _CGXUpdateDisplay + 6792 (in CoreGraphics) [0x9143c6e8]
                      1 _CGXReleaseDisplayDeviceSurface + 3008 (in CoreGraphics) [0x914579b8]
                        1 _CGSReleaseRegion + 116 (in CoreGraphics) [0x9133cef4]
                          1 __CFRelease + 1148 (in CoreFoundation) [0x96bb7958]
                            1 ??? [0xffff85d8]
      Kernel stack:
        1 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          1 _mach_port_request_notification + 216 [0x24b58]
            1 _kfree + 120 [0x2c100]
              1 _ppc_vm_init + 1408 [0x94e74]
                1 _gLowerCaseTable + 1780 [0x37e6d4]
                  1 com.apple.ATIRadeon8500 (5.4.8) + 37588 [0x98d2d4]
                    1 _sys_au_event + 0 [0x38141c]
                      1 _gLowerCaseTable + 3492 [0x37ed84]
                        1 com.apple.ATIRadeon8500 (5.4.8) + 52992 [0x990f00]
                          1 com.apple.ATIRadeon8500 (5.4.8) + 110768 [0x99f0b0]
                            1 _debstack + 4476 [0x36b17c]
                              1 _cons_ops + 15016 [0x338cd8]
                                1 _bzero + 268 [0xac898]
                                  1 _processor_set_info + 192 [0x30bcc]
                                    1 _semaphore_signal_all_trap + 72 [0x36b98]
                                      1 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      2bb20e8
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 ___tickleThread + 60 (in IOKit) [0x966f3bb4]
            41 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
      Thread id:      29d2000
      User stack:
        41 __pthread_start + 320 (in libSystem.B.dylib) [0x92a36f74]
          41 _eventThread + 452 (in CoreGraphics) [0x91431338]
            41 _CFRunLoopRun + 64 (in CoreFoundation) [0x96bb5c20]
              40 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96bb5398]
                40 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x929f5078]
              1 _CFRunLoopRunSpecific + 2484 (in CoreFoundation) [0x96bb5634]
       

Maybe you are looking for