Naming Exception while using the javax.jms.QueueConnectionFactory

Hi All,
I am quite new to JMS. I am trying to run the example QueueSender program shipped with weblogic5.1 . When i run the program i get the following error ...
Exception in thread "main" javax.naming.Name
NotFoundException:
'javax.jms.QueueConnectionFactory'; remaining name 'jms.QueueConnectionFactory'
at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.j
ava:76)
at weblogic.jndi.toolkit.BasicWLContext_WLStub.lookup(BasicWLContext_WLS
tub.java:246)
at weblogic.jndi.toolkit.WLContextStub.lookup(WLContextStub.java:545)
at javax.naming.InitialContext.lookup(InitialContext.java:350)
at examples.jms.queue.QueueSend.init(QueueSend.java:37)
at examples.jms.queue.QueueSend.main(QueueSend.java:82)
I am desperate to get any guidance regarding the above mentioned exception
Thanx
Shanks

I don't use weblogic but the javax.naming.Name
NotFoundException suggests that the JNDI name cannot be found or resolved.
The name is specified in 2 locations, one in your java codes and the other during the deployment of the JMS application.
The error means the java program cannot find the JNDI name which means you did not specify the name correctly during the deployment.
Make sure both the names in java codes and deployment are right and matching. That should solve the problem.

Similar Messages

  • Invalid_path exception while using UTL_FILE.FOPEN

    Hi
    I am getting invalid_path exception while using the UTL_FILE.fopen subprogram. I tried finding out the reason but could not solve it. Please help.
    Below is my piece of code.
    create directory utldr as 'e:\utldir';
    declare
    f utl_file.file_type;
    s varchar2(200);
    begin
    dbms_output.put_line('1');
    f := utl_file.fopen('UTLDR','utlfil.txt','r');
    dbms_output.put_line('2');
    utl_file.get_line(f,s);
    dbms_output.put_line('3');
    utl_file.fclose(f);
    dbms_output.put_line('4');
    dbms_output.put_line(s);
    exception
    when utl_file.invalid_path then
    dbms_output.put_line('invalid_path');
    end;
    the result is:
    1
    invalid_path

    I am executing it from sys. The same user who created the directory.
    The output is as below:
    SELECT * FROM dba_directories
    OWNER     DIRECTORY_NAME     DIRECTORY_PATH
    SYS     MEDIA_DIR      d:\avale\rel4\demo\schema\product_media\
    SYS     LOG_FILE_DIR     d:\avale\rel4\assistants\dbca\logs\
    SYS     DATA_FILE_DIR     d:\avale\rel4\demo\schema\sales_history\
    SYS     EMP_DIR     E:\Oracle Directory
    SYS     REMOTED     \\10.1.1.12\oracle directory
    SYS     UTLDR     e:\utldir
    SELECT * FROM dba_tab_privs WHERE table_name='UTLDR'
    GRANTEE     OWNER     TABLE_NAME     GRANTOR     PRIVILEGE     GRANTABLE     HIERARCHY
    PUBLIC     SYS     UTLDR     SYS     READ     NO     NO

  • Deprecation of javax.jms.QueueConnectionFactory

    i found out in weblogic 6.1 docs that javax.jms.QueueConnectionFactory and javax.jms.TopicConnectionFactory is deprecated.
    But i found no mention of this in the latest javadocs that i downloaded from java.sun.com.(jms 1.0.2 b)
    clarifications in this regard is appreciated

    Hi -
    I'm the JMS Specifecation Lead. Let me reassure you: the javax.jms.QueueConnectionFactory and and javax.jmsTopicConnectionFactory interfaces have not been deprecated.
    I spoke with a senior BEA techincal person for JMS, and he explained that this is a documentation issue. He's filed a request to have it fixed. Here's what he said.
    " In WebLogic, there are default connection
    factories. Those default factories have some well known names. The
    original names chosen were "javax.jms.QueueConnectionFactory" and
    "javax.jms.TopicConnectionFactory". WebLogic changed the JNDI name in 6.0
    (multiple reasons mostly to do with customer backward compatibility).
    As far as I know the specification makes no statements about how a product
    is administered, that there would even be default connection factories, or
    what their names might be if there were. The documentation is misleading
    in that it doesn't mention that those are the *JNDI names* of the factories,
    not the interfaces for the factories. I will file an appropriate bug
    report against the documentation.
    Feel free to post my comments in your forum, or send me to the URL where I
    can officially respond. Thanks for bringing this up."
    I want to thank BEA for a prompt response on this.
    i found out in weblogic 6.1 docs that
    javax.jms.QueueConnectionFactory and
    javax.jms.TopicConnectionFactory is deprecated.
    But i found no mention of this in the latest javadocs
    that i downloaded from java.sun.com.(jms 1.0.2 b)
    clarifications in this regard is appreciated

  • Hi, my MacBook Pro cannot open Safari. nexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Hi, my MacBook Pro cannot open Safari. It crashes and gives the message, ' Safari quit unexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Remove "Rapport" by following the instructions on this page.
    Back up all data before making any changes.

  • Exception while using unit of work commit

    Hi,
    I have using this code to create a object
    KbAdAlerts alert = new KbAdAlerts();
    alert.setAlertId(kmData.getAlertId());
    alert.setAlertDesc(kmData.getOutcome());
    alert.setAlertLastRevisionDate(KmUtils.convertReviewDate(kmData.getReviewDate()));
    alert.setAlertType(kmData.getAlertType());
    System.out.println("Alert Object :" + alert);
    KbAdAlerts alertClone = (KbAdAlerts) uow.registerObject(alert);
    System.out.println("Clone Alert:" + alertClone);
    uow.printRegisteredObjects();
    uow.commit();
    I am getting exception while using uow.commit(). I have gone into alert object and everything seems to be fine.
    Could you help me in this issue.
    Thanks,
    Ashish
    Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-01400: cannot insert NULL into ("AD_OWNER"."KB_AD_ALERTS"."ALERT_ID")
    Error Code: 1400
    Call:insert into kb_ad_alerts(alert_id, alert_desc, alert_type, alert_last_revision_date)
    values
    (NULL, NULL, NULL, NULL)
    Query:InsertObjectQuery(oracle.ccr.admin.model.KbAdAlerts@6108)
         at oracle.toplink.exceptions.TopLinkException.<init>(TopLinkException.java:46)
         at oracle.toplink.exceptions.DatabaseException.<init>(DatabaseException.java:50)
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:658)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:707)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:496)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:442)
         at oracle.toplink.publicinterface.UnitOfWork.executeCall(UnitOfWork.java:1603)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:117)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:103)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.insertObject(DatasourceCallQueryMechanism.java:238)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObject(DatabaseQueryMechanism.java:355)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObjectForWrite(DatabaseQueryMechanism.java:433)
         at oracle.toplink.queryframework.InsertObjectQuery.executeCommit(InsertObjectQuery.java:60)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.performUserDefinedWrite(DatabaseQueryMechanism.java:622)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.performUserDefinedInsert(DatabaseQueryMechanism.java:586)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObjectForWriteWithChangeSet(DatabaseQueryMechanism.java:479)
         at oracle.toplink.queryframework.WriteObjectQuery.executeCommitWithChangeSet(WriteObjectQuery.java:110)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:259)
         at oracle.toplink.queryframework.WriteObjectQuery.executeDatabaseQuery(WriteObjectQuery.java:47)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:603)
         at oracle.toplink.queryframework.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:519)
         at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWorkObjectLevelModifyQuery(ObjectLevelModifyQuery.java:100)
         at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWork(ObjectLevelModifyQuery.java:72)
         at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2532)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:981)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:938)
         at oracle.toplink.internal.sessions.CommitManager.commitNewObjectsForClassWithChangeSet(CommitManager.java:240)
         at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:161)
         at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3123)
         at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1242)
         at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1330)
         at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:1097)
         at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:865)
         at oracle.ccr.admin.model.FeedbackServices.writeFeedback(FeedbackServices.java:116)
         at oracle.ccr.admin.view.AlertDetails.updateTables(AlertDetails.java:834)
         at oracle.ccr.admin.view.AlertDetails.commandButton1_action(AlertDetails.java:822)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
         at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)
         at oracle.adf.view.faces.component.UIXCollection.broadcast(UIXCollection.java:94)
         at oracle.adf.view.faces.component.UIXTable.broadcast(UIXTable.java:205)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:629)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    Hi,
    I am having a similar problem that results in this stack trace. The funny thing is that it occurs after a session.logout/login and re-read of the object I'm trying to update. The other thing is that if I remove objects from the transaction it just happens somewhere else - on a different object/descriptor. I am attempting to upgrade from 9.03 runtime to the 10.0.3.1 builder/runtime. I am connecting to a Sybase 12.5 db.
    Any ideas on this one?
    Thanks,
    Bret
    This is the sql that is found in the DatasourceCallQueryMechanism. We are not using any custom SQL.
    SQLCall(INSERT INTO Invoice (id, description, billingAddress, customerNote, invoiceNumber, startDate, stopDate, sentDate, commitDate, customerId, dueDate) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?))
    java.lang.NullPointerException
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.insertObject(DatasourceCallQueryMechanism.java:213)
         at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:156)
         at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:170)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObjectForWrite(DatabaseQueryMechanism.java:426)
         at oracle.toplink.queryframework.InsertObjectQuery.executeCommit(InsertObjectQuery.java:65)
         at oracle.toplink.queryframework.InsertObjectQuery.executeCommitWithChangeSet(InsertObjectQuery.java:75)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:251)
         at oracle.toplink.queryframework.WriteObjectQuery.executeDatabaseQuery(WriteObjectQuery.java:47)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
         at oracle.toplink.queryframework.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:542)
         at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWorkObjectLevelModifyQuery(ObjectLevelModifyQuery.java:100)
         at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWork(ObjectLevelModifyQuery.java:72)
         at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2578)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:988)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:945)
         at oracle.toplink.internal.sessions.CommitManager.commitNewObjectsForClassWithChangeSet(CommitManager.java:243)
         at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsForClassWithChangeSet(CommitManager.java:218)
         at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:174)
         at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3177)
         at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1282)
         at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1370)
         at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:1137)
         at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:905)
         at com.tbs.database.DBBroker.mergeSingleObject(DBBroker.java:288)
         at com.tbs.database.DBBroker.merge(DBBroker.java:235)
         at com.tbs.database.DBBrokerSetInvoker.merge(DBBrokerSetInvoker.java:73)
         at com.tbs.database.TbsDataSource.merge(TbsDataSource.java:353)
    /////////////////////////////////

  • PasswordSync with a Sun JMS Server: javax.jms.QueueConnectionFactory

    Hi,
    I have installed Sun IDM 8.1 and Sun DSEE7 and uses Active Directory as source for identities.
    I then added a resource for the JMS Listener, but when I tried to do Test Connection I got this message:
    Test connection failed for resource:
    java.lang.ClassCastException: com.sun.messaging.ConnectionFactory cannot be cast to javax.jms.QueueConnectionFactory
    Can anybody help me with this.
    rgds
    Crimson
    Edited by: Crimson on May 3, 2010 4:46 AM

    Hi Sean,
    it's better to ask this question at Sun Java System Messaging Server forum:
    http://swforum.sun.com/jive/forum.jspa?forumID=15

  • Safari app on mac air cant open and this the message shows ( safari quit unexpecedly while using the librooksbas.dylib plug-in. )

    Dear Apple's maintenance department
    Two days ago and I'm trying to open the application Safari but it appears to me this letter and the application closes again .... Please look into this problem and to quickly answer the solution .... Thank you for your cooperation
    message shows :
    safari quit unexpecedly while using the librooksbas.dylib plug-in.
    Process:         Safari [436]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0.3 (9537.75.14)
    Build Info:      WebBrowser-7537075014000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [145]
    Responsible:     Safari [436]
    User ID:         501
    PlugIn Path:       /Library/Rapport/*/librooksbas.dylib
    PlugIn Identifier: librooksbas.dylib
    PlugIn Version:    ??? (1)
    Date/Time:       2014-04-07 11:38:45.532 +0300
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  2E9CA85D-151E-60E9-4048-AAA6EDD1735D
    Crashed Thread:  22
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000920
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x920:
    -->
        __TEXT                 0000000105359000-000000010535a000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.app34068-DU386F5V4G (196 - 1.196) GoPhoto.it V9.0
    com.wondershare.ultimate-YZC2T44ZDX (4.0.0 - 4.0.0) Video Converter
    com.walt.vidxplugin-B9452892K5 (2 - 2.0) Vidx
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libicucore.A.dylib                      0x00007fff8d1c4bde ubidi_getClass + 85
    1   com.apple.CoreText                      0x00007fff91eb90fb TUnicodeEncoder::EncodePortion(long, unsigned short const*, long, TBaseFont const&, bool, unsigned short*, double*, unsigned long, unsigned int*, double&) + 611
    2   com.apple.CoreText                      0x00007fff91eb8e2f TBMPDataCachePage::TBMPDataCachePage(TBaseFont const&, unsigned short) + 433
    3   com.apple.CoreText                      0x00007fff91eb8c24 TBMPDataCache::PageForCharacter(unsigned short) const + 108
    4   com.apple.CoreText                      0x00007fff91eb8a65 CTFontGetGlyphsForCharacters + 255
    5   com.apple.AppKit                        0x00007fff9726036a -[__NSFontTypefaceInfo _latin1MappingTableWithPlatformFont:hasKernPair:] + 336
    6   com.apple.AppKit                        0x00007fff97260194 -[NSFont _latin1MappingTable:] + 125
    7   com.apple.AppKit                        0x00007fff978955ca +[NSStringDrawingTextStorage _fastDrawString:attributes:length:inRect:graphicsContext:baselineRendering:uses FontLeading:usesScreenFont:typesetterBehavior:paragraphStyle:lineBreakMode:bound ingRect:padding:scrollable:baselineOffset:] + 895
    8   com.apple.AppKit                        0x00007fff97895239 +[NSStringDrawingTextStorage _fastDrawString:attributes:length:inRect:graphicsContext:baselineRendering:uses FontLeading:usesScreenFont:typesetterBehavior:paragraphStyle:lineBreakMode:bound ingRect:padding:scrollable:] + 148
    9   com.apple.AppKit                        0x00007fff9725ef95 -[NSAttributedString(NSExtendedStringDrawing) boundingRectWithSize:options:context:] + 692
    10  com.apple.AppKit                        0x00007fff9725ecb6 -[NSAttributedString(NSExtendedStringDrawing) boundingRectWithSize:options:] + 32
    11  com.apple.AppKit                        0x00007fff9725ec5c -[NSAttributedString(NSStringDrawingExtension) _sizeWithSize:] + 56
    12  com.apple.AppKit                        0x00007fff9725dfe0 -[NSButtonCell(NSButtonCellPrivate) _titleSizeWithSize:] + 91
    13  com.apple.AppKit                        0x00007fff9725dd63 -[NSButtonCell(NSButtonCellPrivate) _alignedTitleRectWithRect:] + 188
    14  com.apple.AppKit                        0x00007fff9724e875 -[NSButtonCell cellSizeForBounds:] + 709
    15  com.apple.AppKit                        0x00007fff9723e6a0 -[NSCell cellSize] + 68
    16  com.apple.AppKit                        0x00007fff9723e599 -[NSControl sizeToFit] + 45
    17  com.apple.AppKit                        0x00007fff9756915e sizeButtonForThemeLayout + 25
    18  com.apple.AppKit                        0x00007fff97567755 -[NSAlert buildAlertStyle:title:formattedMsg:first:second:third:oldStyle:] + 8685
    19  com.apple.AppKit                        0x00007fff9756551e -[NSAlert layout] + 383
    20  com.apple.AppKit                        0x00007fff9757309a -[NSAlert runModal] + 46
    21  com.apple.AppKit                        0x00007fff9721b2a9 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1054
    22  com.apple.AppKit                        0x00007fff9721ae4e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    23  com.apple.AppKit                        0x00007fff9721adef -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    24  com.apple.AppKit                        0x00007fff9721ad13 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    25  com.apple.AppKit                        0x00007fff9721ab34 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    26  com.apple.AppKit                        0x00007fff9721a909 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    27  com.apple.AppKit                        0x00007fff9721a36b -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    28  com.apple.Foundation                    0x00007fff93f49f0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    29  com.apple.Foundation                    0x00007fff93f49d7d _NSAppleEventManagerGenericHandler + 106
    30  com.apple.AE                            0x00007fff97093e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    31  com.apple.AE                            0x00007fff97093c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    32  com.apple.AE                            0x00007fff97093b36 aeProcessAppleEvent + 315
    33  com.apple.HIToolbox                     0x00007fff90671161 AEProcessAppleEvent + 56
    34  com.apple.AppKit                        0x00007fff97216246 _DPSNextEvent + 1026
    35  com.apple.AppKit                        0x00007fff97215a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    36  com.apple.Safari.framework              0x00000001053bfd00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    37  com.apple.AppKit                        0x00007fff97209b2c -[NSApplication run] + 553
    38  com.apple.AppKit                        0x00007fff971f4913 NSApplicationMain + 940
    39  com.apple.Safari.framework              0x0000000105591c8d SafariMain + 267
    40  libdyld.dylib                           0x00007fff9351b5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff97f21662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff95bac43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff95bac152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff97f1ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97f1bd18 mach_msg + 64
    2   RapportUtil1.dylib                      0x0000000109ece127 exception_handler::exception_messages_handler(void*) + 167
    3   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff97f1ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97f1bd18 mach_msg + 64
    2   libsystem_kernel.dylib                  0x00007fff97f1c613 mach_msg_server + 544
    3   RapportDaishi.dylib                     0x0000000109a6fb73 mig_rpc_server::server_working_thread(void*) + 67
    4   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff97f20a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff98d88dc0 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff98d88cb2 usleep + 54
    3   RapportUtil1.dylib                      0x0000000109e160e8 bp_heartbeat_thread + 376
    4   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff97f20a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff98d88dc0 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff98d88cb2 usleep + 54
    3   RapportDaishi.dylib                     0x0000000109a64b60 active_monitor_finish_thread(void*) + 160
    4   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 10:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff97f20716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff959e5c3b _pthread_cond_wait + 727
    2   com.apple.WebCore                       0x00000001066e04cb WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore                       0x00000001066dd05f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore                0x0000000105c6353f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 14:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff97f1ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97f1bd18 mach_msg + 64
    2   com.apple.QuartzCore                    0x00007fff97d90377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x00007fff97d902ad thread_fun + 25
    4   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 15:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff97f1ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97f1bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff94a8c155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff94a8b779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff94a8b0b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff93f8f967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff93f8f76b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff97f20e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff959e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff959e7fb9 start_wqthread + 13
    Thread 18:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff97f20716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff959e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000105c6e6f6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x0000000105c6e215 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x0000000105c6353f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 19:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff97f20716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff959e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000105c6ed17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000105c6eba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x0000000105c6353f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 20:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff97f20716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff959e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000105c6ed17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000105c6eba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x0000000105c6353f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 21:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff97f20716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff959e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000105c6ed17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000105c6eba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x0000000105c6353f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff959e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff959e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff959e7fc9 thread_start + 13
    Thread 22 Crashed:
    0   libsystem_pthread.dylib                 0x00007fff959e74c0 pthread_setspecific + 52
    1   librooksbas.dylib                       0x00000001099a53b1 function_hook::hook_queue_enter(function_hook*, void*) + 177
    2   ???                                     0x00007f86d9e00364 0 + 140217157682020
    Thread 22 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000016  rbx: 0x0000608000019060  rcx: 0x00007fff7e50fc00  rdx: 0x0000000000000000
      rdi: 0x0000000000000108  rsi: 0x0000608000019060  rbp: 0x000000010acfbf20  rsp: 0x000000010acfbef8
       r8: 0x000000000601002f   r9: 0x000000010acfbe01  r10: 0x000000010acfbf70  r11: 0x00000001099a5300
      r12: 0x00007f86d9e00310  r13: 0x000000010aedb652  r14: 0x0000000000000000  r15: 0x0000000109919000
      rip: 0x00007fff959e74c0  rfl: 0x0000000000010282  cr2: 0x0000000000000920
    Logical CPU:     2
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
           0x105359000 -        0x105359ffd  com.apple.Safari (7.0.3 - 9537.75.14) <170ED2F7-108B-326D-96B6-D54CCA40AA85> /Applications/Safari.app/Contents/MacOS/Safari
           0x105363000 -        0x105869ffb  com.apple.Safari.framework (9537 - 9537.75.14) <4803DE3D-4606-3B70-A537-6D12F172665A> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
           0x105c5a000 -        0x105fd1ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <8018AEEE-9FAB-34DE-AF60-97B2F221747A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
           0x1060cf000 -        0x106205ffc  com.apple.WebKit (9537 - 9537.75.14) <CBAF76C6-E6F7-390A-A21D-CBCAF4A6896A> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
           0x1062fa000 -        0x1064ebff3  com.apple.WebKit2 (9537 - 9537.75.14) <B3511A1C-A7E7-3F81-9EDB-2602C4EFAF19> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
           0x1066d7000 -        0x107529ffb  com.apple.WebCore (9537 - 9537.75.14) <99715507-9651-3DCE-831B-BF815FB3DE44> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
           0x109995000 -        0x109a0dfe7 +librooksbas.dylib (1) <05AF3496-E4DF-EF62-3320-6D159B6D5FDC> /Library/Rapport/*/librooksbas.dylib
           0x109a44000 -        0x109a50ff7 +librooksmce.dylib (1) <36F8CFEE-4158-AFEA-3448-E92D4FB02B42> /Library/Rapport/*/librooksmce.dylib
           0x109a5e000 -        0x109a85fff +RapportDaishi.dylib (1) <7090ADB9-D266-3FD9-BDB8-3D295524189E> /Library/Rapport/*/RapportDaishi.dylib
           0x109d4a000 -        0x109dbcfe7 +trf.dylib (1) <86A60C92-55A7-48F6-34C2-08F6258505E4> /Library/Rapport/*/trf.dylib
           0x109dfd000 -        0x10a0aeff7 +RapportUtil1.dylib (1) <F8740E6E-DA8E-CEB4-74A2-1786E4DBE5C2> /Library/Rapport/*/RapportUtil1.dylib
        0x7fff67f75000 -     0x7fff67fa8817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8c99f000 -     0x7fff8c9c3fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8c9c4000 -     0x7fff8ca29ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8cab4000 -     0x7fff8cab8fff  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
        0x7fff8cae0000 -     0x7fff8cb05ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8cc60000 -     0x7fff8ccb3fff  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
        0x7fff8ccff000 -     0x7fff8cdc3ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8ce94000 -     0x7fff8ceacff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8cead000 -     0x7fff8d181fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d1ac000 -     0x7fff8d364ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8d365000 -     0x7fff8d371ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d3c2000 -     0x7fff8d3c4ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8d3c5000 -     0x7fff8d406fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8d78f000 -     0x7fff8d7bbfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8de3c000 -     0x7fff8de43fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8de44000 -     0x7fff8deb3ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8deb4000 -     0x7fff8dee3fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8ed33000 -     0x7fff8ed33ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8ed34000 -     0x7fff8ed58ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8ed59000 -     0x7fff8f678af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f679000 -     0x7fff8f744fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8f850000 -     0x7fff8f855fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8f856000 -     0x7fff8fae7fff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff9000c000 -     0x7fff90014ff7  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
        0x7fff90464000 -     0x7fff90594ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff90597000 -     0x7fff905a2fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
        0x7fff905ce000 -     0x7fff90631ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff90632000 -     0x7fff90635fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff90636000 -     0x7fff908e0ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff908e1000 -     0x7fff908f8ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90986000 -     0x7fff909afff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff909b0000 -     0x7fff909bfff8  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
        0x7fff90c95000 -     0x7fff90c96fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff90c97000 -     0x7fff90c9dff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff90c9e000 -     0x7fff90ca5ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff90ca6000 -     0x7fff90cb0ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff90cb1000 -     0x7fff90d98ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff90d99000 -     0x7fff90de7ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff90e2e000 -     0x7fff90e3efff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff90e3f000 -     0x7fff90e40ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff90e41000 -     0x7fff90ea0fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff90eab000 -     0x7fff90eafff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff90ef1000 -     0x7fff90f2aff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff90f3e000 -     0x7fff9120effc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff91277000 -     0x7fff91368ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff91369000 -     0x7fff913b7fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff913b8000 -     0x7fff913c3ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff913e0000 -     0x7fff91460fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff91461000 -     0x7fff914bafff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff916d3000 -     0x7fff91826ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff91827000 -     0x7fff91916fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9193d000 -     0x7fff9196bff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff919d4000 -     0x7fff919dffff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff919e0000 -     0x7fff919feff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff91a02000 -     0x7fff91a0eff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff91a70000 -     0x7fff91ab7fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff91ab8000 -     0x7fff91ab8ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff91ab9000 -     0x7fff91b11ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff91b12000 -     0x7fff91b1bfff  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
        0x7fff91b1c000 -     0x7fff91b1dfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff91b1e000 -     0x7fff91b46ffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff91baf000 -     0x7fff91bb7ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff91d46000 -     0x7fff91d49fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff91db8000 -     0x7fff91e41fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff91e78000 -     0x7fff91e9fffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff91ea0000 -     0x7fff91f62ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff91f63000 -     0x7fff91f67ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff91f68000 -     0x7fff91fdffff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff92931000 -     0x7fff929c1fff  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
        0x7fff929c5000 -     0x7fff92a38fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff92a39000 -     0x7fff92a46fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff92d4a000 -     0x7fff92d66fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff92d67000 -     0x7fff92d90fff  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
        0x7fff92dc6000 -     0x7fff92e52ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff92e53000 -     0x7fff92e56fff  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
        0x7fff92f56000 -     0x7fff92f56fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff92f57000 -     0x7fff930c5ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff930c6000 -     0x7fff930d3ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff930d4000 -     0x7fff9310ffff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff93110000 -     0x7fff93121ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff93122000 -     0x7fff93125ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff93126000 -     0x7fff93193fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff93194000 -     0x7fff93352fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff93353000 -     0x7fff93441fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff93518000 -     0x7fff9351bff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff93565000 -     0x7fff9356fff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff93570000 -     0x7fff93572ff7  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
        0x7fff93573000 -     0x7fff93574ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff935f3000 -     0x7fff935fafff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff93756000 -     0x7fff9375effc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff9375f000 -     0x7fff937c5fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff937c6000 -     0x7fff937c7ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff93f29000 -     0x7fff94227fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff94228000 -     0x7fff94231ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff944e5000 -     0x7fff944e5fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff944e6000 -     0x7fff94919ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff94921000 -     0x7fff94921fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff949f2000 -     0x7fff949f4fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff949f5000 -     0x7fff949f5fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff94a05000 -     0x7fff94a17ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff94a1b000 -     0x7fff94c00fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff94c09000 -     0x7fff94c0bfff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff94c0c000 -     0x7fff94c11fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff94ce4000 -     0x7fff94cf2fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff94cf3000 -     0x7fff94fddfff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff94fde000 -     0x7fff94ff9ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff94ffa000 -     0x7fff95047ff2  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
        0x7fff9538c000 -     0x7fff953bbff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff9541f000 -     0x7fff95444ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff954a3000 -     0x7fff954c0ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff954c1000 -     0x7fff9571aff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff959e2000 -     0x7fff959e9ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff959ea000 -     0x7fff95a4efff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff95ba4000 -     0x7fff95ba8ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff95ba9000 -     0x7fff95bc3fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff95bc4000 -     0x7fff95c22ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff95c23000 -     0x7fff95d0dfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff95d0e000 -     0x7fff95df2fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff95df3000 -     0x7fff95f63ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff95f64000 -     0x7fff95f69ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff95f95000 -     0x7fff95fb0ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff95fb2000 -     0x7fff95fb2fff  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
        0x7fff95fb3000 -     0x7fff95fccff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff96038000 -     0x7fff96086fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff963e6000 -     0x7fff963f7ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff96455000 -     0x7fff9649cff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff964f3000 -     0x7fff965a3ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff969b3000 -     0x7fff969c0ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff969ef000 -     0x7fff96dd0ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff96dd4000 -     0x7fff96ddcfff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff96e06000 -     0x7fff96e2effb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff96e5f000 -     0x7fff96e71fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff96e72000 -     0x7fff96e8aff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff96e8b000 -     0x7fff96e8cff7  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
        0x7fff96fb0000 -     0x7fff96fb3ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff96fb4000 -     0x7fff96fb5ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff97079000 -     0x7fff9707bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff97086000 -     0x7fff970e1ffb  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
        0x7fff971f2000 -     0x7fff97d68fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff97d69000 -     0x7fff97f05ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff97f0b000 -     0x7fff97f27ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff97f28000 -     0x7fff97f2afff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff97f2b000 -     0x7fff97f63ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff98093000 -     0x7fff98240f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff98241000 -     0x7fff98242ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff982c4000 -     0x7fff9832eff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff983c4000 -     0x7fff98409ffe  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
        0x7fff987e8000 -     0x7fff987ecff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff98802000 -     0x7fff9881dff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff98959000 -     0x7fff98997ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff98998000 -     0x7fff989c7fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff989c8000 -     0x7fff989f2ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff989f3000 -     0x7fff98a0cff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff98a0d000 -     0x7fff98a4cfff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff98a4d000 -     0x7fff98a7dfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff98ced000 -     0x7fff98cf1fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff98cf2000 -     0x7fff98cf9ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff98d0d000 -     0x7fff98d96ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff98d97000 -     0x7fff98d98fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff98dd8000 -     0x7fff98dd8fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff98dd9000 -     0x7fff98de6ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff98df8000 -     0x7fff98e4afff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff98e4b000 -     0x7fff98f14fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff98f15000 -     0x7fff98f57ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff99029000 -     0x7fff99271ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff99272000 -     0x7fff99273fff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib
        0x7fff992bd000 -     0x7fff992c7fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff99ec3000 -     0x7fff99ecdff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff99ece000 -     0x7fff99ef5ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff9a274000 -     0x7fff9a274ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9a2ea000 -     0x7fff9a33bff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff9a33c000 -     0x7fff9a36dff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff9a36e000 -     0x7fff9a474ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9a482000 -     0x7fff9a48bffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 7
        thread_create: 2
        thread_se

    PlugIn Path:       /Library/Rapport/*/librooksbas.dylib
    Bank security software Rapport is installed. You have to uninstall it.
    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Best.

  • IMovie 6.0.3 quits unexpectedly while using the trrndlines plugin

    Hi,
    I am using iMovie 6.0.3 and everything was working fine until yesterday evening.
    Since yesterday evening, I can open iMovie 6.0.3 but everytime I click on "EDITING" or "MEDIA" the application closes and I get the message "iMovie quits unexpectedly while using the trrndlines plugin". This problem is really annoying, as it not only means that I cannot work on existing projects, but it also means that I cannot work on new projects at all.
    What is strange is that I have not made any system update or have not downloaded anything new since a few days.
    The only thing new since a few days is that I was working on a 1-hour video project (the issue occurs not only for this video project, but for also all other previous video projects).
    Important note: none of my projects are actually using the trrndlines plugin...
    I have tried to rename the plugin (from "trrndlines.bundle" to "XXXtrrndlines.bundle"), but still have the same issue.
    Have you heard of this issue before and of a possible solution? (full error thread below, in case that helps)
    Is there a way I can uninstall the trrndlines plugin? (as I do not use it)
    I thank you in advance for any help you can give.
    Process:         iMovie HD [1139]
    Path:            /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/MacOS/iMovie HD
    Identifier:      com.apple.iMovie
    Version:         6.0.3 (6.0.3)
    Build Info:      iMovieApp-2670200~14
    Code Type:       X86 (Native)
    Parent Process:  launchd [179]
    PlugIn Path:       /Users/Dom/Library/iMovie/Plug-ins/cfx/XXXtrrndlines.bundle/Contents/MacOS/trrn dlines
    PlugIn Identifier: com.cfx.imoviefx.trrndlines
    PlugIn Version:    3.0 (3.0)
    Date/Time:       2012-06-11 13:38:26.818 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          193541 sec
    Crashes Since Last Report:           38
    Per-App Interval Since Last Report:  226840 sec
    Per-App Crashes Since Last Report:   33
    Anonymous UUID:                      C477B109-116A-434D-B416-633FDC8CC9D1
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.cfx.imoviefx.trrndlines       0x19871051 PREFSLOADER_READPREFERENCES$PREFSH$$BOOLEAN + 321 (prefsloader.pas:291)
    1   com.cfx.imoviefx.trrndlines       0x198717d1 DEBUGSTART_REGLIB + 65 (reglib.pas:75)
    2   com.cfx.imoviefx.trrndlines       0x19867265 InitMyPlugIn + 37 (pascalFX.pas:246)
    3   com.cfx.imoviefx.trrndlines       0x19866e2b main + 193 (basictx.cpp:151)
    4   com.apple.iMovie                  0x000813ab 0x1000 + 525227
    5   com.apple.iMovie                  0x0008172f 0x1000 + 526127
    6   com.apple.iMovie                  0x0008282e 0x1000 + 530478
    7   com.apple.iMovie                  0x000837bd 0x1000 + 534461
    8   com.apple.iMovie                  0x00083dbc 0x1000 + 535996
    9   com.apple.iMovie                  0x0002bad7 0x1000 + 174807
    10  com.apple.iMovie                  0x0002bbd5 0x1000 + 175061
    11  com.apple.iMovie                  0x0002bbd5 0x1000 + 175061
    12  com.apple.iMovie                  0x0002bc46 0x1000 + 175174
    13  com.apple.iMovie                  0x00082fa3 0x1000 + 532387
    14  com.apple.iMovie                  0x00115cd8 0x1000 + 1133784
    15  com.apple.iMovie                  0x00072fa1 0x1000 + 466849
    16  com.apple.AppKit                  0x960eed5b -[NSTabView selectTabViewItem:] + 1274
    17  com.apple.iMovie                  0x000ca5d8 0x1000 + 824792
    18  com.apple.AppKit                  0x95f9da26 -[NSApplication sendAction:to:from:] + 112
    19  com.apple.AppKit                  0x9607d255 -[NSControl sendAction:to:] + 108
    20  com.apple.AppKit                  0x96078d02 -[NSCell _sendActionFrom:] + 169
    21  com.apple.AppKit                  0x96077ff9 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1808
    22  com.apple.AppKit                  0x960cd6ed -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 524
    23  com.apple.AppKit                  0x96076a4f -[NSControl mouseDown:] + 812
    24  com.apple.AppKit                  0x96074a58 -[NSWindow sendEvent:] + 5549
    25  com.apple.iMovie                  0x00109887 0x1000 + 1083527
    26  com.apple.AppKit                  0x95f8d60b -[NSApplication sendEvent:] + 6431
    27  com.apple.iMovie                  0x000f518e 0x1000 + 999822
    28  com.apple.AppKit                  0x95f21253 -[NSApplication run] + 917
    29  com.apple.AppKit                  0x95f19289 NSApplicationMain + 574
    30  com.apple.iMovie                  0x00040d71 0x1000 + 261489
    31  com.apple.iMovie                  0x0000af3a 0x1000 + 40762
    32  com.apple.iMovie                  0x0000ae55 0x1000 + 40533
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x95078382 kevent + 10
    1   libSystem.B.dylib                 0x95078a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x95077f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x95077cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x95077781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x950775c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x95051afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x95052267 mach_msg + 68
    2   com.apple.CoreFoundation          0x911cc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x911cb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x911d1304 CFRunLoopRun + 84
    5   com.apple.AVCVideoServices        0x6848f319 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 149
    6   libSystem.B.dylib                 0x9507f259 _pthread_start + 345
    7   libSystem.B.dylib                 0x9507f0de thread_start + 34
    Thread 3:  QTKit: QTSurfaceRendererScheduledDisplayThread
    0   libSystem.B.dylib                 0x95051afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x95052267 mach_msg + 68
    2   com.apple.CoreFoundation          0x911cc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x911cb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x911d1304 CFRunLoopRun + 84
    5   com.apple.QTKit                   0x91692226 QTSurfaceRendererScheduledDisplayThread + 164
    6   libSystem.B.dylib                 0x9507f259 _pthread_start + 345
    7   libSystem.B.dylib                 0x9507f0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x95051afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x95052267 mach_msg + 68
    2   com.apple.CoreFoundation          0x911cc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x911cb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x911d1304 CFRunLoopRun + 84
    5   com.apple.iMovie                  0x001262b7 0x1000 + 1200823
    6   com.apple.Foundation              0x942374c4 -[NSThread main] + 45
    7   com.apple.Foundation              0x94237474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                 0x9507f259 _pthread_start + 345
    9   libSystem.B.dylib                 0x9507f0de thread_start + 34
    Thread 5:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                 0x95051afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x95052267 mach_msg + 68
    2   com.apple.CoreFoundation          0x911cc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x911cb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x911d1304 CFRunLoopRun + 84
    5   com.apple.QTKit                   0x9168e465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                 0x9507f259 _pthread_start + 345
    7   libSystem.B.dylib                 0x9507f0de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbfffd642  ecx: 0x94774c47  edx: 0x00000000
      edi: 0x00000000  esi: 0x70726566  ebp: 0xbfffd798  esp: 0xbfffd610
       ss: 0x0000001f  efl: 0x00010286  eip: 0x19871051   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x2c023f  com.apple.iMovie 6.0.3 (6.0.3) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/MacOS/iMovie HD
      0x33a000 -   0x35dff7  com.apple.BluetoothUI 2.4.5 (2.4.5f3) <1F2D0132-8484-F01F-919C-DEC141701985> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
      0x373000 -   0x39efff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x15208000 - 0x15249fe3  com.apple.audio.SoundManager.Components 3.9.4 (3.9.4) <AD66647C-03A9-EBAF-6FFC-E5A631F4D6BE> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x1528e000 - 0x15297fff +com.ecamm.vdig.iGlasses3Driver 3.2 (3.2) <91E2F241-6A03-FCB4-08A7-62B417261D37> /Library/Components/iGlasses3.component/Contents/MacOS/iGlasses3
    0x1529e000 - 0x152abff3 +info.v002.Syphon 1.0 (1) <1121177F-741B-1296-A7F9-3A216645DA81> /Library/Components/iGlasses3.component/Contents/Frameworks/Syphon.framework/Ve rsions/A/Syphon
    0x152b5000 - 0x15375fff +net.sourceforge.webcam-osx.common 0.9.2 (0.9.2) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x16d13000 - 0x16e8cff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16ebe000 - 0x170fafef  com.apple.ATIRadeonX1000GLDriver 1.6.36 (6.3.6) <5370EAFE-71E0-6740-7C3F-705442BFC504> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x1711d000 - 0x17141fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1723b000 - 0x17241feb +com.allocinit.CamTwistQTC 2.2 (2.2) <235E6F71-0FFA-E13D-D373-89EEF8589730> /Library/QuickTime/CamTwist.component/Contents/MacOS/CamTwist
    0x1724a000 - 0x17254ff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x17293000 - 0x172bcfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/CoreAudioKit
    0x172cd000 - 0x172f7ffb  com.apple.QuickTimeIIDCDigitizer 7.6.6 (1790) <48756C73-869F-69EA-8E2E-357BF88E3AEA> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1787c000 - 0x178ccff3  com.apple.QuickTimeUSBVDCDigitizer 2.7.0 (2.7.0) <54EC6923-7CC6-3E35-92E3-8549393EFF3D> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x178d7000 - 0x178dbff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x178e0000 - 0x178e6ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17aea000 - 0x17aec013  com.apple.iMovie.3DSpin 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/3DSpin.bundle/Contents/MacOS/3DSpin
    0x17af1000 - 0x17af4ff3  com.apple.iMovie.AgedFilm 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/AgedFilm.bundle/Contents/MacOS/AgedFilm
    0x17af8000 - 0x17afaffb  com.apple.iMovie.CircleTransition 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/CircleTransition.bundle/Contents/MacOS/CircleTransition
    0x17e25000 - 0x17e2dfff  com.apple.iMovie.ClipToChars 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/ClipToChars.bundle/Contents/MacOS/ClipToChars
    0x17e35000 - 0x17e37ffb  com.apple.iMovie.CoreImageEffects 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/CoreImageEffects.bundle/Contents/MacOS/CoreImageEffects
    0x17e3c000 - 0x17e3efff  com.apple.iMovie.CoreImageTransitions 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/CoreImageTransitions.bundle/Contents/MacOS/CoreImageTra nsitions
    0x17e43000 - 0x17e45fff  com.apple.iMovie.Earthquake 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Earthquake.bundle/Contents/MacOS/Earthquake
    0x17e49000 - 0x17e50ff3  com.apple.iMovie.ElectricalArcs 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/ElectricalArcs.bundle/Contents/MacOS/ElectricalArcs
    0x17e55000 - 0x17e59ff7  com.apple.iMovie.FairyDust 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/FairyDust.bundle/Contents/MacOS/FairyDust
    0x17e5d000 - 0x17e5effb  com.apple.iMovie.FarFarAway 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/FarFarAway.bundle/Contents/MacOS/FarFarAway
    0x17e63000 - 0x17e67ff7  com.apple.iMovie.Filters 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
    0x17e6d000 - 0x17e6effb  com.apple.iMovie.Flash 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Flash.bundle/Contents/MacOS/Flash
    0x17e72000 - 0x17e76fdf  com.apple.iMovie.FogFactory 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/FogFactory.bundle/Contents/MacOS/FogFactory
    0x17e7f000 - 0x17e80ffb  com.apple.iMovie.GhostTrails 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/GhostTrails.bundle/Contents/MacOS/GhostTrails
    0x17e84000 - 0x17e88ffb  com.apple.iMovie.Glower 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Glower.bundle/Contents/MacOS/Glower
    0x17e8c000 - 0x17e8dffb  com.apple.iMovie.TitleBounceAcross 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/KTitles-BounceAcross.bundle/Contents/MacOS/KTitles-Boun ceAcross
    0x17e91000 - 0x17e92ff7  com.apple.iMovie.TitleConverge 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/KTitles-Converge.bundle/Contents/MacOS/KTitles-Converge
    0x17e96000 - 0x17e97fff  com.apple.iMovie.TitleMaterialize 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/KTitles-Materialize.bundle/Contents/MacOS/KTitles-Mater ialize
    0x17e9b000 - 0x17e9cff3  com.apple.iMovie.TitleTwirl 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/KTitles-Twirl.bundle/Contents/MacOS/KTitles-Twirl
    0x17ea0000 - 0x17ea1fef  com.apple.iMovie.TitleUnscramble 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/KTitles-Unscramble.bundle/Contents/MacOS/KTitles-Unscra mble
    0x17ea5000 - 0x17eb1fe3  com.apple.iMovie.LensFlare 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/LensFlare.bundle/Contents/MacOS/LensFlare
    0x17edd000 - 0x17edfff7  com.apple.iMovie.Letterbox 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Letterbox.bundle/Contents/MacOS/Letterbox
    0x17ee3000 - 0x17ee4fff  com.apple.iMovie.Mirror 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Mirror.bundle/Contents/MacOS/Mirror
    0x17ee8000 - 0x17ee9ffb  com.apple.iMovie.NSquare 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/NSquare.bundle/Contents/MacOS/NSquare
    0x17eed000 - 0x17eefff3  com.apple.iMovie.RadialTransition 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/RadialTransition.bundle/Contents/MacOS/RadialTransition
    0x17ef3000 - 0x17ef8fff  com.apple.iMovie.Rainfall 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Rainfall.bundle/Contents/MacOS/Rainfall
    0x17efc000 - 0x17efdff3  com.apple.iMovie.Subtitles 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Subtitles.bundle/Contents/MacOS/Subtitles
    0x17f01000 - 0x17f0efff  com.apple.iMovie.Titles 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Titles.bundle/Contents/MacOS/Titles
    0x17f37000 - 0x17f39fff  com.apple.iMovie.Transitions 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/Transitions.bundle/Contents/MacOS/Transitions
    0x17f3e000 - 0x17f40ff3  com.apple.iMovie.WarpTransition 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/WarpTransition.bundle/Contents/MacOS/WarpTransition
    0x17f44000 - 0x17f45ffb  com.apple.iMovie.WashTransition 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/WashTransition.bundle/Contents/MacOS/WashTransition
    0x17f49000 - 0x17f4aff3  com.apple.iMovie.ZoomTitles 6.0 (81) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/PlugIns/ZoomTitles.bundle/Contents/MacOS/ZoomTitles
    0x17f73000 - 0x17faffe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1790) <6C96B4EC-ED7A-2111-5392-4C9508A8790C> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x183fd000 - 0x183ffff7 +com.manycamllc.ManyCamVideoDigitizer_RGB 0.0.11 (0.0.11) <F08F9B64-450E-B48E-BFEE-D0F72F8DEBB5> /Library/QuickTime/ManyCamVDig_RGB.component/Contents/MacOS/ManyCamVDig_RGB
    0x18487000 - 0x18489ff7 +com.manycamllc.ManyCamVideoDigitizer_YCbCr 0.0.11 (0.0.11) <456347DA-12E1-2E02-1399-88E418660393> /Library/QuickTime/ManyCamVDig_YCbCr.component/Contents/MacOS/ManyCamVDig_YCbCr
    0x19316000 - 0x19392ff7 +com.cfx.imoviefx.crop 2.0 (3.0) /Users/Dom/Library/iMovie/Plug-ins/cfx/crop.bundle/Contents/MacOS/crop
    0x19477000 - 0x194ebff7 +com.cfx.imoviefx.darkenbrt 2.0 (3.0) /Users/Dom/Library/iMovie/Plug-ins/cfx/darkenbrt.bundle/Contents/MacOS/darkenbr t
    0x195bb000 - 0x19632ff7 +com.cfx.imoviefx.edgedetect 2.0 (3.0) /Users/Dom/Library/iMovie/Plug-ins/cfx/edgedetect.bundle/Contents/MacOS/edgedet ect
    0x19710000 - 0x19787ff7 +com.cfx.imoviefx.turnclip 2.0 (3.0) /Users/Dom/Library/iMovie/Plug-ins/cfx/turnclip.bundle/Contents/MacOS/turnclip
    0x19864000 - 0x198e1fff +com.cfx.imoviefx.trrndlines 3.0 (3.0) /Users/Dom/Library/iMovie/Plug-ins/cfx/XXXtrrndlines.bundle/Contents/MacOS/trrn dlines
    0x67e00000 - 0x67e36fef  com.apple.MediaBrowser 2.0.3 (103) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/Frameworks/MediaBrowser.framework/Versions/A/MediaBrowser
    0x68480000 - 0x6849ffff  com.apple.AVCVideoServices 1.0 (28) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServic es
    0x68ba0000 - 0x68ba6ff7  com.apple.iMovieSupport 6.0 (51) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/Frameworks/iMovieSupport.framework/Versions/A/iMovieSupport
    0x68bf0000 - 0x68c2201b  com.apple.MPEG2TSDecoder 1.0 (65) /Applications/iMovie (previous version).localized/iMovie HD.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/A/Mpeg2TsDecoder
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x901ee000 - 0x901f9ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9023b000 - 0x90298ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9029a000 - 0x9032cfe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9034f000 - 0x905b5ff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x905b6000 - 0x905deff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x905e8000 - 0x90896fe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x908e9000 - 0x909e9fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x909f4000 - 0x90aa2ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90bf3000 - 0x90bf6ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076>  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90bf7000 - 0x90bfbff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90bfc000 - 0x90bfcff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90bfd000 - 0x90dc0feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90dc1000 - 0x90dd5fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x90dd6000 - 0x90df7fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90df8000 - 0x90e78feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90e79000 - 0x90e9bfef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90eed000 - 0x90fc7fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9102b000 - 0x91030ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9106c000 - 0x910afff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x910b0000 - 0x91148fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9118f000 - 0x9130afe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91328000 - 0x9132cff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9132d000 - 0x9132dff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9132e000 - 0x9133cff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x913a7000 - 0x913e2ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9142d000 - 0x914e6fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x914e7000 - 0x914e7ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x914e8000 - 0x91590ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x915b3000 - 0x915b3ff7  com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x915b4000 - 0x915bbff7  com.apple.agl 3.0.12 (AGL-3.0.12) <C43D8F35-D0DB-37F3-5058-A8308A377303> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x915bc000 - 0x916fffef  com.apple.QTKit 7.7 (1790) <95F7C69A-1D24-A96A-E95D-1DF8CCD03FB3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91700000 - 0x91715fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91716000 - 0x91747ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91748000 - 0x9174efff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9174f000 - 0x91767ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x917ba000 - 0x917fdff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9180c000 - 0x91815ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91823000 - 0x91925fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x91926000 - 0x9192cfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x91f8d000 - 0x920baffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x920f5000 - 0x92232fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92233000 - 0x92280feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93089000 - 0x930eafe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x931f2000 - 0x9386dff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9386e000 - 0x938f0ffb  SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93c44000 - 0x93ca8ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93dae000 - 0x93debff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93dec000 - 0x93ea4feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93f54000 - 0x93feffe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93ff0000 - 0x93ffefe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x93fff000 - 0x94003ff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94138000 - 0x941e5fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x941ed000 - 0x94220ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94221000 - 0x94492fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9472c000 - 0x94a4cff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94a4d000 - 0x94f59fff  com.apple.RawCamera.bundle 3.13.0 (627) <3859CCFE-E5FB-3EA6-7D4D-D32801FC31E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94f5a000 - 0x94f6cff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94f6d000 - 0x94f70fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95051000 - 0x951f8ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x951f9000 - 0x951fbff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54>  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95278000 - 0x95296fe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95297000 - 0x95311fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95312000 - 0x95494fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x95495000 - 0x956c0ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x956c1000 - 0x9589afff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9589b000 - 0x9597bfe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9597c000 - 0x959c2ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x959c3000 - 0x95a07ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95bee000 - 0x95beeff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x95bef000 - 0x95f13fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95f17000 - 0x967faff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x967fb000 - 0x96805fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96806000 - 0x96839fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9683a000 - 0x9683aff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9683b000 - 0x9684cff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9689e000 - 0x968edfe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x968ee000 - 0x968efff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96903000 - 0x96956ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9695d000 - 0x9695fff7  com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9697f000 - 0x9697fff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x969b6000 - 0x96a93fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96a94000 - 0x96b96fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x96c8a000 - 0x96cc4ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x96cc5000 - 0x96ce4ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96ce5000 - 0x96d60fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x96d61000 - 0x96e6dfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96e7a000 - 0x97669557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9775f000 - 0x977c9fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x977ca000 - 0x9789bfe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9789c000 - 0x978a9ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x978aa000 - 0x978adff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x978ae000 - 0x97d69ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x97d6a000 - 0x97e98fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97e99000 - 0x97ebdff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97ebe000 - 0x97f0eff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97f48000 - 0x97f5cffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97f5d000 - 0x97f8dff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x980b7000 - 0x980c1ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x980c2000 - 0x98118ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x98121000 - 0x98162ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x98163000 - 0x98203fff  com.apple.Bluetooth 2.4.5 (2.4.5f3) <DDC2FBBE-2983-972E-8450-CF6A5A8632FD> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x9824c000 - 0x9824dff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9824e000 - 0x9828bff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9828c000 - 0x98357fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98358000 - 0x9878dff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98796000 - 0x98b01ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98b02000 - 0x98b0eff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x98b0f000 - 0x98b0fff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98b11000 - 0x98b37ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98b38000 - 0x98bd5fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98d44000 - 0x98d64fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x98e16000 - 0x98e26ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98ee3000 - 0x99e36ffb  com.apple.QuickTimeComponents.component 7.6.6 (1790) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99e37000 - 0x9a24dff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9a24e000 - 0x9a2bdff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9a32d000 - 0x9a330ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9a3af000 - 0x9a45bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9a45c000 - 0x9a756fef  com.apple.QuickTime 7.6.6 (1790) <A5B2CDA8-47C9-F1AE-ED54-625B0FAB426F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9a790000 - 0x9a79bff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9a8d8000 - 0x9a8f4fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9a8f8000 - 0x9a9b4fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9a9b5000 - 0x9a9f9fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9a9fa000 - 0x9aa01ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9ac24000 - 0x9ac66ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9ac67000 - 0x9acaeffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro2,1, BootROM MBP21.00A5.B08, 2 processors, Intel Core 2 Duo, 2.33 GHz, 2 GB, SMC 1.14f5
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
    Memory Module: global_name
    AirPort: AirPort Extreme, Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS541616J9SA00, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 3
    USB Device: Miscellaneous Device, 0x046d  (Logitech Inc.), 0x0821, 0xfd300000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x7d100000 / 2
    USB Device: Microsoft Trackball Explorer®, 0x045e  (Microsoft Corporation), 0x0024, 0x7d200000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021b, 0x1d200000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x5d200000 / 2

    I unfortunately cannot remember where I got the 'trrndlines' plugin... I assume that it must have been from CFX (as it is located under /Users/Dom/Library/iMovie/Plug-ins/cfx/XXXtrrndlines.bundle).
    As for what it does, I also do not know, as I do not think I ever used it in my previous video projects.
    At this stage, I think I just need to uninstall it so that iMovie doesnt try to use it.
    Do you know how to uninstall a CFX plugin in iMovie?
    NOTE: I have re-installed iMovie 6.0.4 (instead of iMovie 6.0.3), but still encounter the same issue.

  • My iPhoto isn't working, I open it and a second later its saying "iphoto quit unexpectedly while using the Flip4Mac WMV Import Plug in"

    As i said in my topic My iPhoto isn't working, I open it and a second later its saying hoto quit unexpectedly while using the Flip4Mac WMV Import Plug in. i press ok and try to open it again but than says to repair so i do so, but it doesnt seem to repair its problem. I have tried opening a new photo library through it with the alt/option key but that doesnt seem to work either. i thought it did for a min because it didnt log out but once i pressed open photo stream it seemed to have the same problem. this is what i see
    Process:         iPhoto [661]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    User ID:         502
    PlugIn Path:       /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    PlugIn Identifier: net.telestream.wmv.import
    PlugIn Version:    2.4.0.11 (2.4.0.11)
    Date/Time:       2013-03-17 14:23:46.000 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          2036 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  413 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      4D8E93A6-DD18-B081-7D86-BA37E751C35B
    Crashed Thread:  27  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-00000000000c3000 [  776K] ---/--- SM=NUL 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x9604dd81 -[NSApplication isActive] + 1
    1   com.apple.iPhoto                        0x005ea4d8 0xc3000 + 5403864
    2   com.apple.AppKit                        0x9608e3a4 -[NSView _drawRect:clip:] + 3706
    3   com.apple.AppKit                        0x9608b909 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2156
    4   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    5   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    6   com.apple.AppKit                        0x9608ae8f -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    7   com.apple.AppKit                        0x96086bf3 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4425
    8   com.apple.AppKit                        0x9604f3f1 -[NSView displayIfNeeded] + 1468
    9   com.apple.AppKit                        0x9604edad -[NSWindow displayIfNeeded] + 306
    10  com.apple.AppKit                        0x9604ea44 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 994
    11  com.apple.AppKit                        0x9668caeb __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01253 + 58
    12  com.apple.CoreFoundation                0x94642ced _runLoopObserverWithBlockContext + 29
    13  com.apple.CoreFoundation                0x9461385e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    14  com.apple.CoreFoundation                0x9461379d __CFRunLoopDoObservers + 381
    15  com.apple.CoreFoundation                0x945ed806 __CFRunLoopRun + 886
    16  com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    17  com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    18  com.apple.HIToolbox                     0x94229f5a RunCurrentEventLoopInMode + 242
    19  com.apple.HIToolbox                     0x94229cc9 ReceiveNextEventCommon + 374
    20  com.apple.HIToolbox                     0x94229b44 BlockUntilNextEventMatchingListInMode + 88
    21  com.apple.AppKit                        0x9604b9aa _DPSNextEvent + 724
    22  com.apple.AppKit                        0x9604b1dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                        0x9604163c -[NSApplication run] + 855
    24  com.apple.AppKit                        0x95fe4666 NSApplicationMain + 1053
    25  com.apple.iPhoto                        0x000d2c99 0xc3000 + 64665
    26  com.apple.iPhoto                        0x000d22e5 0xc3000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92d489ae kevent + 10
    1   libdispatch.dylib                       0x979e0c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x979e07a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92d47c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97777a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9777791e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x96230c9d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026cc48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x96ea4586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    17  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92d47be6 __select + 10
    1   com.apple.CoreFoundation                0x94631660 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 20:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9825463a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 21:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x977780e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x94ed37a8 ***::ThreadCondition::timedWait(***::Mutex&, double) + 120
    4   com.apple.JavaScriptCore                0x950eaf63 JSC::BlockAllocator::blockFreeingThreadMain() + 115
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 22:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x982bdf36 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.apple.proxtcore                     0x0207106c -[XTRunLoopThread run:] + 469
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x982b6d24 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x00114a64 0xc3000 + 334436
    5   com.apple.iPhoto                        0x00114672 0xc3000 + 333426
    6   com.apple.CoreFoundation                0x946437cd __invoking___ + 29
    7   com.apple.CoreFoundation                0x94643707 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x026e885b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x026f95f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    20  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 Crashed:: Import thread 0
    0   net.telestream.wmv.import               0x16eb179a ACWma1DecoderEntry + 1418
    1   net.telestream.wmv.import               0x16eb1a3c ACWma1DecoderEntry + 2092
    2   net.telestream.license                  0x1642c562 TSLicenseF4M::GetLevel(bool) + 42
    3   net.telestream.wmv.import               0x16e9b975 MjpgDecompressorComponentDispatch + 71957
    4   net.telestream.wmv.import               0x16ea00d5 MjpgDecompressorComponentDispatch + 90229
    5   net.telestream.wmv.import               0x16e84180 MmsMediaHandlerComponentDispatch + 14368
    6   com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    7   com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    8   com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    9   net.telestream.wmv.import               0x16e8432d M4s2DecompressorComponentDispatch + 205
    10  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    11  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    12  com.apple.CoreServices.CarbonCore          0x9536bad7 CallComponentOpen + 43
    13  com.apple.CoreServices.CarbonCore          0x952d86a5 OpenAComponent + 443
    14  com.apple.CoreServices.CarbonCore          0x952d84e2 OpenComponent + 24
    15  com.apple.CoreServices.CarbonCore          0x952d8aeb CallComponent + 164
    16  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    17  com.apple.CoreServices.CarbonCore          0x9536bc5b CallComponentGetPublicResource + 57
    18  com.apple.QuickTime                     0x990d4c91 cchaMissing + 326
    19  com.apple.CoreServices.CarbonCore          0x952d7653 GetComponentPublicResourceList + 749
    20  com.apple.QuickTime                     0x990d40fb startUsingCachedCodecCharacterizations + 267
    21  com.apple.QuickTime                     0x990d3c14 FindBestChain + 30
    22  com.apple.QuickTime                     0x990d2af9 ICMSequenceGetChain + 514
    23  com.apple.QuickTime                     0x990cdca5 DoBandedDecompress + 5528
    24  com.apple.QuickTime                     0x990cc6a0 ICMAction + 1286
    25  com.apple.QuickTime                     0x990cbf90 ICMDeviceLoop + 3924
    26  com.apple.QuickTime                     0x990d2060 DecompressSequenceFrameWhen + 803
    27  com.apple.QuickTime                     0x990d1d34 DecompressSequenceFrameS + 61
    28  com.apple.QuickTimeImporters.component          0x9a2b57ad importGraphicDrawInternal + 1834
    29  com.apple.QuickTimeImporters.component          0x9a2af1ea importGraphicDrawOrDecide + 1782
    30  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    31  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    32  com.apple.QuickTimeImporters.component          0x9a2add31 ImportGraphicComponentDispatch + 81
    33  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    34  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    35  com.apple.QuickTimeImporters.component          0x9a24c768 ImportJFIFComponentDispatch + 98
    36  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    37  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    38  com.apple.QuickTimeComponents.component          0x93f3db61 0x933ab000 + 12135265
    39  com.apple.QuickTimeComponents.component          0x93c7abe0 0x933ab000 + 9239520
    40  com.apple.CoreServices.CarbonCore          0x9536d91f callComponentStorage_444 + 32
    41  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    42  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    43  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    44  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    45  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    46  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    47  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    48  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    49  com.apple.QuickTimeComponents.component          0x93f3e825 0x933ab000 + 12138533
    50  com.apple.QuickTimeComponents.component          0x93c7a125 0x933ab000 + 9236773
    51  com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    52  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    53  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    54  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    55  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    56  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    57  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    58  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    59  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    60  com.apple.QuickTime                     0x992bd8b3 GraphicsExportDoExport + 43
    61  com.apple.iPhoto                        0x001e75b9 0xc3000 + 1197497
    62  com.apple.iPhoto                        0x001e70e1 0xc3000 + 1196257
    63  com.apple.iPhoto                        0x001e2212 0xc3000 + 1176082
    64  com.apple.iPhoto                        0x001e0ead 0xc3000 + 1171117
    65  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    66  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x16eb1799  ecx: 0x9265ad96  edx: 0x17050908
      edi: 0xb1cc49ac  esi: 0x00000000  ebp: 0xb1cc48c8  esp: 0xb1cc48bc
       ss: 0x00000023  efl: 0x00010292  eip: 0x16eb179a   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
       0xc3000 -   0xdaffeb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf41000 -  0x101bffc  org.python.python (2.6.7 - 2.6.7) <FA305A16-14DB-3062-BB61-3944ED836202> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1066000 -  0x106efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10dd000 -  0x12b9ffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x134a000 -  0x134fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1359000 -  0x1388ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13aa000 -  0x13d1ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13e6000 -  0x140affb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1421000 -  0x142cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1438000 -  0x144dffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1459000 -  0x1482ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <C38D0A24-E868-362A-A195-8510CF36F66E> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x149d000 -  0x149ffff  com.apple.ExceptionHandling (1.5 - 10) <D565F065-B45F-37FF-BA46-C675F95BBC00> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14a7000 -  0x14b2ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14bd000 -  0x153cff7  com.apple.iLifeMediaBrowser (2.7.3 - 546.4) <41C10827-7C8E-3241-922A-9E1A6CD48866> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1581000 -  0x16a0ffb  com.apple.WebKit (8536 - 8536.28.10) <C181C3FB-91E3-38AB-A709-6B61935B3AD8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1751000 -  0x1766fff  com.apple.iChat.InstantMessage (7.0.1 - 3305) <BDC60881-195C-3C36-B863-AAA6BDA76C18> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1774000 -  0x1b0dff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c0b000 -  0x1e9cff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f76000 -  0x200dff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x206b000 -  0x20d3ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2116000 -  0x2214ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x225e000 -  0x2289ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22a3000 -  0x230efff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2353000 -  0x258cff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26a9000 -  0x2bd5ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2dd2000 -  0x2df6fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <6C931BC9-7C14-3F67-86F5-EBE2916E0670> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e10000 -  0x2e10fff  com.apple.SafariServices.framework (8536 - 8536.28.10) <38360619-29CB-30E2-8031-B8BCF393372E> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e16000 -  0x2e1dff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e28000 -  0x2e28ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <0626242D-C677-3B1D-BCC0-75F5857E9E37> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e2e000 -  0x309eff3  com.apple.CalendarStore (6.0 - 1249) <A6C4BC52-A53D-38F9-B938-AF2E885AAC0E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x31a2000 -  0x31feffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x322b000 -  0x325dff3  com.apple.GeoServices (1.0 - 1) <E42ABF31-2FE8-303E-908F-2510E69B70CE> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x326f000 -  0x3278fff  com.apple.ProtocolBuffer (2 - 104) <54ACBE43-3E02-38C0-81D1-A9EB40E5655A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x3280000 -  0x3288ff3  com.apple.AppSandbox (2.0 - 1) <EA5C2F87-F046-349E-B276-6B9F252B2AD5> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x3290000 -  0x32d4ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3307000 -  0x3310ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3321000 -  0x3332fff  com.apple.CalendarFoundation (1.0 - 29) <6BC68447-ED79-3ABD-8A6E-FA5416D09E2E> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x3345000 -  0x33a7fff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x33e5000 -  0x3432ffb  com.apple.ExchangeWebServices (3.0 - 157) <B519C697-55B7-3588-945D-55A7C9C9F375> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x3488000 -  0x34d6fff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3501000 -  0x3501fff +cl_kernels (???) <C95C2C6C-E8D9-4FB7-8D3B-9BC35740A414> cl_kernels
    0x3503000 -  0x3510ffb  com.apple.KerberosHelper (4.0 - 1.0) <527E53D2-F8D2-31D1-8576-B725B42C97D9> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x351c000 -  0x3668ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x36e4000 -  0x3751ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <569589AA-CBE2-3B49-8690-D2977E209499> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x377f000 -  0x37a6ffb  libsandbox.1.dylib (220.2) <3DBD15B6-ABFC-3395-9F6A-3061C8C1AC35> /usr/lib/libsandbox.1.dylib
    0x37b0000 -  0x37c3fff  com.apple.AppContainer (2.0 - 1) <A2C97877-F90D-34CB-BAC7-811D62BABDF0> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x37d2000 -  0x37d3ff5 +cl_kernels (???) <B3AF783E-16EA-4713-B50F-CEF8B240316F> cl_kernels
    0x37d5000 -  0x37d9ff7  com.apple.SecCodeWrapper (2.0 - 1) <2ADFEC5C-ECC7-3CF5-89B9-0B461E014F12> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x37e3000 -  0x37e7ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x37ee000 -  0x37f1ffb  com.apple.LibraryRepair (1.0 - 1) <C6A079B1-1FD5-39FF-B141-E6C99ECBAA77> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x37fb000 -  0x3855fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x386f000 -  0x4502ffb  com.apple.WebCore (8536 - 8536.28.10) <AA738A8C-808D-302A-B58D-404C58075C45> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4c8a000 -  0x4c8bfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4c93000 -  0x4cb8ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4cc4000 -  0x4cf8fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d03000 -  0x4e6afff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4e71000 -  0x4ecdfff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <096185BF-14F0-385C-88FF-1ABB418697A8> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4ee7000 -  0x5001ffb  com.apple.avfoundation (2.0 - 361.32) <7EDA9CE4-6147-302E-8B98-9F753E2849EB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x50a0000 -  0x50d8ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <224D00BA-092E-38A6-9BBB-6E8B51202227> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x50f5000 -  0x511cff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <277A523B-0808-366A-A6E4-99C765C38387> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x5131000 -  0x5162ff3  com.apple.FWAVCPrivate (52.47 - 47) <0A275296-00A0-3227-9201-1F8CB0E054AF> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x5179000 -  0x51c1ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <A54BCA4B-40BD-3B8C-BDA9-FFB50DA5FDC9> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x51e3000 -  0x5282ff7  com.apple.imcore (8.0 - 900) <E17C2E05-730E-3157-9FC4-6B67456054C8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x52a9000 -  0x52fdff7  com.apple.imfoundation (8.0 - 900) <94D754EA-3FCB-30A8-8C96-7A0FA2DB7D9A> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5329000 -  0x5331ff7  com.apple.marco (8.0 - 900) <FAE5B666-B0A2-3348-9DAF-55D6851139E6> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x5339000 -  0x5360ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x537b000 -  0x53a9ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <82BEE3DD-958D-35A6-B167-C8C0C31227DB> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x67fc000 -  0x6854fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x6878000 -  0x687bffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xcf4b000 -  0xcf58ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xe96c000 -  0xe96dffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <5184600D-D93E-3267-A3C0-1927BD7DB823> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x12602000 - 0x12796ffb  GLEngine (8.7.25) <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x127cd000 - 0x1294efff  libGLProgrammability.dylib (8.7.25) <CE1A4DFC-EEB2-37C1-B574-0338666C4017> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12980000 - 0x1298bfff  libGPUSupport.dylib (8.7.25) <08BED1B3-FD0C-3137-BC0C-39EED6029D84> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12992000 - 0x129bdff7  GLRendererFloat (8.7.25) <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x129c6000 - 0x129ceffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x129d5000 - 0x129d8ffe  com.apple.DirectoryServicesSource (2.1 - 1169) <F49E7180-F3CF-3C63-8AF3-76C088BA779C> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x1311f000 - 0x131b1fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x131c3000 - 0x13205fff  com.apple.facetimeservices (8.0 - 900) <1C565FAC-C1EE-3327-BB19-6DB8987E703A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x1321d000 - 0x1326eff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <A8099206-0C6D-3114-A908-F8992CA5CA88> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x1328b000 - 0x1329affd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <86494495-4C08-3673-8B73-04931F3D9345> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x13329000 - 0x1332effe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x13418000 - 0x1341bfff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x15405000 - 0x15408fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x1540e000 - 0x1540fffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15476000 - 0x15534ff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x15678000 - 0x1567dff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15683000 - 0x156aaffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x156b6000 - 0x156d5ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x156df000 - 0x15715ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <D3890130-951A-3F09-9D10-04008FEAF6E2> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15724000 - 0x1572bfff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x15732000 - 0x15746ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <6EA7F7AB-936F-384F-ABD1-D9BDF69B48B3> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x16427000 - 0x16434ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x167de000 - 0x16889fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x16e44000 - 0x17039ff2 +net.telestream.wmv.import (2.4.0.11 - 2.4.0.11) <83F7489B-3935-E1BA-B934-69179217A26D> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0) <4B231127-7885-33A3-9FC7-7EF42A066FD7> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fec2000 - 0x8fef4e57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90403feb  com.apple.VideoToolbox (1.0 - 926.87) <D6460276-E1CF-317D-B32F-80EAE916168C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90404000 - 0x90561ffb  com.apple.QTKit (7.7.1 - 2599.24) <39CC892D-2874-33FE-BE30-87FE07D875BD> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90562000 - 0x90568fff  com.apple.phonenumbers (1.1 - 47) <0D9B4A12-C1D3-374C-B320-11806C0CCF2A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x90569000 - 0x905c0ff7  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
    0x905f7000 - 0x90651ffb  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
    0x90652000 - 0x90656fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /

    You may need to update your version of Flip4Mac:
    http://www.telestream.net/flip4mac/overview.htm

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

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

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

  • IPhoto quit unexpectedly while using the iTunesLibrary plug-in.

    Hi everyone,
    I'm using a mid-09 Macbook Pro running Yosemite 10.10.2.
    I'm an ebay seller, so I'm constantly using iPhoto to download pics from my camera to edit and then post on eBay. Up until this morning, I haven't had a single issue with iPhoto launching and using the tool.
    This morning, I plugged my phone into my Macbook to charge it, and that's when the issue started.
    I tried to download pics to iPhoto and got the error message "iPhoto quit unexpectedly while using the iTunesLibrary plug-in."
    I can't do any of the usual tricks that I've read thus far, i.e. holding down option or option and command. I only get the above message. Here's the report:
    Process:          
    iPhoto [763]
    Path:             
    /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:       
    com.apple.iPhoto
    Version:          
    9.6 (910.29)
    Build Info:       
    iPhotoProject-910029000000000~1
    App Item ID:      
    408981381
    App External ID:  
    729712666
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    iPhoto [763]
    User ID:          
    501
    PlugIn Path:        
    /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
    PlugIn Identifier:  
    com.apple.iTunesLibrary
    PlugIn Version:     
    12.1 (12.1.0.50)
    Date/Time:        
    2015-02-07 11:58:39.930 -0600
    OS Version:       
    Mac OS X 10.10.2 (14C109)
    Report Version:   
    11
    Anonymous UUID:   
    3D68BEC5-1757-8797-3EDF-A1B435E87E51
    Time Awake Since Boot: 1900 seconds
    Crashed Thread:   
    0  Dispatch queue: com.apple.main-thread
    Exception Type:   
    EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes:  
    0x0000000000000032, 0x000000010f8913e2
    kernel messages:
    -1 sec     
    CODE SIGNING: cs_invalid_page(0x116460000): p=765[ReportCrash] final status 0x2000000, allowing (remove VALID) page
    -2 sec     
    CODE SIGNING: cs_invalid_page(0x10f891000): p=763[iPhoto] final status 0x3004200, denying page sending SIGKILL
    -2 sec     
    CODE SIGNING: process 763[iPhoto]: rejecting invalid page at address 0x10f891000 from offset 0x4f000 in file "/Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary" (cs_mtime:1422568883.0 == mtime:1422568883.0) (signed:1 validated:1 tainted:1 wpmapped:0 slid:0)
    VM Regions Near 0x10f8913e2:
    VM_ALLOCATE       
    000000010f879000-000000010f87a000 [
    4K] rw-/rwx SM=ALI 
    --> __TEXT            
    000000010f87e000-000000010f8ac000 [  184K] r-x/rwx SM=COW  /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
    __DATA            
    000000010f8ac000-000000010f8b3000 [   28K] rw-/rwx SM=PRV  /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
    Application Specific Information:
    /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.iTunesLibrary 
    0x000000010f8913e2 0x10f87e000 + 78818
    1   dyld                    
    0x00007fff5fc4dceb ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 265
    2   dyld                    
    0x00007fff5fc4de78 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 40
    3   dyld                    
    0x00007fff5fc4a871 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 305
    4   dyld                    
    0x00007fff5fc4a806 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 198
    5   dyld                    
    0x00007fff5fc4a6f8 ImageLoader::processInitializers(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 138
    6   dyld                    
    0x00007fff5fc4a969 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 75
    7   dyld                    
    0x00007fff5fc3d245 dyld::initializeMainExecutable() + 187
    8   dyld                    
    0x00007fff5fc40be1 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 2716
    9   dyld                    
    0x00007fff5fc3c276 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 512
    10  dyld                    
    0x00007fff5fc3c036 _dyld_start + 54
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x000000010f8b2ad0  rcx: 0x00007fff50d0fc58  rdx: 0x00007fff50d0fbb8
      rdi: 0x000000010f8b2ad0  rsi: 0x00007fff50d0fba8  rbp: 0x00007fff50d0bdd0  rsp: 0x00007fff50d0bda8
       r8: 0x00007fff5fc73660   r9: 0x0000000115296300  r10: 0x00000000000056a0  r11: 0x0000000115060761
      r12: 0x000000010f8ac988  r13: 0x00007fff5fc73598  r14: 0x00007fff5fc7aa70  r15: 0x0000000000000003
      rip: 0x000000010f8913e2  rfl: 0x0000000000010246  cr2: 0x000000010f8913e2
    Logical CPU:
    0
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x10eef0000 -   
    0x10f558fff  com.apple.iPhoto (9.6 - 910.29) <B9A5D521-72CB-34B7-A240-7C951E98B624> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x10f735000 -   
    0x10f816fff  org.python.python (2.6.9 - 2.6.9) <BA29A03B-38B9-3590-8DC9-D64CF8E2E389> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x10f87e000 -   
    0x10f8abfff  com.apple.iTunesLibrary (12.1 - 12.1.0.50) <E3BB68BE-6C57-3593-81F4-AD95BADE2E48> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
    0x10f8c9000 -   
    0x10f915ff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x10f935000 -   
    0x10f959fff  com.apple.ScreenSaver (5.0 - 5) <04D498A5-F3CE-32D4-9D78-D59A04A81786> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x10f980000 -   
    0x10fa16ffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x10fa64000 -   
    0x10fbc2ffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x10fd1b000 -   
    0x10fd25ff7  com.apple.PhotoFoundation (1.0 - 400.2) <F84CC426-F9FE-390B-9475-E61E3C62851E> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10fdaf000 -   
    0x10ffa8fff  com.apple.geode (1.5.3 - 500.6) <6E5AE587-64E2-3CBB-B0D2-9A17442A0CE0> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x110110000 -   
    0x110114fff  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <9C7AFABC-8D42-3A9D-A62E-A54730FB464D> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x11011d000 -   
    0x110147fff  com.apple.iLifeAssetManagement (2.7 - 400.7) <01F525E2-7103-38E9-865D-7828D20754EA> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x110180000 -   
    0x1101a4fff  com.apple.iPhoto.Tessera (1.1 - 400.2) <30BC8A34-B855-3CBE-BAB1-0E6F37B65F0F> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x1101d4000 -   
    0x1101f5ff7  com.apple.iPhoto.Tellus (1.3 - 400.2) <5F83E23D-3E07-3E81-B56C-9828690DAE41> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x11022e000 -   
    0x110238fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <867865E4-66F4-39AD-A5E9-96E53FBAA39F> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x110257000 -   
    0x11026dff7  com.apple.iLifeFaceRecognition (1.0 - 30.11) <846AEC01-11F8-336B-9954-EB14D3C8AAC0> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x110281000 -   
    0x110281fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x11028a000 -   
    0x11028afff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x11028f000 -   
    0x110625fff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x1107ac000 -   
    0x1107acfff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x1107b7000 -   
    0x1107c5ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x1107d4000 -   
    0x110846ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x110881000 -   
    0x11093cff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1109a5000 -   
    0x110a1dff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x110a66000 -   
    0x110a77ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x110a80000 -   
    0x110a80fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x110a89000 -   
    0x110a89fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x110a8e000 -   
    0x110cf6ff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x110e4e000 -   
    0x110e73ff7  com.apple.DiscRecordingUI (9.0 - 9000.4.2) <F1DC628C-5B6F-3AB5-912E-81DB1A9F0FA3> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x110e97000 -   
    0x110e99fff  com.apple.ExceptionHandling (1.5 - 10) <C3A6EB3D-C0B3-371F-99D8-AF5495498091> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x110ea1000 -   
    0x1110e2fff  com.apple.AddressBook.framework (9.0 - 1563) <63953D92-FB0D-31B1-A449-07BA64D08BA9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x11135e000 -   
    0x111543ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
    0x111601000 -   
    0x11167eff7  com.apple.iLifeMediaBrowser (2.9.0 - 675) <2E008E85-B3EA-391C-9D79-6275AC70EDDB> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1116ea000 -   
    0x1119b0fff  com.apple.WebKit (10600 - 10600.3.18) <F8E36318-4F4C-348B-B1DE-D4BE035036AD> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x111c93000 -   
    0x111dd7ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x111ef1000 -   
    0x111f3dff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x111f59000 -   
    0x111f62ff7  com.apple.iChat.InstantMessage (8.0 - 4701) <D24EA18F-C735-35F9-91AD-8A6740CCC333> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x111f74000 -   
    0x1120b6fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x1120d0000 -   
    0x112411ff7  com.apple.iLifeSlideshow (3.1.2 - 1152.19) <CC882774-0063-32EE-8F93-129BF88A66BC> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x112598000 -   
    0x11259dfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x1125a8000 -   
    0x112822ff7  com.apple.iLifePageLayout (1.3 - 500.5) <A3525886-10EA-3567-ADE9-AF8EDF5215F5> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x112aa9000 -   
    0x112c59ff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x112d37000 -   
    0x112dc1fff  com.apple.MobileMe (13 - 1.0.4) <65494CD8-55A0-30AC-A03A-7E68283A0719> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x112e35000 -   
    0x112e95fff  com.apple.proxtcore (1.4.1 - 500.2) <818709BB-209D-3B01-9701-FEC9B025C98F> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x112f51000 -   
    0x113045fff  com.apple.iLifeSQLAccess (1.7.1 - 400.2) <25E1A248-33D9-337C-93E6-9A69678F6AAB> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x113111000 -   
    0x11313cfff  com.apple.ProUtils (1.1 - 500.3) <1EE53B28-EF8D-3413-9DC1-C55B56CE4A41> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x113178000 -   
    0x1131d1fff  com.apple.iLifeKit (1.3.1 - 400.3) <68EDCA62-D591-3237-9315-652EB058664C> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x113298000 -   
    0x113499fff  com.apple.prokit (8.0 - 5015) <4422712B-380A-395F-92C4-DEFB877AC650> /Applications/iPhoto.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
    0x113617000 -   
    0x113ad1fff  com.apple.RedRock (1.9.4 - 500.14) <576B1207-F1AB-3C89-9D1A-9FF07E4B5B99> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x11409d000 -   
    0x11409dfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x1140a3000 -   
    0x1140adff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x1140bb000 -   
    0x114351ff7  com.apple.AOSKit (1.06 - 215) <432B31DE-50F3-3258-A462-A777C3B8184A> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x114380000 -   
    0x1143cdfff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x114410000 -   
    0x114503fff  com.apple.MapKit (1.0 - 1464.4.21.1) <DF2A21A5-4128-388C-9BDA-E55DAD02103B> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
    0x1145c9000 -   
    0x1148f7fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x114b4d000 -   
    0x114d4746f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
    0x114d6f000 -   
    0x114dbeff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
    0x114e27000 -   
    0x114e28fff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
    0x114e33000 -   
    0x114e37fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x114e3d000 -   
    0x114e48fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
    0x114e5b000 -   
    0x114e62ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x114e70000 -   
    0x114e78ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x114e85000 -   
    0x114efbfe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x114f38000 -   
    0x114f62ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
    0x114f88000 -   
    0x114f8bff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
    0x114f93000 -   
    0x114f93ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x114f9b000 -   
    0x114f9bff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
    0x114fa7000 -   
    0x114facff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x114fb5000 -   
    0x114fb7ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
    0x114fc2000 -   
    0x114fc3ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x114fcc000 -   
    0x114fe2ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x114ff5000 -   
    0x114ff6ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
    0x115002000 -   
    0x11508eff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
    0x1150b9000 -   
    0x1150bbfff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
    0x1150c7000 -   
    0x1150c9ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
    0x1150cf000 -   
    0x1150e0ff7  libsystem_coretls.dylib (35.1.2) <BC691CD1-17B6-39A5-BD02-AF973695FD1D> /usr/lib/system/libsystem_coretls.dylib
    0x1150f1000 -   
    0x1150f9fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
    0x115106000 -   
    0x11512efff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x115148000 -   
    0x115165fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
    0x115182000 -   
    0x1151b2fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x1151be000 -   
    0x1151daff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x1151e6000 -   
    0x11521effb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
    0x11524c000 -   
    0x115252ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x11525e000 -   
    0x115267ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x115274000 -   
    0x11527cfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x11528c000 -   
    0x115295fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
    0x1152a2000 -   
    0x1152a4ff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
    0x1152ad000 -   
    0x1152aefff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x1152b8000 -   
    0x1152bdff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
    0x1152c9000 -   
    0x1152cffff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x1152db000 -   
    0x1152dbff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x1152e1000 -   
    0x1152e6ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
    0x1152ee000 -   
    0x115316fff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
    0x115338000 -   
    0x11537eff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x115396000 -   
    0x1153c1fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x1153d4000 -   
    0x115428fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x11548b000 -   
    0x11548cfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x115496000 -   
    0x115601ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x11569e000 -   
    0x1161e8ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x1169d4000 -   
    0x116c4fff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x116d8d000 -   
    0x116dc5fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x116e04000 -   
    0x116f34fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x116fca000 -   
    0x116fcdfff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x116fd8000 -   
    0x116fd8fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x116fe2000 -   
    0x117049ffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x117089000 -   
    0x117197fff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x117222000 -   
    0x117526ffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x1176ab000 -   
    0x1176b1fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x1176bf000 -   
    0x1177b1fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
    0x1177ee000 -   
    0x117916ff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x117a2f000 -   
    0x117a80ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x117aaa000 -   
    0x117aabfff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x117ab5000 -   
    0x117ac9ff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x117add000 -   
    0x117b5ffff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x117bdb000 -   
    0x117bf7fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x117c10000 -   
    0x117c33fff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x117c66000 -   
    0x1184bdffb  com.apple.CoreGraphics (1.600.0 - 775.16) <864C1845-C41E-314C-A3B4-438DC39E5FBC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x1185fb000 -   
    0x118713ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x1187b0000 -   
    0x1188edfff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x118961000 -   
    0x11897bff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
    0x11899e000 -   
    0x118a5efff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x118af9000 -   
    0x118b24ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x118b36000 -   
    0x118d39ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x118ec3000 -   
    0x118edeff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x118eed000 -   
    0x118efaff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x118f03000 -   
    0x118f1dff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x118f2d000 -   
    0x118f3dff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
    0x118f47000 -   
    0x118f52ff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
    0x118f57000 -   
    0x118f64ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x118f70000 -   
    0x118f74fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x118f7b000 -   
    0x118f7bfff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
    0x118f85000 -   
    0x118f8dffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x118f9a000 -   
    0x119281ffb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x119303000 -   
    0x1193a1fff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x11940e000 -   
    0x11948bfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x1194e8000 -   
    0x119557fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x1195a1000 -   
    0x119600ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x119635000 -   
    0x119757ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x119807000 -   
    0x119832fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x119859000 -   
    0x119860fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x11986d000 -   
    0x119877ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x119889000 -   
    0x11988bfff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x119897000 -   
    0x11989bfff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x1198a5000 -   
    0x119bd8fff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
    0x119c3d000 -   
    0x119cb1fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x119ce4000 -   
    0x119d79ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x119dc6000 -   
    0x119e0fff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x119e46000 -   
    0x119e55fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x119e67000 -   
    0x119eb4ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x119ee1000 -   
    0x119f1cfff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x119f41000 -   
    0x119f4cff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x119f63000 -   
    0x11a3b6fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x11a414000 -   
    0x11a414fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x11a41e000 -   
    0x11a535fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x11a546000 -   
    0x11a609ff7  libvMisc.dylib (516) <A84F3A3B-D349-3FBC-B5A6-E0F572734073> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x11a617000 -   
    0x11aa24ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x11aa88000 -   
    0x11ac16fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x11ac42000 -   
    0x11ac59ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x11ac61000 -   
    0x11ad55fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x11add2000 -   
    0x11ae18ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x11ae44000 -   
    0x11ae5efff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x11ae68000 -   
    0x11af07df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x11af79000 -   
    0x11af9eff7  libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x11afab000 -   
    0x11b006fff  libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x11b015000 -   
    0x11b03aff7  libPng.dylib (1232) <6E72AE55-AFB0-3FC4-80B2-EBC3353436B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x11b047000 -   
    0x11b04bff7  libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x11b056000 -   
    0x11b149ff7  libJP2.dylib (1232) <10B78725-0B8A-3D87-B2E3-8FEED0C07F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x11b179000 -   
    0x11b17bfff  libRadiance.dylib (1232) <E670DDEF-60F8-3AEB-B6A2-B20A1340634C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x11b183000 -   
    0x11b1b0fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x11b1d0000 -   
    0x11b211fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x11b225000 -   
    0x11b22efff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x11b239000 -   
    0x11b244fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x11b25c000 -   
    0x11b29cff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x11b2ab000 -   
    0x11b2adfff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x11b2b6000 -   
    0x11b2bafff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x11b2c3000 -   
    0x11b2ddff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x11b2f7000 -   
    0x11b327fff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x11b34c000 -   
    0x11b369ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
    0x11b377000 -   
    0x11b469ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x11b479000 -   
    0x11b4e7ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x11b519000 -   
    0x11b51effb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
    0x11b52b000 -   
    0x11b537ff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x11b553000 -   
    0x11b55cff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x11b563000 -   
    0x11b57cff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x11b5a1000 -   
    0x11b615ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x11b65c000 -   
    0x11b6b6ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x11b6cc000 -   
    0x11b6ddfff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x11b6f0000 -   
    0x11b6f3fff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x11b6fe000 -   
    0x11b727ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
    0x11b73a000 -   
    0x11b7cefff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x11b803000 -   
    0x11bad2ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x11bc27000 -   
    0x11bc76ff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x11bc93000 -   
    0x11c0c3fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x11c2db000 -   
    0x11c2f5ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x11c30a000 -   
    0x11c32afff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x11c34d000 -   
    0x11c373ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x11c380000 -   
    0x11c3a1fff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x11c3b3000 -   
    0x11c41ffff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x11c46a000 -   
    0x11c50cff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x11c58c000 -   
    0x11c5f3ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x11c651000 -   
    0x11c664ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x11c67a000 -   
    0x11c6b4ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x11c6d2000 -   
    0x11c75bfff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x11c771000 -   
    0x11c7acfff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x11c7d9000 -   
    0x11c7e6fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x11c7f6000 -   
    0x11caa2fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x11ccb1000 -   
    0x11ccbefff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x11cccf000 -   
    0x11ccfefff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x11cd31000 -   
    0x11ce03ff7  com.apple.PubSub (1.0.5 - 65.39) <9A915B29-496B-3653-B450-EB1B6EF2BBD7> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x11ce6e000 -   
    0x11ce85fff  com.apple.login (3.0 - 3.0) <85DEFDD5-FC3E-3AA1-8037-12F2DCE6BE3D> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x11ce98000 -   
    0x11cf10fff  com.apple.AVKit (1.1 - 214.9) <A7052EED-5EE4-3543-99D1-9C8A425E4068> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
    0x11cf79000 -   
    0x11d1e3fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x11d436000 -   
    0x11d492fff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x11d4d9000 -   
    0x11d4deff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x11d4ee000 -   
    0x11d541ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x11d58b000 -   
    0x11da77ff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x11db53000 -   
    0x11debefff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x11df0d000 -   
    0x11df5aff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x11df84000 -   
    0x11e0b6ff7  com.apple.MediaControlSender (2.0 - 215.15) <4544

    First check, if you have a pending update for iTunes waiting.  If you update it to the current version, the problem might be solved.
    You can forcefully delete it, as described here:  http://www.tekrevue.com/tip/uninstall-itunes/
    But it might e better to go straight for the reinstall of MacOS X: You can install on top of the current system and do not need to wipe the drive and reinstall anything else.
    Just boot into recovery:
    To start your computer from Recovery, restart your Mac and hold down the Command and R keys at startup.
    Hold these keys until the Apple logo appears. After your computer finishes starting up, you should see a desktop with an OS X menu bar and an OS X Utilities window with the options listed above. If you see a login window or your own desktop instead of the Utilities window, it's possible that you didn't press Command-R early enough. Restart your computer and try again.
    Choose the option you want to use from the Utilities window or the Utilities menu.
    In order to reinstall OS X, you need to be connected to the Internet using Ethernet or Wi-Fi. If you're using a wireless Internet connection, click the Wi-Fi menu in the upper-right corner of the screen to select a nearby Wi-Fi network. Choose your preferred network name and enter a username and password to join the network if needed.

  • Finder quit unexpectedly while using the DesktopServicePriv plug-in

    Hi,
    this morning without me having installed in my MacBookPro any applicaton in the last month, Finder didn't start and this message appeared on the Desktop:
    Finder quit unexpectedly while using the DesktopServicePriv plug-in
    and the following is the Problem Details and System Configuration:
    Process: Finder [174]
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: Finder
    Version: 10.9.2 (10.9.2)
    Code Type: X86-64 (Native)
    Parent Process: launchd [161]
    Responsible: Finder [174]
    User ID:         501
    PlugIn Path: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    PlugIn Identifier: com.apple.desktopservices
    PlugIn Version: 1.8.2 (1.8.2)
    Date/Time:       2014-03-21 21:05:21.530 +0700
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID: 116B56FE-387F-FC65-B477-3DA0EE8D9536
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff7bb27070
    VM Regions Near 0x7fff7bb27070:
        __DATA 00007fff7baff000-00007fff7bb24000 [ 148K] rw-/rwx SM=COW /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    --> __DATA 00007fff7bb24000-00007fff7bb2d000 [ 36K] rw-/rwx SM=COW /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        __DATA 00007fff7bb2d000-00007fff7bb2e000 [ 4K] rw-/rwx SM=COW /usr/lib/system/libsystem_m.dylib
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 libdispatch.dylib              0x00007fff95991ff2 dispatch_once + 0
    1 com.apple.desktopservices         0x00007fff93a3b746 NodeContextOpen + 152
    2 com.apple.finder                          0x000000010e585903 0x10e57d000 + 35075
    3 com.apple.finder                          0x000000010e58387c 0x10e57d000 + 26748
    4 com.apple.finder                          0x000000010e58375d 0x10e57d000 + 26461
    5   libdyld.dylib                     0x00007fff8d63f5fd start + 1
    Thread 1:
    0 libsystem_kernel.dylib                 0x00007fff8c9c7e6a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8d3a2f08 _pthread_wqthread + 330
    2 libsystem_pthread.dylib              0x00007fff8d3a5fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff8c9c8662 kevent64 + 10
    1 libdispatch.dylib              0x00007fff9599343d _dispatch_mgr_invoke + 239
    2 libdispatch.dylib              0x00007fff95993152 _dispatch_mgr_thread + 52
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff8c9c7e6a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8d3a2f08 _pthread_wqthread + 330
    2 libsystem_pthread.dylib              0x00007fff8d3a5fb9 start_wqthread + 13
    Thread 4:
    0 libsystem_kernel.dylib                 0x00007fff8c9c7e6a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8d3a2f08 _pthread_wqthread + 330
    2 libsystem_pthread.dylib              0x00007fff8d3a5fb9 start_wqthread + 13
    Thread 5:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff8e752080  rcx: 0xf3004d33ded3d420  rdx: 0x00007fff7bb2c1d4
      rdi: 0x00007fff7bb2c5d0  rsi: 0x00007fff7bb27060  rbp: 0x00007fff51682ca0  rsp: 0x00007fff51682c48
       r8: 0x000000000000000f   r9: 0xffff9ffffff7992f  r10: 0x00007fff97ef76c0  r11: 0x00007fff93a3b69a
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000001  r15: 0x0000000000000000
      rip: 0x00007fff95991ff2  rfl: 0x0000000000010213  cr2: 0x00007fff7bb27070
    Logical CPU:     1
    Error Code: 0x00000004
    Trap Number:     14
    Binary Images:
           0x10e57d000 -        0x10ea4bff5  com.apple.finder (10.9.2 - 10.9.2) <44F7D842-1D12-392F-AFF7-FEEA9FD48D36> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
        0x7fff6d5cc000 -     0x7fff6d5ff817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8a0ff000 -     0x7fff8a0fffff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8a100000 -     0x7fff8a101ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a102000 -     0x7fff8a10afff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8a10b000 -     0x7fff8a1dcff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8a200000 -     0x7fff8a200ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8a201000 -     0x7fff8a22fff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8a230000 -     0x7fff8a247ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a248000 -     0x7fff8a261ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8a262000 -     0x7fff8a26cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8a26d000 -     0x7fff8a2a2ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8a2a3000 -     0x7fff8a2c8ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8a2c9000 -     0x7fff8a2ebfff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8a2ec000 -     0x7fff8a2f6ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a2f7000 -     0x7fff8a2f7fff  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
        0x7fff8a3cb000 -     0x7fff8a3cfff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff8a3d0000 -     0x7fff8a41bfff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8a41c000 -     0x7fff8af92fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8af93000 -     0x7fff8b267fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8b268000 -     0x7fff8b27ffff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff8b280000 -     0x7fff8b297ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8b298000 -     0x7fff8b369fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8b383000 -     0x7fff8b38dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b38e000 -     0x7fff8b38fff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b39b000 -     0x7fff8b537ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8b545000 -     0x7fff8b54bff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8b557000 -     0x7fff8b563fff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8b564000 -     0x7fff8b56aff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8b5ad000 -     0x7fff8b69eff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8b759000 -     0x7fff8b7abff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b7ac000 -     0x7fff8b7d0fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8b7d1000 -     0x7fff8b867ff7  com.apple.PackageKit (3.0 - 332) <70BE1C7F-0609-32D3-9FA3-3C2CCF7FE999> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff8b8d3000 -     0x7fff8b90fff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8b910000 -     0x7fff8b9fafff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8ba05000 -     0x7fff8ba16ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8bac3000 -     0x7fff8badbff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8bb90000 -     0x7fff8bbadff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8bbae000 -     0x7fff8bbf7fff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8bbf8000 -     0x7fff8bd1aff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8bd1b000 -     0x7fff8bd22fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8bd23000 -     0x7fff8bd4affb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8bd4b000 -     0x7fff8c2bbfff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8c838000 -     0x7fff8c83bfff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8c83e000 -     0x7fff8c850fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8c851000 -     0x7fff8c87eff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8c87f000 -     0x7fff8c882fff  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
        0x7fff8c883000 -     0x7fff8c920fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8c921000 -     0x7fff8c9b1fff  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
        0x7fff8c9b2000 -     0x7fff8c9ceff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c9cf000 -     0x7fff8c9d8fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8ca06000 -     0x7fff8ca08ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8ca09000 -     0x7fff8ca33ff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff8ca34000 -     0x7fff8ccbdfff  com.apple.CommerceKit (1.2.0 - 232.6) <9ED26CEE-45AA-3C0B-95F5-AD9D2ADA8898> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff8ccbe000 -     0x7fff8ccc1ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8ccc2000 -     0x7fff8cd04ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8cd05000 -     0x7fff8cd07ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8cd08000 -     0x7fff8cdcaff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8cdcd000 -     0x7fff8cf85ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8d150000 -     0x7fff8d16cfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8d16d000 -     0x7fff8d19cff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8d19d000 -     0x7fff8d28cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8d28d000 -     0x7fff8d28ffff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8d290000 -     0x7fff8d2a8ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d2a9000 -     0x7fff8d2c4ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8d2cf000 -     0x7fff8d2dfffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8d2e0000 -     0x7fff8d2f2ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8d2f3000 -     0x7fff8d34cfff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8d352000 -     0x7fff8d357ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8d358000 -     0x7fff8d39ffff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8d3a0000 -     0x7fff8d3a7ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8d3f4000 -     0x7fff8d48ffff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8d490000 -     0x7fff8d510fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d511000 -     0x7fff8d54cfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d54d000 -     0x7fff8d63bfff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8d63c000 -     0x7fff8d63fff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8d640000 -     0x7fff8d644ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8d645000 -     0x7fff8d64afff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8d696000 -     0x7fff8d709fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8d70a000 -     0x7fff8e558fff  com.apple.WebCore (9537 - 9537.74.11) <9683BA7C-A04B-3E33-B195-DCF1C2CABF95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8e559000 -     0x7fff8e55bfff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8e55c000 -     0x7fff8e567ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8e568000 -     0x7fff8e6bbff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8e6bc000 -     0x7fff8e717ffb  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
        0x7fff8e718000 -     0x7fff8e741ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8e742000 -     0x7fff8e743ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8e74d000 -     0x7fff8e8faf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8e8fb000 -     0x7fff8ea2afef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8ea2b000 -     0x7fff8ea33ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8ea48000 -     0x7fff8ecf2ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ecf3000 -     0x7fff8ed0eff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8ed0f000 -     0x7fff8ed18fff  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
        0x7fff8ed41000 -     0x7fff8ed72ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8ed73000 -     0x7fff8ed74ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8ed75000 -     0x7fff8ed83fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ed84000 -     0x7fff8ed86fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8ed87000 -     0x7fff8edeaff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8ee12000 -     0x7fff8ee2efff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8ee2f000 -     0x7fff8ee35fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8eedc000 -     0x7fff8ef2dfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8ef2e000 -     0x7fff8f18ffff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8f190000 -     0x7fff8f1d7ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff8f1d8000 -     0x7fff8f202ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8f203000 -     0x7fff8f5e4ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8f5e5000 -     0x7fff8f5eeffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8f5ef000 -     0x7fff8f5f3fff  com.apple.ServerInformation (2.0 - 1) <85F3EFCA-246B-30A1-8757-ECC97533D38D> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8f5f4000 -     0x7fff8f63afff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8f63b000 -     0x7fff8f63fff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8f640000 -     0x7fff8f647fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f652000 -     0x7fff8f691fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8f695000 -     0x7fff8f6e2fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f738000 -     0x7fff8f73bff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8f73c000 -     0x7fff8f74bff8  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
        0x7fff8f74c000 -     0x7fff8f759ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8f75a000 -     0x7fff8f93ffff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f940000 -     0x7fff8f9a6fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8f9a7000 -     0x7fff8f9e5ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8f9e6000 -     0x7fff8fa4afff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8fa72000 -     0x7fff8fa8dfff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff8fa8e000 -     0x7fff8fedcfff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8fedd000 -     0x7fff8ff4afff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff900d1000 -     0x7fff900d3fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff900d4000 -     0x7fff90160ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff90161000 -     0x7fff90165fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff90166000 -     0x7fff90166fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff90176000 -     0x7fff901c9fff  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
        0x7fff901ca000 -     0x7fff901dafff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff901db000 -     0x7fff90227ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff90228000 -     0x7fff90276fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90277000 -     0x7fff90277fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff902a2000 -     0x7fff9030cff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff90336000 -     0x7fff90606ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90673000 -     0x7fff90757fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff90758000 -     0x7fff90762ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff90763000 -     0x7fff907a4fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff907a5000 -     0x7fff907a6fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff907a7000 -     0x7fff907b0ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff907b7000 -     0x7fff90867ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff90868000 -     0x7fff90b52fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff90bbf000 -     0x7fff90bc7ff7  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
        0x7fff90bc8000 -     0x7fff90bd4ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff90bf3000 -     0x7fff90bfbffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90bfc000 -     0x7fff90ce3ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff90d1e000 -     0x7fff90d7efff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff90d96000 -     0x7fff90e1fff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff90e20000 -     0x7fff90e25fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90e26000 -     0x7fff90e27fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff90e28000 -     0x7fff90e2aff7  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
        0x7fff90e2b000 -     0x7fff90f61ff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff90f6b000 -     0x7fff90f7eff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff90f7f000 -     0x7fff91043ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff91046000 -     0x7fff9110ffff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91110000 -     0x7fff91111fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff91112000 -     0x7fff91141fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff91142000 -     0x7fff91166ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff911ad000 -     0x7fff911b2ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff913b1000 -     0x7fff91402ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff91403000 -     0x7fff91407fff  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
        0x7fff91408000 -     0x7fff9145afff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff9145b000 -     0x7fff91791fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff917a5000 -     0x7fff917f4ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff917f5000 -     0x7fff917f6ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff91847000 -     0x7fff91847ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9185a000 -     0x7fff9185bfff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff9185f000 -     0x7fff91af0ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff91af1000 -     0x7fff91af3fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff91e55000 -     0x7fff91e57fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff91e58000 -     0x7fff91e84ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff91e85000 -     0x7fff91fc6fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff92009000 -     0x7fff92060fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff92292000 -     0x7fff92293ff7  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
        0x7fff922ac000 -     0x7fff922b7fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
        0x7fff922e3000 -     0x7fff922f4fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff922f5000 -     0x7fff922fcff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff922fd000 -     0x7fff92308ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff92309000 -     0x7fff9273cffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff9273d000 -     0x7fff9281cfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff929ea000 -     0x7fff92a1efff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff932e3000 -     0x7fff932eaff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff9337e000 -     0x7fff935d7ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff935e5000 -     0x7fff935f1ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff935f2000 -     0x7fff93606fff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff93607000 -     0x7fff93620ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff938c3000 -     0x7fff938d9fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff938da000 -     0x7fff939a5fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff939a6000 -     0x7fff939a6ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff939a7000 -     0x7fff939a7fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff939a8000 -     0x7fff939d7ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff939d8000 -     0x7fff939daff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff939db000 -     0x7fff93a38fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff93a39000 -     0x7fff93b69ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff93b6a000 -     0x7fff93b99fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff942ea000 -     0x7fff94361fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9436d000 -     0x7fff94473ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff94474000 -     0x7fff944a4fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff944a5000 -     0x7fff9452ffff  com.apple.SoftwareUpdate.framework (6 - 574.2) <5F447EBB-E877-3A78-A9B3-F6A966990755> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff9467b000 -     0x7fff946e2ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff946e3000 -     0x7fff94714fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff94739000 -     0x7fff94746ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff94747000 -     0x7fff9478cffe  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
        0x7fff9478d000 -     0x7fff94b04ffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff94b05000 -     0x7fff95028fff  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
        0x7fff95029000 -     0x7fff95081ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff95082000 -     0x7fff95082fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff95083000 -     0x7fff95094ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff95095000 -     0x7fff950b9fff  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
        0x7fff950ba000 -     0x7fff950c7fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff95124000 -     0x7fff951affff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff951b0000 -     0x7fff951cbff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff951cc000 -     0x7fff9533aff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff9533b000 -     0x7fff953c3ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff953c4000 -     0x7fff9560afff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff9562d000 -     0x7fff95638fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff95639000 -     0x7fff9563cfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff95675000 -     0x7fff9567dfff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff9567e000 -     0x7fff9597cfff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9597d000 -     0x7fff9598ffff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff95990000 -     0x7fff959aafff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff959ab000 -     0x7fff959acff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff959cd000 -     0x7fff95a3cff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff95a3d000 -     0x7fff95a43fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <A5D1D494-2F84-3A97-A229-04DB308D4481> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff95a44000 -     0x7fff95bb4ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff95bcc000 -     0x7fff95bf5fff  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
        0x7fff95bf6000 -     0x7fff95caeff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff95d3c000 -     0x7fff95f84ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95f85000 -     0x7fff95f87ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff95f88000 -     0x7fff95f8afff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff961e9000 -     0x7fff96210ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff9625c000 -     0x7fff962a1fff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib
        0x7fff962a2000 -     0x7fff962a9ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff96332000 -     0x7fff96357ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff9656f000 -     0x7fff965bcff2  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
        0x7fff966e7000 -     0x7fff97006af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff970bc000 -     0x7fff970bcfff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff970c6000 -     0x7fff9712bff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9712c000 -     0x7fff9717afff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff977c3000 -     0x7fff97822fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff97823000 -     0x7fff9782dfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff9782e000 -     0x7fff97867ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff97882000 -     0x7fff97890fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff97891000 -     0x7fff97894fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff97895000 -     0x7fff97899ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff9789a000 -     0x7fff97923fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff97924000 -     0x7fff97942fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff9794f000 -     0x7fff97987ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff97988000 -     0x7fff979b0ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff979b8000 -     0x7fff979b8fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        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: 118
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=224.0M resident=111.6M(50%) swapped_out_or_unallocated=112.4M(50%)
    Writable regions: Total=41.9M written=1028K(2%) resident=1216K(3%) swapped_out=0K(0%) unallocated=40.8M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Kernel Alloc Once                     4K
    MALLOC                             31.6M
    MALLOC (admin)                       32K
    STACK GUARD                        56.0M
    Stack                              9828K
    Stack (reserved)                    520K        reserved VM address space (unallocated)
    VM_ALLOCATE                          32K
    __DATA                             29.8M
    __IMAGE                             528K
    __LINKEDIT                         65.8M
    __TEXT                            158.2M
    __UNICODE                           544K
    mapped file                        22.4M
    shared memory                         4K
    ===========                      =======
    TOTAL                             375.1M
    TOTAL, minus reserved VM space    374.6M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f41
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x31364A54463531323634485A2D3147364D31
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x31364A54463531323634485A2D3147364D31
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547575A9E384, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1
    I've searched for the similar problem being mentioned in other discussions but I couldn't find it.
    Could somebody help me to recover from this?
    Thank you very much in advance

    Hello vajrabairava,
    This may be the result of a damaged system component. I would recommend reinstalling Mavericks in order to replace any damaged components. This should not affect any data on the system, but I do strongly suggest ensuring that you have a good backup in place prior to reinstalling Mavericks.
    Mac Basics: Time Machine backs up your Mac
    http://support.apple.com/kb/HT1427
    OS X Mavericks: Reinstall OS X
    http://support.apple.com/kb/PH13871
    Cheers,
    Allen

  • Preview quit unexpectedly while using the ImageCaptureCore plug-in.

    Hi,
         I get the following error...
    Preview quit unexpectedly while using the ImageCaptureCore plug-in.
    when I try to open a file in Preview.  Same error occurs when I simply try to open Preview directly as well.  It was working fine yesterday and prior to that.  Haven't added any external devices or done any updates so I am not sure what happened.  I did however download a game about two days ago called F18 Carrier Landing....could this be the cause....Any idea how to fix this?  Thank you!
    Janine
    also here is the info that popped up with the error....
    Process:    
    Preview [627]
    Path:       
    /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: 
    com.apple.Preview
    Version:    
    7.0 (826.4)
    Build Info: 
    Preview-826004000000000~2
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [191]
    Responsible:
    Preview [627]
    User ID:    
    502
    PlugIn Path:  
    /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCor e
    PlugIn Identifier: com.apple.ImageCaptureCore
    PlugIn Version:
    5.0 (5.0)
    Date/Time:  
    2014-06-03 14:41:15.250 -0500
    OS Version: 
    Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  294A0DA2-6F38-AB35-0351-FA5F3D46DDE7
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff73a44dc8
    kernel messages:
    -0 sec      
    CODE SIGNING: cs_invalid_page(0x7fff73a44000): p=627[Preview] final status 0x1000200, denying page sending SIGKILL
    -0 sec      
    CODE SIGNING: process 627[Preview]: rejecting invalid page at address 0x7fff73a44000 from offset 0xef7b000 in file "/private/var/db/dyld/dyld_shared_cache_x86_64" (cs_mtime:1400869965.0 == mtime:1400869965.0) (signed:1 validated:1 tainted:1 wpmapped:0 slid:1)
    VM Regions Near 0x7fff73a44dc8:
    __DATA            
    00007fff73a2c000-00007fff73a2f000 [   12K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    --> __DATA            
    00007fff73a2f000-00007fff73a47000 [   96K] rw-/rwx SM=COW  /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    unused shlib __DATA
    00007fff73a47000-00007fff73a4e000 [   28K] rw-/rwx SM=COW  system shared lib __DATA not used by this process
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.ImageCaptureCore
    0x00007fff897e7aaa -[ICDeviceBrowser init] + 103
    1   com.apple.Preview        
    0x0000000103321d1d 0x10331e000 + 15645
    2   com.apple.Foundation     
    0x00007fff8ed78cb7 __NSFireDelayedPerform + 333
    3   com.apple.CoreFoundation 
    0x00007fff8bd9d494 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    4   com.apple.CoreFoundation 
    0x00007fff8bd9cfcf __CFRunLoopDoTimer + 1151
    5   com.apple.CoreFoundation 
    0x00007fff8be0e5aa __CFRunLoopDoTimers + 298
    6   com.apple.CoreFoundation 
    0x00007fff8bd58755 __CFRunLoopRun + 1525
    7   com.apple.CoreFoundation 
    0x00007fff8bd57f25 CFRunLoopRunSpecific + 309
    8   com.apple.HIToolbox      
    0x00007fff86897a0d RunCurrentEventLoopInMode + 226
    9   com.apple.HIToolbox      
    0x00007fff868977b7 ReceiveNextEventCommon + 479
    10  com.apple.HIToolbox      
    0x00007fff868975bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    11  com.apple.AppKit         
    0x00007fff841be26e _DPSNextEvent + 1434
    12  com.apple.AppKit         
    0x00007fff841bd8bb -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    13  com.apple.AppKit         
    0x00007fff841b19bc -[NSApplication run] + 553
    14  com.apple.AppKit         
    0x00007fff8419c7a3 NSApplicationMain + 940
    15  libdyld.dylib            
    0x00007fff8fd8b5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff85495662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff83c19421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff83c19136 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff85494e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff85ee9f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff85eecfb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff85490a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8548fd18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff8bd58fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff8bd585e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff8bd57f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit         
    0x00007fff8435e05e _NSEventThread + 144
    6   libsystem_pthread.dylib  
    0x00007fff85ee8899 _pthread_body + 138
    7   libsystem_pthread.dylib  
    0x00007fff85ee872a _pthread_start + 137
    8   libsystem_pthread.dylib  
    0x00007fff85eecfc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000608000273e00  rbx: 0x000060800001d6a0  rcx: 0x0000608000273b80  rdx: 0xfffffffffffffff0
      rdi: 0x0000608000273e00  rsi: 0x00007fff84bea774  rbp: 0x00007fff5c8df390  rsp: 0x00007fff5c8df350
       r8: 0x0000000000000040   r9: 0x00007fff5c8df300  r10: 0x0000000000000000  r11: 0x00007fff8de2b4bc
      r12: 0x00007fff73cebd00  r13: 0x00007fff8de13080  r14: 0x0000000000000000  r15: 0x0000608000262900
      rip: 0x00007fff897e7aaa  rfl: 0x0000000000010246  cr2: 0x00007fff73a44dc8
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x10331e000 -   
    0x103501fef  com.apple.Preview (7.0 - 826.4) <40BAB370-D0EA-399C-94E0-F67F8131AAC7> /Applications/Preview.app/Contents/MacOS/Preview
    0x1035b5000 -   
    0x1035e0fff  com.apple.MediaUI (1.1 - 27) <2482C4A0-6D72-3870-AEF1-31F6015F2719> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
    0x7fff6a481000 -
    0x7fff6a4b4817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
    0x7fff827c6000 -
    0x7fff82814ff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff82815000 -
    0x7fff8281cfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff82832000 -
    0x7fff82835fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff82ca2000 -
    0x7fff82d6bfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff82d6c000 -
    0x7fff82dc3fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff82dc4000 -
    0x7fff82e09ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff83311000 -
    0x7fff8334cfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8334d000 -
    0x7fff83371fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff83372000 -
    0x7fff8338dff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83392000 -
    0x7fff8339bffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8339c000 -
    0x7fff833b7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff833b8000 -
    0x7fff83413ffb  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
    0x7fff83489000 -
    0x7fff834b0ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff834b1000 -
    0x7fff83598ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff83599000 -
    0x7fff8359dfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff8359e000 -
    0x7fff8386effc  com.apple.CoreImage (9.2.8) <1509987F-5671-3AE3-91C7-18E952ED90C7> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff83945000 -
    0x7fff83947ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff83948000 -
    0x7fff839b7ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff83a43000 -
    0x7fff83accfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff83ae0000 -
    0x7fff83aebfff  libkxld.dylib (2422.100.13) <67D079F8-6C48-3F42-9FBE-26F1ADA03DC4> /usr/lib/system/libkxld.dylib
    0x7fff83aec000 -
    0x7fff83aeeff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83b4d000 -
    0x7fff83b5bfff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff83b70000 -
    0x7fff83bb7ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
    0x7fff83c16000 -
    0x7fff83c30fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    0x7fff83d06000 -
    0x7fff83d23ff7  com.apple.framework.Apple80211 (9.3.2 - 932.59) <DA61BF63-978E-342D-8F7F-83D0169A7F48> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff83d2f000 -
    0x7fff83d4bfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff83d83000 -
    0x7fff83d83ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff83d84000 -
    0x7fff83d89ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff83da9000 -
    0x7fff83eafff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff83eb0000 -
    0x7fff83eb0fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff83eb1000 -
    0x7fff83eb9ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff83f68000 -
    0x7fff84033fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84034000 -
    0x7fff840a1fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff840a2000 -
    0x7fff840aafff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x7fff8417c000 -
    0x7fff84194ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8419a000 -
    0x7fff84d10ff7  com.apple.AppKit (6.9 - 1265.20) <D2A7AF23-0FEA-3D7D-9CF5-B4E262224577> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff84d11000 -
    0x7fff84d63fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff84f05000 -
    0x7fff851d9fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff851da000 -
    0x7fff8530aff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff85472000 -
    0x7fff8547eff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8547f000 -
    0x7fff8549bff7  libsystem_kernel.dylib (2422.100.13) <498AEBD7-4194-3CF2-AA16-D5D03FFBD8C0> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8549c000 -
    0x7fff8549cfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8549d000 -
    0x7fff8549efff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff8549f000 -
    0x7fff856f9ffd  com.apple.security (7.0 - 55471.14.4) <1D5DA20E-DB48-3E1D-9BF5-BAA694192B25> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff85779000 -
    0x7fff8577aff7  libsystem_sandbox.dylib (278.11) <B46E4040-A8C6-3EBC-91F8-F1CB01106614> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff85a3c000 -
    0x7fff85a43ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff85c23000 -
    0x7fff85e84fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff85e90000 -
    0x7fff85ea7ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff85eb2000 -
    0x7fff85eb3ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff85eb4000 -
    0x7fff85eb4fff  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
    0x7fff85ee7000 -
    0x7fff85eeeff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff85eef000 -
    0x7fff85f55fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff85f56000 -
    0x7fff85f5cff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff85f90000 -
    0x7fff85f99fff  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
    0x7fff85f9a000 -
    0x7fff85fa3fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff85fa4000 -
    0x7fff85fb4fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff85fb5000 -
    0x7fff85fb7fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff85ff2000 -
    0x7fff860d6fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff860d7000 -
    0x7fff860fcff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8612f000 -
    0x7fff861bbff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff861bc000 -
    0x7fff86245ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff86246000 -
    0x7fff86368fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff86369000 -
    0x7fff863ccffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff863cd000 -
    0x7fff86431fff  com.apple.datadetectorscore (5.0 - 354.4) <37093186-6019-3071-8D67-F3EF429F8F08> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff864d0000 -
    0x7fff864d7fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff86528000 -
    0x7fff8653efff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff86580000 -
    0x7fff865bffff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff865d1000 -
    0x7fff865e9ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff865f3000 -
    0x7fff865f5fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff8661e000 -
    0x7fff86622ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
    0x7fff86623000 -
    0x7fff866b3ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff866f1000 -
    0x7fff866f4ffa  libCGXType.A.dylib (599.23.13) <E459DD26-592F-3DBD-8C47-B342ECE8FFD3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff866f5000 -
    0x7fff866fdffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8673a000 -
    0x7fff86829fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8682a000 -
    0x7fff86868ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff86869000 -
    0x7fff86b13ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff86d51000 -
    0x7fff86f09ffb  libicucore.A.dylib (511.32) <A7CE7DAD-D3AD-36A2-BE4F-25C5F21FADBB> /usr/lib/libicucore.A.dylib
    0x7fff87f8f000 -
    0x7fff883c2ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff883c6000 -
    0x7fff884f5fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x7fff88589000 -
    0x7fff885e1ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff885e2000 -
    0x7fff885e4fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff885e5000 -
    0x7fff88f04f43  com.apple.CoreGraphics (1.600.0 - 599.23.13) <3A1952C7-1D67-3DEC-A5AB-5399FF4F2A92> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff88f05000 -
    0x7fff88feffff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff89043000 -
    0x7fff8904efff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8904f000 -
    0x7fff89057ff3  libCGCMS.A.dylib (599.23.13) <59F7AEED-90EB-35C2-85A6-5BC44CC9B3FA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8926f000 -
    0x7fff89296ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff89297000 -
    0x7fff8930efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff89330000 -
    0x7fff893cbff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff897c2000 -
    0x7fff897c3ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff897d8000 -
    0x7fff897e5fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff897e6000 -
    0x7fff89831fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff8984a000 -
    0x7fff8984efff  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
    0x7fff8984f000 -
    0x7fff8987efd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff898d5000 -
    0x7fff89c4cff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <C3A7612F-34CC-3547-B01C-522D255B69ED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff89c4d000 -
    0x7fff89c75ffb  libRIP.A.dylib (599.23.13) <FFE421E6-CB15-3F9D-ADF4-679E26B09892> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff89c76000 -
    0x7fff89caeff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8a580000 -
    0x7fff8a5a9ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff8a5aa000 -
    0x7fff8a5b2fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8a5b3000 -
    0x7fff8aa01fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8aa02000 -
    0x7fff8aa0cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8aa0d000 -
    0x7fff8ad43fff  com.apple.MediaToolbox (1.0 - 1273.54) <E11683F7-BB60-37EB-98B6-BD519D93CB30> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8ad9a000 -
    0x7fff8ae8bff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff8ae9d000 -
    0x7fff8aea7fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8aea8000 -
    0x7fff8aea8fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8b649000 -
    0x7fff8ba2affe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8ba2b000 -
    0x7fff8ba38ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff8ba39000 -
    0x7fff8ba63ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff8ba64000 -
    0x7fff8ba66ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8ba67000 -
    0x7fff8ba6cff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8bb12000 -
    0x7fff8bb5bfff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8bb5c000 -
    0x7fff8bbe4ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8bbe5000 -
    0x7fff8bbf6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff8bbf7000 -
    0x7fff8bbf8ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8bbf9000 -
    0x7fff8bce7fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8bce8000 -
    0x7fff8becdfff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8bece000 -
    0x7fff8c03cff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8c03d000 -
    0x7fff8c090fff  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
    0x7fff8c091000 -
    0x7fff8c0dffff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff8c0e0000 -
    0x7fff8c0e1ff7  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
    0x7fff8c0e2000 -
    0x7fff8c0e2ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8c0e3000 -
    0x7fff8c10dff7  libsandbox.1.dylib (278.11) <BD3D8652-8871-36DB-A27D-3BE4F18428B4> /usr/lib/libsandbox.1.dylib
    0x7fff8c1de000 -
    0x7fff8c217ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8c218000 -
    0x7fff8c73bfff  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
    0x7fff8c73c000 -
    0x7fff8c984ff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8c985000 -
    0x7fff8c9b5fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff8c9b6000 -
    0x7fff8c9deffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff8caef000 -
    0x7fff8caf8ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff8caf9000 -
    0x7fff8cb00ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff8cb43000 -
    0x7fff8cb55ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8cb74000 -
    0x7fff8cbc1fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8cbc2000 -
    0x7fff8cbdbff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8cbdc000 -
    0x7fff8cbe6ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff8d104000 -
    0x7fff8d151ff2  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
    0x7fff8d152000 -
    0x7fff8d176ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8d177000 -
    0x7fff8d19cff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8d48b000 -
    0x7fff8d4baff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8d4bb000 -
    0x7fff8d51afff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <7F86A7C3-7B7D-3CD7-9758-CA74FB4DE2CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8d51b000 -
    0x7fff8d52eff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x7fff8d5c9000 -
    0x7fff8d622fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8d623000 -
    0x7fff8d6d3ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8d6d4000 -
    0x7fff8d6f8fff  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
    0x7fff8d6f9000 -
    0x7fff8d6fcfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8d6fd000 -
    0x7fff8d716ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8d7f2000 -
    0x7fff8d7f2fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8d7f3000 -
    0x7fff8d858ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8d898000 -
    0x7fff8d8c7fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8d8c8000 -
    0x7fff8d909fff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8d9f6000 -
    0x7fff8ddcdfef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8dde4000 -
    0x7fff8ddf0ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8ddf1000 -
    0x7fff8ddfbff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8ddfc000 -
    0x7fff8de09ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff8de0c000 -
    0x7fff8de0dfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8de0e000 -
    0x7fff8dfbbf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff8dfbc000 -
    0x7fff8dfcbff8  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
    0x7fff8e273000 -
    0x7fff8e3c7ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8e3c8000 -
    0x7fff8e3dfffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff8e3e0000 -
    0x7fff8e3e5fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8e3e6000 -
    0x7fff8e3eeff7  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
    0x7fff8e3ef000 -
    0x7fff8e462fff  com.apple.securityfoundation (6.0 - 55122.1) <D5AA4461-7406-3054-875D-0EDA3A6030EA> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8e463000 -
    0x7fff8e4a5ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8e4a6000 -
    0x7fff8e577fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8e80b000 -
    0x7fff8e8cdff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8e904000 -
    0x7fff8e907fff  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
    0x7fff8e90b000 -
    0x7fff8e90efff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8e90f000 -
    0x7fff8ebf9fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8ec93000 -
    0x7fff8ed14fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8ed15000 -
    0x7fff8f013fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8f014000 -
    0x7fff8f03dfff  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
    0x7fff8f040000 -
    0x7fff8f051ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff8f065000 -
    0x7fff8f070ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f071000 -
    0x7fff8f077ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8f078000 -
    0x7fff8f08afff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8f08b000 -
    0x7fff8f090fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff8f091000 -
    0x7fff8f094ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8f095000 -
    0x7fff8f099ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8f0cc000 -
    0x7fff8f190ff7  com.apple.backup.framework (1.5.3 - 1.5.3) <088FEDED-BF5C-33F4-A51A-646C8149BDAA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8f1b3000 -
    0x7fff8f204fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8f205000 -
    0x7fff8f251ffe  com.apple.CoreMediaIO (407.0 - 4561) <040A98E4-F480-315B-BCEE-C18AF686492C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8f252000 -
    0x7fff8f25fff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff8f295000 -
    0x7fff8f296ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
    0x7fff8f452000 -
    0x7fff8f456ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
    0x7fff8f457000 -
    0x7fff8f458fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8f459000 -
    0x7fff8f4c0ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff8f4c1000 -
    0x7fff8f52dfff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8f689000 -
    0x7fff8f689ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8f68a000 -
    0x7fff8f68cfff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff8f6a4000 -
    0x7fff8f6f5ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8f71c000 -
    0x7fff8f9affff  com.apple.RawCamera.bundle (5.05 - 743) <ACFD986B-59D0-313C-941A-5F239CDF9AA7> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8f9ef000 -
    0x7fff8fd87fff  com.apple.SceneKit (4.0 - 197.1) <D864946D-B843-3B7A-8C81-B682B06CF7FD> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit

    Check Login Items in System Preferences > Users & Groups.
    If you see anything from the game listed, remove.
    Log out/in and test.
    If you still have the problem, log into your Guest User or create a test User in System Preferences and see if the problem goes away.
    Do you still see the issue?
        If yes, then the problem is with your base files. **run combo
        If no, then the problem is in your User's folder.
    OS X Mavericks 10.9.3 (Update (Combo)
    http://support.apple.com/kb/DL1746

  • Safari quit unexpectedly while using the RainbowSixv plugin

    Today I did my software updates and then shortly after I received this notification 'safari quit unexpectedly while using the RainbowSix.png plugin'. I am unable to find this plug in in applications or Internet plug ins.
    Any advice on how to fix this issue....I'm not very tech savvy when it comes to my MacBook pro (Mac OS 10.6.8)
    Very annoying as I can't use my laptop....thank god I've borrowed my boyfriends iPad!
    Thanks in advance

    ThanksCarolyn.  I've fixed it by uninstalling the new version of Safari and using the old one from my back ups and everything works again....yay!
    Here is my crash report:
    Process:         Safari [342]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.5 (6534.55.3)
    Build Info:      WebBrowser-75345503~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [89]
    PlugIn Path:       /Applications/Safari.app/Contents/Resources/.RainbowSixv.png
    PlugIn Identifier: .RainbowSixv.png
    PlugIn Version:    ??? (???)
    Date/Time:       2012-03-27 23:48:15.993 +1100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXC_I386_DIV (divide by zero)
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   .RainbowSixv.png                        0x000000010007cc29 0x10007a000 + 11305
    1   dyld                                    0x00007fff5fc0d510 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 228
    2   dyld                                    0x00007fff5fc0bcfc ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 236
    3   dyld                                    0x00007fff5fc0bdb6 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 58
    4   dyld                                    0x00007fff5fc08fcf dlopen + 573
    5   libSystem.B.dylib                       0x00007fff88d1fe40 dlopen + 61
    6   .RainbowSixv.xsl                        0x0000000100004bcc entry + 412
    7   dyld                                    0x00007fff5fc0d510 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 228
    8   dyld                                    0x00007fff5fc0bcfc ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 236
    9   dyld                                    0x00007fff5fc0bdb6 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 58
    10  dyld                                    0x00007fff5fc020fb dyld::initializeMainExecutable() + 102
    11  dyld                                    0x00007fff5fc06996 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**) + 2993
    12  dyld                                    0x00007fff5fc016de dyldbootstrap::start(macho_header const*, int, char const**, long) + 811
    13  dyld                                    0x00007fff5fc01052 _dyld_start + 42
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000059688741  rbx: 0x0000000000000000  rcx: 0x0000000059688741  rdx: 0x0000000000000000
      rdi: 0x00007fff70f5e6c0  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfd500  rsp: 0x00007fff5fbfd3c0
       r8: 0x0000000000000000   r9: 0x0000000100118b20  r10: 0x00007fff8aa7a5ac  r11: 0x00007fff8077b8ec
      r12: 0x00007fff5fbfd4a0  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fff5fbfd3d0
      rip: 0x000000010007cc29  rfl: 0x0000000000010247  cr2: 0x00007fff70f6e060
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.5 (6534.55.3) <83F4C1DA-5D7C-E101-6BD6-808168C4C812> /Applications/Safari.app/Contents/MacOS/Safari
           0x100004000 -        0x100004fff +.RainbowSixv.xsl ??? (???) <C5C8E257-608E-091E-359F-71200A436282> /Applications/Safari.app/Contents/Resources/.RainbowSixv.xsl
           0x10007a000 -        0x1000a1fff +.RainbowSixv.png ??? (???) <321B8545-39FC-4FEA-B2A4-2EAA3732F4A9> /Applications/Safari.app/Contents/Resources/.RainbowSixv.png
           0x100200000 -        0x1002e6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800b3fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff800b4000 -     0x7fff800c0fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff8013b000 -     0x7fff801c0ff7  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
        0x7fff801c1000 -     0x7fff801c3fff  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
        0x7fff80279000 -     0x7fff802e3fe7  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
        0x7fff802f9000 -     0x7fff8062dfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8062e000 -     0x7fff80745fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff8074b000 -     0x7fff807c8fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff807ce000 -     0x7fff807d1fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff809b7000 -     0x7fff80a00ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff80a01000 -     0x7fff80a01ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff80a02000 -     0x7fff81a6bfe7  com.apple.WebCore 6534.55 (6534.55.3) <FFFFDC58-5DAD-106B-0EC2-C23B22F2D40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff81aa0000 -     0x7fff81b62fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff81c90000 -     0x7fff81cdfff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff81ce0000 -     0x7fff81d35ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff81d36000 -     0x7fff81e0afe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff81e0b000 -     0x7fff81e1ffff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81e20000 -     0x7fff81e43fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81ea7000 -     0x7fff821c9fef  com.apple.JavaScriptCore 6534.55 (6534.55.2) <F360FF8A-97DE-327E-A366-EDE97321E795> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff821ca000 -     0x7fff822affef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff822e0000 -     0x7fff82301fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff82559000 -     0x7fff82713ff7  com.apple.WebKit2 6534.55 (6534.55.3) <44B0FCCC-7303-FDDE-18D5-14D9FA744C50> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff82714000 -     0x7fff82728ff7  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
        0x7fff82729000 -     0x7fff82775fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff82776000 -     0x7fff82781fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff827c1000 -     0x7fff827c7ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff827c8000 -     0x7fff82969fe7  com.apple.WebKit 6534.55 (6534.55.3) <FF06897C-26D5-A526-1131-70D5A1D54CCB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8296a000 -     0x7fff82981fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff82982000 -     0x7fff829feff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff829ff000 -     0x7fff82a1aff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff82a4c000 -     0x7fff82a9fff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff82aa0000 -     0x7fff8319cff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8326a000 -     0x7fff83271fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83272000 -     0x7fff83292ff7  com.apple.DirectoryService.Framework 3.6 (621.12) <A4685F06-5881-35F5-764D-C380304C1CE8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff832c3000 -     0x7fff83341ff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff83342000 -     0x7fff83358fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff833a3000 -     0x7fff833b1ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff833b2000 -     0x7fff8344cfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff834cc000 -     0x7fff834cdff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff834ce000 -     0x7fff834d3fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff834ec000 -     0x7fff835a5fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff835a6000 -     0x7fff835b5fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff835b6000 -     0x7fff835b6ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff83ab9000 -     0x7fff83adeff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83b62000 -     0x7fff83b93fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83b94000 -     0x7fff83badfff  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
        0x7fff83c5e000 -     0x7fff83c5ffff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83c60000 -     0x7fff83c9afff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff83ccb000 -     0x7fff83f4dfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff83f83000 -     0x7fff84320fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff84841000 -     0x7fff848cdfef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84922000 -     0x7fff84a41fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84a42000 -     0x7fff84a42ff7  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
        0x7fff84a43000 -     0x7fff8524dfe7  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
        0x7fff8524e000 -     0x7fff85352ff7  com.apple.PubSub 1.0.5 (65.28) <94FBE6EB-6554-1E5B-DE22-D027222AD6B8> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff85446000 -     0x7fff85604fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff85605000 -     0x7fff8573afff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8573b000 -     0x7fff8577cfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8577d000 -     0x7fff857c6fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff857d5000 -     0x7fff857e0fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8587b000 -     0x7fff858bcfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff858bd000 -     0x7fff85bbbfff  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
        0x7fff86094000 -     0x7fff86171fff  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
        0x7fff86172000 -     0x7fff86181fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff86283000 -     0x7fff862a0ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff862a1000 -     0x7fff86341fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff86342000 -     0x7fff86347ff7  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
        0x7fff864fc000 -     0x7fff86616fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8678a000 -     0x7fff86799fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8679a000 -     0x7fff867a0ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff867a1000 -     0x7fff867a1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff867a2000 -     0x7fff867ecff7  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
        0x7fff86b14000 -     0x7fff86b57fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff86b58000 -     0x7fff86b80fff  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
        0x7fff87316000 -     0x7fff87341ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff873d0000 -     0x7fff873d1ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff873d2000 -     0x7fff87815fef  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
        0x7fff87816000 -     0x7fff87818fff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87c7e000 -     0x7fff87d34ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff87d8f000 -     0x7fff87e0efe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87e0f000 -     0x7fff87f4dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87f4e000 -     0x7fff87f84ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8818c000 -     0x7fff88190ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff88191000 -     0x7fff881b8ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff881fc000 -     0x7fff882b9fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff882ba000 -     0x7fff882cbfff  SyndicationUI ??? (???) <2345AF3F-75EB-79A7-9665-A154F6943B59> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff882cc000 -     0x7fff882e1ff7  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
        0x7fff8832e000 -     0x7fff883e3fe7  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
        0x7fff8841c000 -     0x7fff8841cff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8841e000 -     0x7fff8842fff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff884e8000 -     0x7fff88d18fff  com.apple.Safari.framework 6534 (6534.55.3) <1A32D063-6CA1-E1B7-735C-E8F4DA4F3C0F> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff88d19000 -     0x7fff88edafef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff88edb000 -     0x7fff89099ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff890f4000 -     0x7fff890f7ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89189000 -     0x7fff89b83ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff89b90000 -     0x7fff89bd7ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff89c16000 -     0x7fff89c28fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff89c3b000 -     0x7fff89c3bff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff89d06000 -     0x7fff89d55fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff89d56000 -     0x7fff89db6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff89e38000 -     0x7fff89e3bff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff89e3c000 -     0x7fff89e79ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff89e80000 -     0x7fff89ec8ff7  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
        0x7fff89ec9000 -     0x7fff89f8afef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8a1f1000 -     0x7fff8a47bfe7  com.apple.security 6.1.2 (55002) <FD0B5AD4-74DB-7ED8-90D3-6EC56FFA8557> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a47c000 -     0x7fff8a481fff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8a482000 -     0x7fff8a4bdfff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a4c5000 -     0x7fff8a4cbff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8a53e000 -     0x7fff8a554fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8a555000 -     0x7fff8a555ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a556000 -     0x7fff8a561ff7  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
        0x7fff8a562000 -     0x7fff8a6d9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a7b3000 -     0x7fff8a843fff  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
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

  • Safari quit unexpectedly while using the CosmoPod plugin

    I've treid updating and installed the latest version. But still couldn't open Safari browser. Someone pls help.....
    This is the message that appeared..... Apparently it says: "Safari quit unexpectedly while using the CosmoPod plugin."
    Process:         Safari [613]
    Path:            /Users/kelvinwys/Desktop/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1 (6534.50)
    Build Info:      WebBrowser-75345000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [90]
    PlugIn Path:       /Library/Application Support/SIMBL/Plugins/CosmoPod.bundle/Contents/MacOS/CosmoPod
    PlugIn Identifier: com.cocoamug.CosmoPod
    PlugIn Version:    ??? (4.5.1)
    Date/Time:       2011-08-09 17:42:41.673 +0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          16286 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  15781 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      D7DDE776-1A78-4547-AF35-7007233C0201
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[BrowserDocument browserWindowController]: unrecognized selector sent to instance 0x1001c6230'
    *** Call stack at first throw:
        0   CoreFoundation                      0x00007fff868377b4 __exceptionPreprocess + 180
        1   libobjc.A.dylib                     0x00007fff80a78f03 objc_exception_throw + 45
        2   CoreFoundation                      0x00007fff86891110 +[NSObject(NSObject) doesNotRecognizeSelector:] + 0
        3   CoreFoundation                      0x00007fff8680991f ___forwarding___ + 751
        4   CoreFoundation                      0x00007fff86805a68 _CF_forwarding_prep_0 + 232
        5   CosmoPod                            0x0000000114e604fd -[CPToolbar cp_validate] + 829
        6   CosmoPod                            0x0000000114e60d57 -[CPToolbar cp_toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:] + 1114
        7   AppKit                              0x00007fff87bbb79b -[NSToolbar _newItemFromDelegateWithItemIdentifier:propertyListRepresentation:willBeInserte dIntoToolbar:] + 150
        8   AppKit                              0x00007fff87bb9943 -[NSToolbar _newItemFromItemIdentifier:propertyListRepresentation:requireImmediateLoad:will BeInsertedIntoToolbar:] + 273
        9   AppKit                              0x00007fff87bb97c0 -[NSToolbar _insertNewItemWithItemIdentifier:atIndex:propertyListRepresentation:notifyFlags :] + 57
        10  CosmoPod                            0x0000000114e394b7 -[CPManager installToolbar] + 584
        11  CosmoPod                            0x0000000114e39194 -[CPManager init] + 1449
        12  CosmoPod                            0x0000000114e39734 +[CPManager sharedController] + 71
        13  libobjc.A.dylib                     0x00007fff80a72ff1 call_load_methods + 162
        14  libobjc.A.dylib                     0x00007fff80a72d31 load_images + 220
        15  ???                                 0x00007fff5fc0315a 0x0 + 140734799819098
        16  ???                                 0x00007fff5fc0bcdd 0x0 + 140734799854813
        17  ???                                 0x00007fff5fc0bda6 0x0 + 140734799855014
        18  ???                                 0x00007fff5fc08fbb 0x0 + 140734799843259
        19  libSystem.B.dylib                   0x00007fff8700ae40 dlopen + 61
        20  CoreFoundation                      0x00007fff867d0f27 _CFBundleDlfcnLoadBundle + 231
        21  CoreFoundation                      0x00007fff867cfec7 _CFBundleLoadExecutableAndReturnError + 1191
        22  Foundation                          0x00007fff8505a445 _NSBundleLoadCode + 638
        23  Foundation                          0x00007fff85059d68 -[NSBundle loadAndReturnError:] + 742
        24  Foundation                          0x00007fff8506b6fc -[NSBundle principalClass] + 38
        25  SIMBL                               0x0000000114e1483b +[SIMBL loadBundle:] + 99
        26  SIMBL                               0x0000000114e14746 +[SIMBL installPlugins] + 426
        27  SIMBL                               0x0000000114e1356f InjectEventHandler + 96
        28  OpenScripting                       0x00007fff8261ca2e _ZL17EventHandlerThunkPK6AEDescPS_Pv + 149
        29  AE                                  0x00007fff89c3c32b _Z20aeDispatchAppleEventPK6AEDescPS_jPh + 162
        30  AE                                  0x00007fff89c3c224 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 32
        31  AE                                  0x00007fff89c3c12b aeProcessAppleEvent + 210
        32  HIToolbox                           0x00007fff84c33619 AEProcessAppleEvent + 48
        33  AppKit                              0x00007fff87b6f095 _DPSNextEvent + 1191
        34  AppKit                              0x00007fff87b6e801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
        35  Safari                              0x00007fff802a5452 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
        36  AppKit                              0x00007fff87b3468f -[NSApplication run] + 395
        37  AppKit                              0x00007fff87b2d3b0 NSApplicationMain + 364
        38  Safari                              0x00007fff8045ff62 SafariMain + 200
        39  Safari                              0x0000000100000f1c 0x0 + 4294971164
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff870530b6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff870f39f6 abort + 83
    2   libstdc++.6.dylib                 0x00007fff860655d2 __tcf_0 + 0
    3   libobjc.A.dylib                   0x00007fff80a7cb39 _objc_terminate + 100
    4   libstdc++.6.dylib                 0x00007fff86063ae1 __cxxabiv1::__terminate(void (*)()) + 11
    5   libstdc++.6.dylib                 0x00007fff86063b16 __cxxabiv1::__unexpected(void (*)()) + 0
    6   libstdc++.6.dylib                 0x00007fff86063bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    7   libobjc.A.dylib                   0x00007fff80a78fa2 object_getIvar + 0
    8   com.apple.CoreFoundation          0x00007fff86891110 +[NSObject(NSObject) doesNotRecognizeSelector:] + 0
    9   com.apple.CoreFoundation          0x00007fff8680991f ___forwarding___ + 751
    10  com.apple.CoreFoundation          0x00007fff86805a68 _CF_forwarding_prep_0 + 232
    11  com.cocoamug.CosmoPod             0x0000000114e604fd -[CPToolbar cp_validate] + 829
    12  com.cocoamug.CosmoPod             0x0000000114e60d57 -[CPToolbar cp_toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:] + 1114
    13  com.apple.AppKit                  0x00007fff87bbb79b -[NSToolbar _newItemFromDelegateWithItemIdentifier:propertyListRepresentation:willBeInserte dIntoToolbar:] + 150
    14  com.apple.AppKit                  0x00007fff87bb9943 -[NSToolbar _newItemFromItemIdentifier:propertyListRepresentation:requireImmediateLoad:will BeInsertedIntoToolbar:] + 273
    15  com.apple.AppKit                  0x00007fff87bb97c0 -[NSToolbar _insertNewItemWithItemIdentifier:atIndex:propertyListRepresentation:notifyFlags :] + 57
    16  com.cocoamug.CosmoPod             0x0000000114e394b7 -[CPManager installToolbar] + 584
    17  com.cocoamug.CosmoPod             0x0000000114e39194 -[CPManager init] + 1449
    18  com.cocoamug.CosmoPod             0x0000000114e39734 +[CPManager sharedController] + 71
    19  libobjc.A.dylib                   0x00007fff80a72ff1 call_load_methods + 162
    20  libobjc.A.dylib                   0x00007fff80a72d31 load_images + 220
    21  dyld                              0x00007fff5fc0315a dyld::notifySingle(dyld_image_states, ImageLoader const*) + 344
    22  dyld                              0x00007fff5fc0bcdd ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 221
    23  dyld                              0x00007fff5fc0bda6 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 58
    24  dyld                              0x00007fff5fc08fbb dlopen + 573
    25  libSystem.B.dylib                 0x00007fff8700ae40 dlopen + 61
    26  com.apple.CoreFoundation          0x00007fff867d0f27 _CFBundleDlfcnLoadBundle + 231
    27  com.apple.CoreFoundation          0x00007fff867cfec7 _CFBundleLoadExecutableAndReturnError + 1191
    28  com.apple.Foundation              0x00007fff8505a445 _NSBundleLoadCode + 638
    29  com.apple.Foundation              0x00007fff85059d68 -[NSBundle loadAndReturnError:] + 742
    30  com.apple.Foundation              0x00007fff8506b6fc -[NSBundle principalClass] + 38
    31  net.culater.SIMBL.osax            0x0000000114e1483b +[SIMBL loadBundle:] + 99
    32  net.culater.SIMBL.osax            0x0000000114e14746 +[SIMBL installPlugins] + 426
    33  net.culater.SIMBL.osax            0x0000000114e1356f InjectEventHandler + 96
    34  com.apple.openscripting           0x00007fff8261ca2e EventHandlerThunk(AEDesc const*, AEDesc*, void*) + 149
    35  com.apple.AE                      0x00007fff89c3c32b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    36  com.apple.AE                      0x00007fff89c3c224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    37  com.apple.AE                      0x00007fff89c3c12b aeProcessAppleEvent + 210
    38  com.apple.HIToolbox               0x00007fff84c33619 AEProcessAppleEvent + 48
    39  com.apple.AppKit                  0x00007fff87b6f095 _DPSNextEvent + 1191
    40  com.apple.AppKit                  0x00007fff87b6e801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    41  com.apple.Safari.framework        0x00007fff802a5452 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    42  com.apple.AppKit                  0x00007fff87b3468f -[NSApplication run] + 395
    43  com.apple.AppKit                  0x00007fff87b2d3b0 NSApplicationMain + 364
    44  com.apple.Safari.framework        0x00007fff8045ff62 SafariMain + 200
    45  com.apple.Safari                  0x0000000100000f1c 0x100000000 + 3868
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff8701dc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff8701fadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff8701f7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff8701f2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff8701ec08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff8701eaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff8701ea2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff8701ee3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8701eaa5 start_wqthread + 13
    Thread 3:  WebCore: IconDatabase
    0   libSystem.B.dylib                 0x00007fff8703fa6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87043881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                 0x00007fff82f28749 WebCore::IconDatabase::syncThreadMainLoop() + 265
    3   com.apple.WebCore                 0x00007fff82f25c88 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.QuartzCore              0x00007fff86ab4396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore              0x00007fff86ab42d6 thread_fun + 34
    4   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff8701ea2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff8701ee3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8701eaa5 start_wqthread + 13
    Thread 6:  Safari: SpinningProgressIndicator
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation              0x00007fff8505bc64 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation              0x00007fff8505bb43 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.Safari.framework        0x00007fff80498abc -[Heartbeat _startHeartbeatRunLoop] + 244
    7   com.apple.Foundation              0x00007fff85021204 __NSThread__main__ + 1429
    8   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 7:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                 0x00007fff87046aea pread + 10
    1   libsqlite3.dylib                  0x00007fff8a4bf09c unixRead + 44
    2   libsqlite3.dylib                  0x00007fff8a4c2ec0 sqlite3PagerAcquire + 1312
    3   libsqlite3.dylib                  0x00007fff8a4d722c checkTreePage + 252
    4   libsqlite3.dylib                  0x00007fff8a4d7321 checkTreePage + 497
    5   libsqlite3.dylib                  0x00007fff8a4d7321 checkTreePage + 497
    6   libsqlite3.dylib                  0x00007fff8a535eed sqlite3VdbeExec + 31725
    7   libsqlite3.dylib                  0x00007fff8a539798 sqlite3_step + 1384
    8   com.apple.Safari.framework        0x00007fff8049d006 Safari::SQLiteStatement::step() + 28
    9   com.apple.Safari.framework        0x00007fff8046df15 Safari::SafeBrowsingStore::checkIntegrity() + 51
    10  com.apple.Safari.framework        0x00007fff8046e32e Safari::SafeBrowsingStore::initDatabase() + 104
    11  com.apple.Safari.framework        0x00007fff8046e3d8 Safari::SafeBrowsingStore::getListID(Safari::SString const&, int&) + 38
    12  com.apple.Safari.framework        0x00007fff8046e471 Safari::SafeBrowsingStore::addList(Safari::SString const&) + 35
    13  com.apple.Safari.framework        0x00007fff8046647b Safari::SafeBrowsingListManager::SafeBrowsingListManager(Safari::SafeBrowsingSe rvice&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 433
    14  com.apple.Safari.framework        0x00007fff80466882 Safari::SafeBrowsingListManager::create(Safari::SafeBrowsingService&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 78
    15  com.apple.Safari.framework        0x00007fff8046c71f Safari::SafeBrowsingService::didReceiveListNames(***::Vector<Safari::SString, 0ul> const&) + 35
    16  com.apple.Safari.framework        0x00007fff803dfcb6 Safari::GoogleSafeBrowsingService::initialize() + 294
    17  com.apple.Safari.framework        0x00007fff8046801a Safari::SafeBrowsingManager::addGoogleSafeBrowsingService() + 122
    18  com.apple.Safari.framework        0x00007fff80468206 Safari::SafeBrowsingManager::handleMessage(Safari::SafeBrowsingManager::SafeBro wsingMessage*) + 214
    19  com.apple.Safari.framework        0x00007fff80418e07 Safari::MessageRunLoop::dispatchMessage() + 49
    20  com.apple.CoreFoundation          0x00007fff867d4401 __CFRunLoopDoSources0 + 1361
    21  com.apple.CoreFoundation          0x00007fff867d25f9 __CFRunLoopRun + 873
    22  com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    23  com.apple.Safari.framework        0x00007fff80418d39 Safari::MessageRunLoop::threadBody() + 107
    24  com.apple.Safari.framework        0x00007fff80418d73 Safari::MessageRunLoop::threadCallback(void*) + 9
    25  libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    26  libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 8:  QTKit: listenOnDelegatePort
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation          0x00007fff867d1b46 CFRunLoopRun + 70
    5   com.apple.QTKit                   0x00007fff80c29d20 listenOnDelegatePort + 425
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 9:  QTKit: listenOnNotificationPort
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation          0x00007fff867d1b46 CFRunLoopRun + 70
    5   com.apple.QTKit                   0x00007fff80c28f38 listenOnNotificationPort + 383
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 10:  QTKit: QTCALayerRendererPendingQWorkLoop
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation          0x00007fff867d1b46 CFRunLoopRun + 70
    5   com.apple.QTKit                   0x00007fff80b5c428 QTCALayerRendererPendingQWorkLoop + 546
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 11:  QTKit: QTMachPortImageProviderWorkLoop
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation          0x00007fff867d1b46 CFRunLoopRun + 70
    5   com.apple.QTKit                   0x00007fff80c2b4bc QTMachPortImageProviderWorkLoop + 364
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 12:  QTKit: QTClassicMovieControllerViewNeedsDisplayWorkLoop
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation          0x00007fff867d1b46 CFRunLoopRun + 70
    5   com.apple.QTKit                   0x00007fff80bb533e QTClassicMovieControllerViewNeedsDisplayWorkLoop + 313
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff867d2932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    4   com.apple.CFNetwork               0x00007fff89bb7923 CFURLConnectionSendSynchronousRequest + 439
    5   com.apple.Foundation              0x00007fff85177c2d +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 132
    6   com.apple.Foundation              0x00007fff8504b7ca -[NSData(NSData) initWithContentsOfURL:] + 183
    7   com.apple.Foundation              0x00007fff8504f9ab +[NSArray(NSArray) newWithContentsOf:immutable:] + 128
    8   com.cocoamug.CosmoPod             0x0000000114e39883 -[CP_PreferencesController loadAndSynchronize] + 143
    9   com.apple.Foundation              0x00007fff85021204 __NSThread__main__ + 1429
    10  libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    11  libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff87004dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff8700a40d pthread_mutex_lock + 469
    2   com.apple.Foundation              0x00007fff85013691 -[NSRecursiveLock lock] + 25
    3   com.apple.Foundation              0x00007fff85019130 +[NSBundle bundleForClass:] + 89
    4   com.cocoamug.CosmoPod             0x0000000114e3c0b2 -[CP_PreferencesController lastestVersion] + 189
    5   com.apple.Foundation              0x00007fff85021204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff87004d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff870053ed mach_msg + 59
    2   libSystem.B.dylib                 0x00007fff87010dfd _notify_server_register_check + 150
    3   libSystem.B.dylib                 0x00007fff87010c77 notify_register_check + 295
    4   libSystem.B.dylib                 0x00007fff8701d37a pthread_once + 95
    5   com.apple.CFNetwork               0x00007fff89b78d91 _CFNetworkCopySystemProxySettings + 28
    6   com.apple.CFNetwork               0x00007fff89b78b8d HTTPProtocol::startLoad() + 385
    7   com.apple.CFNetwork               0x00007fff89b7875c URLConnectionLoader::loaderScheduleOriginLoad(_CFURLRequest const*) + 304
    8   com.apple.CFNetwork               0x00007fff89bf008e URLConnectionLoader::LoaderConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XLoaderEvent, XLoaderEventParams>*, long) + 248
    9   com.apple.CFNetwork               0x00007fff89b785fb URLConnectionLoader::processEvents() + 99
    10  com.apple.CFNetwork               0x00007fff89b754b2 MultiplexerSource::perform() + 160
    11  com.apple.CoreFoundation          0x00007fff867d4401 __CFRunLoopDoSources0 + 1361
    12  com.apple.CoreFoundation          0x00007fff867d25f9 __CFRunLoopRun + 873
    13  com.apple.CoreFoundation          0x00007fff867d1dbf CFRunLoopRunSpecific + 575
    14  com.apple.Foundation              0x00007fff850a023f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    15  com.apple.Foundation              0x00007fff85021204 __NSThread__main__ + 1429
    16  libSystem.B.dylib                 0x00007fff8703dfd6 _pthread_start + 331
    17  libSystem.B.dylib                 0x00007fff8703de89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff70cf02f8  rcx: 0x00007fff5fbfe128  rdx: 0x0000000000000000
      rdi: 0x0000000000000265  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfe140  rsp: 0x00007fff5fbfe128
       r8: 0x00007fff70cf3a60   r9: 0x0000000000000063  r10: 0x00007fff8704f0fa  r11: 0x0000000000000206
      r12: 0x00007fff868bcb09  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00000001001c6230
      rip: 0x00007fff870530b6  rfl: 0x0000000000000206  cr2: 0x00007fff709d1fd0
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1 (6534.50) <1F791A92-0E1B-FA63-8447-AD69C689F0D3> /Users/kelvinwys/Desktop/Safari.app/Contents/MacOS/Safari
           0x114e12000 -        0x114e15fff +net.culater.SIMBL.osax 0.9.7 (0.9.7) <9ADEE334-3BF3-DE9C-868A-D9C3B80DC2CB> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
           0x114e1a000 -        0x114e7cfe7 +com.cocoamug.CosmoPod ??? (4.5.1) <EF96AA2F-284E-117C-E42A-AF1E1F8EF67A> /Library/Application Support/SIMBL/Plugins/CosmoPod.bundle/Contents/MacOS/CosmoPod
           0x114eb7000 -        0x114f9dfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x114ff5000 -        0x115001ff7 +com.growl.growlframework 1.2.1 (1.2.1) <40462CEC-EE57-4FAD-A138-221D365DC5E4> /Library/Application Support/SIMBL/Plugins/CosmoPod.bundle/Contents/Frameworks/Growl.framework/Versi ons/A/Growl
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80034000 -     0x7fff80046fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80047000 -     0x7fff80205ff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <0A4F51A1-4502-767B-8A4E-F14C6214EF88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff80206000 -     0x7fff8020cff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff80245000 -     0x7fff80a6efef  com.apple.Safari.framework 6534 (6534.50) <5E989098-BEA0-9DF9-EDFA-CF05BDDEB895> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff80a6f000 -     0x7fff80b25ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff80b26000 -     0x7fff80b4dff7  libJPEG.dylib ??? (???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff80b4e000 -     0x7fff80cbefff  com.apple.QTKit 7.7 (1783) <DE8DB97C-C058-B40C-492B-D652A30CF571> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff80cbf000 -     0x7fff80cdfff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80ce0000 -     0x7fff80cecfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff80ced000 -     0x7fff80dcafff  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
        0x7fff80dcb000 -     0x7fff80e57fef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff80e58000 -     0x7fff80ed7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80ed8000 -     0x7fff80f1ffff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff810df000 -     0x7fff81129ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8112a000 -     0x7fff8116ffff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff81170000 -     0x7fff81274ff7  com.apple.PubSub 1.0.5 (65.28) <C99BB1FE-46EA-237F-55A3-48CC2FE1F755> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8134e000 -     0x7fff81795fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff81830000 -     0x7fff81c74fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff81c75000 -     0x7fff81c7aff7  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
        0x7fff81ed4000 -     0x7fff81fb9fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff81fd3000 -     0x7fff81fecfff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8202e000 -     0x7fff8203cff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8203d000 -     0x7fff8208cfef  libTIFF.dylib ??? (???) <1E2593D1-A7F6-84C6-DF8F-0B46AE445926> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8208d000 -     0x7fff820a3fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff821a5000 -     0x7fff821f1fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff821f2000 -     0x7fff821f4fff  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
        0x7fff821f5000 -     0x7fff82236fef  com.apple.CoreMedia 0.484.52 (484.52) <3F868AF8-1089-10C3-DCEB-565690FD9742> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff82237000 -     0x7fff822d7fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff822d8000 -     0x7fff82474fff  com.apple.WebKit 6534 (6534.50) <05AEA122-3F31-0F56-4AA6-E84140C53785> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff82475000 -     0x7fff82480ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <5CA110A2-0712-F774-E7CF-AA7A2A106DAC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff82481000 -     0x7fff824b2fff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff824ba000 -     0x7fff824bbfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff824bc000 -     0x7fff824c1fff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff824c2000 -     0x7fff82552fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff82553000 -     0x7fff82608fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82609000 -     0x7fff82609ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8260a000 -     0x7fff82625ff7  com.apple.openscripting 1.3.1 (???) <2243C17C-EE36-D5B6-3A3E-8258973FF789> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff82638000 -     0x7fff82638ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff82dce000 -     0x7fff82e3fff7  com.apple.AppleVAFramework 4.10.26 (4.10.26) <28C1B366-DF2B-111B-1863-0713B105D930> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff82f20000 -     0x7fff83f5afff  com.apple.WebCore 6534 (6534.50) <8B0BB24A-C84C-A4F2-5544-C8071A35BBC5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff83f5b000 -     0x7fff84765fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff84774000 -     0x7fff84774ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff847a5000 -     0x7fff847faff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84b41000 -     0x7fff84bfefff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff84bff000 -     0x7fff84efdfff  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
        0x7fff84efe000 -     0x7fff84f01ff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff85010000 -     0x7fff85292fe7  com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff852cc000 -     0x7fff852d7fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff852d8000 -     0x7fff852e7fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff852e8000 -     0x7fff852ecff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff85315000 -     0x7fff85326fff  SyndicationUI ??? (???) <117F0971-8B7E-DC2A-84C1-C8B5FA15E421> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff85327000 -     0x7fff8533bfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8553b000 -     0x7fff8559bfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8559c000 -     0x7fff8574dfe7  com.apple.WebKit2 6534 (6534.50) <1D20EA7A-C33B-BF9A-C58A-D40B8CA7F1AA> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8574e000 -     0x7fff85868fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff85869000 -     0x7fff85d6fff7  com.apple.VideoToolbox 0.484.52 (484.52) <FA1B8197-8F5F-73CB-A9A1-49E0FB49CF51> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff85dd3000 -     0x7fff85e14fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff85ed9000 -     0x7fff85efcfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff85efd000 -     0x7fff85f67fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff85f68000 -     0x7fff86018fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86019000 -     0x7fff86096fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff86425000 -     0x7fff86439ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8643a000 -     0x7fff86457ff7  libPng.dylib ??? (???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff86458000 -     0x7fff8656ffef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff86638000 -     0x7fff866f9fef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff86752000 -     0x7fff86785ff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff86786000 -     0x7fff868fdfe7  com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86922000 -     0x7fff869e3fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff869e4000 -     0x7fff86a60ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86a61000 -     0x7fff86dfefe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86f4e000 -     0x7fff86f54fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff86f69000 -     0x7fff87003fe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87004000 -     0x7fff871c5fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87248000 -     0x7fff8724cff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8724d000 -     0x7fff8728aff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff8728b000 -     0x7fff8729cff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff8729d000 -     0x7fff872a3ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff872a4000 -     0x7fff873ccff7  com.apple.MediaToolbox 0.484.52 (484.52) <F03DAC32-79DB-EA5A-9B8D-CB288AF91A56> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff873cd000 -     0x7fff873ceff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87436000 -     0x7fff8744dfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8744e000 -     0x7fff87491fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87492000 -     0x7fff87510ff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff87777000 -     0x7fff878b5fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff878b6000 -     0x7fff878bdfff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff878be000 -     0x7fff878beff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff878c9000 -     0x7fff87ad6ff7  com.apple.JavaScriptCore 6534 (6534.49) <1D418EF7-CDBE-3832-0157-D853073948D0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff87ad7000 -     0x7fff87b2aff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87b2b000 -     0x7fff88525ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff88526000 -     0x7fff8856fff7  com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff88570000 -     0x7fff88570ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88571000 -     0x7fff88596ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88597000 -     0x7fff885d1fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff885d2000 -     0x7fff885dffe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff885ec000 -     0x7fff88634ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8863c000 -     0x7fff88970fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88993000 -     0x7fff889d0ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff889d1000 -     0x7fff88a18ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff88a63000 -     0x7fff88a69ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff88a6a000 -     0x7fff88aa0ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff88aa1000 -     0x7fff88b26ff7  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
        0x7fff88b27000 -     0x7fff88db0ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88f76000 -     0x7fff88f78fff  libRadiance.dylib ??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89024000 -     0x7fff8904fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff89050000 -     0x7fff89078fff  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
        0x7fff89444000 -     0x7fff89449fff  libGIF.dylib ??? (???) <201B8077-B5CC-11AA-E1B0-1D057ABE416A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff89517000 -     0x7fff8964cfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8964d000 -     0x7fff89663fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff89664000 -     0x7fff89783fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8983c000 -     0x7fff8985dfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff89899000 -     0x7fff898aeff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff898b7000 -     0x7fff898b8ff7  com.apple.TrustEvaluationAgent 1.1 (1) <040B71B1-F8BD-1605-057E-E80DBDE1FE59> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff898b9000 -     0x7fff89a77fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff89ac4000 -     0x7fff89b13ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff89b64000 -     0x7fff89c38fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff89c39000 -     0x7fff89c74fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89cfd000 -     0x7fff89d08fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff89d09000 -     0x7fff89d4cff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff89d4d000 -     0x7fff89d50ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff89d60000 -     0x7fff8a45cff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8a45d000 -     0x7fff8a460fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8a461000 -     0x7fff8a461ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8a462000 -     0x7fff8a4abfef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8a4ac000 -     0x7fff8a4acff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a4ad000 -     0x7fff8a566fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff8a5a1000 -     0x7fff8a5b0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a5b1000 -     0x7fff8a5c0fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8a5c1000 -     0x7fff8a602fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.52f9
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0606, 0x24300000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 4

    You need to get rid of that plugin.
    The locations of the various files is shown under 'binary images'.

Maybe you are looking for

  • Can you add an image as a spacer in SpryMenuBars?

    SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 Version CS5 DW – Windows XP 32bit system Can you insert an image as a spacer in the Spry Menu Bar widget? Page link: http://test.thunderscientific.com/NewMenuTest-Vertical.html I need to

  • 404 error access JSF pages

    Hello, When I was running my JSF application through the embeded Tomcat 6.0.18 server in Netbeans 6.5.1 all worked fine. After deploying the *.WAR file to the stand alone Tomcat 6.0.18 server I get a 404 error when I access the jsf pages. The default

  • I have a Denon 1913 AVR and Apple TV. Doesn't work...

    The Denon won't pass through the video to the TV. I connected the HDMI directly to the TV and the optical out to the Denon, but the audio won't come through (apparently optical audio can only come from the TV). Any suggestions?

  • Can't connect to browser

    I am getting a Error couldn't resolve host name when i try and connect to the playbook browser. It says i am connected to my wi-fi from the wi-fi screen, but when i try to connect to any apps it says i am not connected to the internet. I have Os vers

  • IPhone 3GS - download error tap to retry

    I know it's been asked before but I haven't found an answer that works yet. I have an iPhone 3GS running IOS 6.1.3 connected to my iTunes account with a valid an active iTunes Match subscription.  This has been working perfectly until the last couple