ResultSet processed at the DB server or App Server???

Well,
If I have a ResultSet object that is fetched with a couple of records, where does the actual records stay???
Are these records fetched into your App server, or they still are with your DB?? So, when I call "rs.next()", evidently does the App server need to fetch each and every record from the DB, if the latter is true??? If the former is true, how do you explain that the ResultSets and other related objects are scarce DB resources???
Thx for your time.
fun_one

A ResultSet is a Java object, so it resides on the application server. A ResultSet is associated with a database cursor, which resides on the database server.
When you open a cursor, i.e. execute a query, the database figures out which rows match the query. The database servers builds a data structure of some sort in its memory, containing the selected data. The data structure is...cough...don't ask me, I don't know. Must be fairly significant to allow for transaction isolation, sorting, joins, ... If you just do "select * from foo" without a "where" clause, the db server may get by with a simpler data structure.
The database then sends the first, say, 10 rows to the application server. The db server also says, "here's the data on the newly opened cursor, and let's call this cursor #22."
After the application server has looped 10 times in while(res.next()), res.next() says to the db server, "dude, I have this cursor, #22, send me more data on it." The db server sends the next batch of 10 rows. This repeats until all rows are processed, or you close the ResultSet (aka close the cursor).
Closing the ResultSet tells the database server that it can release the data structure that holds the stuff in the cursor. If you don't close the cursor, the data structure needs to stay there, reserving memory, in case you rewind it and start reading it over.
So, a ResultSet + cursor take space on both the application server and at the db server.
The number of rows that are fetched at a time can be adjusted; see setFetchSize(). It's a tradeoff between the number of times a round trip has to be made, vs. the memory it takes to keep the 10 or whatever rows in memory before res.next() gets to them.
All of this depends on how the db server and the JDBC driver are implemented, but I'd guess the above is a pretty typical way of doing it.

Similar Messages

  • Object failed to run due to an error while processing on the Job Server

    when i am scheduling a report ith email notification i am getting  below error
    error msg: Object failed to run due to an error while processing on the Job Server
    i have configured email notification in bo cmc and server also SMTP enabled. while scheduling report to ueser i am getting error and even mails are delivered to users as well.

    hi prithvi,
    i am able to schedule reports to other destinations and reports are delivered as per the requirement.
    i am able to telnet SMTP server from Adaptive job server machine on SMTP port.
    have to check errors on log file....
    @ COULD YOU  PLEASE LET ME KNOW USER CAN SEND A MAIL TO USER  IN SAME DOMAIN . WHILE SCHEDULING A REPORT AND AS OPTION AVAILABLE  IN 4.0 LAUNCH PAD CAN HE SEND A MAIL DIRECTLY  AFTER RUNNING REPORT.

  • Critical Error in the Enterprise Server

    I am having a critical error in my process in the Enterprise Server.. It works fine inside Studio.. The following is the error:-
    Error while persisting the transaction data: 'An error occurred while accesing the database. Detail:SQL statement: 'unknown' ' Details: An error occurred while accesing the database. Detail:SQL statement: 'unknown' Caused by: Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Transaction timed out after 32 seconds BEA1-058A537B20F95C8E0272 at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1418) at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1330) at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:189) at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:64) at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:92)
    It also complains the following :-
    Process '/TestProcess#Default-1.0@Test' was not found in the Directory Service: 'oracle'
    Detail:Verify that the Directory Service is working properly and that the process is correctly deployed.
    Consider that Oracle J2EE Engines require referral configuration to communicate.
    But the process has been completely deployed..
    What could be the possible problem?
    Any answer anybody?
    This is urgent..

    It seems that some execution is taking longer than 30 seconds (default JTA timeout)
    You should increase the WLS JTA Timeout.
    Hope this helps,
    Ariel

  • How to execute a process in a certain server

    Hi all, We have a scheduled job to be executed in a certain server. This job trigger some process and the system do the load balancing, but we want that this processes runs in the same server than the job
    Is possible to do this?, How to force the system to execute this processes in the same server than the job?
    thanks.

    Juan,
    If you are speaking of a scheduled job - like one you can find in SM37, then you can set a specific server as the target server - like the CI.
    First, check the following:
    SM61 - make sure you have operation modes setup for the servers. The filed EXEC TARGET in the SM36/SM37 job definition reads for values based upon what you have setup here. The servers in the landscape will show up by default, but you can build a group to include/exclude certain servers as you see fit.
    Next, in either SM36 when building a job, or in SM37 to change an existing job, open the job in change mode. On the first screen, you'll see a field labeled "Exec. Target" - use the match code values (F4 help) to select the target server you want. Save the job, and you are all set.
    Hope this helps.
    -Tim

  • What is the best way to close a communication session with the FP Server?

    Looking at NI's FieldPoint Demobox.vi example, the session is closed by wiring the FP Refnum out from the FP Create Tag vi for the AI module to the FP Close vi. Is there any difference if the FP Refnum out from any or all of the other FP Create Tags were wired to FP Close vi/vi's? Could the FP Refnum out from the FP Open vi be wired to the FP Close vi? What is the best way to do this?
    Also, as I'm new to FP and I'm conscious that I might swamp this forum with dumb questions, are the any sources of good FP code examples and/or discussions on coding techniques out there beyond the handful of NI's examples?
    Thanks again,
    Niel.

    Niel,
    The FP Open.vi provides a FP Refnum in the form of a data cluster. The cluster contains two elements; a server refnum and a tag refnum. Coming out of the FP Open, only the server refnum has a value, the tag refnum is created when the FP Create Tag.vi is processed. Thus all FP refnums in a process have the same server refnum but different tag refnums. The FP Close.vi uses the server refnum to close the server and ignores the tag refnum so it does not matter which particular refnum was used to close the server. The thing to be careful of is if you close on refnum, you close all refnums. At this point, any reads/writes/advises will result in error 32804 (Invalid IA handle specified).
    Also, please swamp this forum with questions. I am in the process of reviewin
    g the documentation and examples we provide and having a beginner asking questions that do not appear to be covered in our materials gives me an idea of what we are missing. I would ask that you upgrade to FieldPoint Explorer 2.0.4 and use the online help for LabVIEW since that has had some of my modifications added to it (program flow outlines, vi descriptions & use cases).
    Regards, Aaron

  • Folder Redirection did not update to the new server

    hello  guys, I had migrated quite some time ago to a new server.
    I thought everything works fine, basically the server functionality DNS, Replication and other stuff works fine.
    But I notice that some of the workstation did not actually update its folder redirection to the new server.
    Their desktop and my documents still points to the old server.
    So their offline files, is becoming larger and larger.
    I have some workaround but it's a lot of work. Question is, why those Win 7 workstation folder redirection did not update to the new server.
    What should be the best practice? During the migration process from the old server to the new server, all workstation should be turned on? 
    Or any tools to update  those workstation to the new server without losing their files?
    Basically, just editing the registry to point to the new server will help. But it means losing their current files and whatever old stuff that is on the server will be the one that will be shown on their desktop and documents.
    any inputs is greatly appreciated.
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

    Hi biswajeetpattnaik, before migration it was Windows 2003.
    Then I introduce Windows 2008.
    Then I introduce a new Windows 2012.
    Now Windows 2012 is the main DC.
    Actually, everything is under control right now.  As what I said on my first post, I manage to do some work around.
    The only question I have on mind, is how on earth this thing happen.
    I was assuming, that the workstation will be able to point to the new server, without any glitch since everything is working fine.
    And the GPO was applying on the workstation. If I type gpresult /v on the workstation is it being applied. Even if I run GP Modelling it is also shows on the result that the folder redirection is being applied.
    But to my surprise the folder redirection still points to old server, if I have not discovered it then it would be difficult if some files will get lost.
    Thanks for your reply.
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Multi-processes on the same machine open the same database

    I run into an issue where I have two processes, running on the same machine.
    Process-1 starts the replication as master and opens database for read-write.
    Process-2 only opens the same database for read-write, no replication is started,
    and process-2 will fail to open the database because of "Non-replication DB_ENV
    handle attempting to modify a replicated environment" error.
    Can you suggest a way to handle this scenario?
    Can two processes on the same machine open the same database for read-write?
    Thanks.

    Following are how I setup the database environment for Master side:
    DB_ENV->rep_set_priority(80)
    DB_ENV->repmgr_set_ack_policy(DB_REPMGR_ACKS_ALL)
    DB_ENV->repmgr_set_local_site()
    DB_ENV->rep_set_nsites(2)
    DB_ENV->set_cachesize(1MB)
    DB_ENV->set_data_dir()
    DB_ENV->set_lg_dir()
    DB_ENV->set_tmp_dir()
    DB_ENV->set_flags(DB_AUTO_COMMIT, 1)
    DB_ENV->set_lg_max(1MB)
    DB_ENV->log_set_config(DB_LOG_AUTO_REMOVE, 1)
    DB_ENV->set_lg_bsize(1MB)
    openFlags = DB_INIT_MPOOL | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_TXN | DB_INIT_REP | DB_THREAD | DB_CREATE | DB_USE_ENVIRON;
    DB_ENV->open("/home/db", openFlags, 0644)
    DB_ENV->repmgr_start(3 threads, DB_REP_MASTER)
    Both processes using the same environment home directory.
    Now I'm able to get both process up and running, because now I check for DB_REP_IGNORE return value from repmgr_start() method on the second process.
    The first process starts the replication server, and the second process will not start the replication server at all.
    However, if the first process terminated and got restart, the replication server will not be restarted...
    I saw there's a check of "listener" in the repmgr_start function.
    How can I restart the replication server either upon restarting the first process or from the running second process?

  • Background processes of the app server

    Hi,
      We had setup one app server & database server. We would like to restrict the users to use the same server which they are assigned to. Currently it's happening with the logon groups for dialog users. When ever something is getting executed in background it's occupying the other servers background work process also which we don't want to.
      Is there a way to control to use only that particular application server's processes when they are performing any activity or transaction running in the background.
    Regards,
    Krishna.

    Check SAP  [Note 786412 - Determining execution server of jobs w/o target server|https://service.sap.com/sap/support/notes/786412]
    The default server group has now been introduced (as of Basis Release 6.10) for these types of requirements.
    Create a server group with the name 'SAP_DEFAULT_BTC' in transaction SM61 and assign the desired servers. As of now, the background jobs that do not have an execution goal are only executed on a (any) server that is included in the server group 'SAP_DEFAULT_BTC'.
    Note that the 'SAP_DEFAULT_BTC' server group is analyzed at the start time of a job, but not at the definition time. This applies in general to background processing server groups.
    Hope this helps.
    Thanks,
    Naveed
    Edited by: Naveed Qureshi on Oct 11, 2010 11:41 AM

  • Hard Drive low on disk space - What is the process of moving B1 Server App?

    The partition the SAP B1 Server App is installed on is running low on disk space. I would like to move the APP from the D:\ to a new, faster, hard disk we have installed.
    What is the process for uninstalling and reinstalling the server app to a new partition.
    Is there any documentation that outlines this process?
    What are concerns I should have for doing this?
    Any and all info is appreciated.
    John Sefton

    Fine. Then Backup the Client Database from SQL Server Management Studio.
    Backup the B1_SHR folder from the SAP Server.
    Now uninstall SAP B1 from the Server.
    Restart the Server and do a Fresh Installation of SAP B1.
    Apply for New License Key. Install the License Key after you get from SAP portal.
    Upgrade to the Patch similar to that of the Backuped Client DB Patch.
    Now create a new company in SAP B1.
    Restore the DB which was backed up.
    NOTE: I suggest these operations to be done by experienced guys. If you are a SBO Customer, then I recommend you to ask your Implementation Partner to do this exercise.

  • My Safari is quitting unexpectedly for the last 2 days. The report I get is Process:         Safari [386] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Ve

    My Safari has been quitting for the last 2 days. The report I get is as follows. I would be grateful for any help.
    Process:         Safari [386]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.10 (6534.59.10)
    Build Info:      WebBrowser-75345910~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [95]
    Date/Time:       2013-12-05 22:59:31.207 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          4324 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  32 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      7DC5ED9E-BFB1-44E7-99F1-5474E81F2DAE
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread:  3  WebCore: IconDatabase
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff863a27ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff863a25f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff863a24ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff87b97eb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff87b97801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari.framework              0x00007fff8589995c -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10  com.apple.AppKit                        0x00007fff87b5d68f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff87b563b0 NSApplicationMain + 364
    12  com.apple.Safari.framework              0x00007fff85a5a56a SafariMain + 200
    13  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8001cc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8001eadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8001e7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8001e2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8001dc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 3 Crashed:  WebCore: IconDatabase
    0   com.apple.WebCore                       0x00007fff8362949d bool ***::HashTable<***::String, std::pair<***::String, WebCore::PageURLRecord*>, ***::PairFirstExtractor<std::pair<***::String, WebCore::PageURLRecord*> >, ***::StringHash, ***::PairHashTraits<***::HashTraits<***::String>, ***::HashTraits<WebCore::PageURLRecord*> >, ***::HashTraits<***::String> >::contains<***::IdentityHashTranslator<***::StringHash>, ***::String>(***::String const&) const + 45
    1   com.apple.WebCore                       0x00007fff82c6395b WebCore::IconDatabase::pruneUnretainedIcons() + 331
    2   com.apple.WebCore                       0x00007fff82c4c1fa WebCore::IconDatabase::syncThreadMainLoop() + 362
    3   com.apple.WebCore                       0x00007fff82c49598 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff89aa6396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff89aa62d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff897c914f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8974a114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 7:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff80045aea pread + 10
    1   libsqlite3.dylib                        0x00007fff8148509c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff81488ec0 sqlite3PagerAcquire + 1312
    3   libsqlite3.dylib                        0x00007fff8149d22c checkTreePage + 252
    4   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    5   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    6   libsqlite3.dylib                        0x00007fff814fbeed sqlite3VdbeExec + 31725
    7   libsqlite3.dylib                        0x00007fff814ff798 sqlite3_step + 1384
    8   com.apple.Safari.framework              0x00007fff85a97b6e Safari::SQLiteStatement::step() + 28
    9   com.apple.Safari.framework              0x00007fff85a6817f Safari::SafeBrowsingStore::checkIntegrity() + 51
    10  com.apple.Safari.framework              0x00007fff85a68598 Safari::SafeBrowsingStore::initDatabase() + 104
    11  com.apple.Safari.framework              0x00007fff85a68642 Safari::SafeBrowsingStore::getListID(Safari::SString const&, int&) + 38
    12  com.apple.Safari.framework              0x00007fff85a686db Safari::SafeBrowsingStore::addList(Safari::SString const&) + 35
    13  com.apple.Safari.framework              0x00007fff85a60991 Safari::SafeBrowsingListManager::SafeBrowsingListManager(Safari::SafeBrowsingSe rvice&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 433
    14  com.apple.Safari.framework              0x00007fff85a60d98 Safari::SafeBrowsingListManager::create(Safari::SafeBrowsingService&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 78
    15  com.apple.Safari.framework              0x00007fff85a66b9f Safari::SafeBrowsingService::didReceiveListNames(***::Vector<Safari::SString, 0ul> const&) + 35
    16  com.apple.Safari.framework              0x00007fff859d858a Safari::GoogleSafeBrowsingService::initialize() + 294
    17  com.apple.Safari.framework              0x00007fff85a6254e Safari::SafeBrowsingManager::addGoogleSafeBrowsingService() + 122
    18  com.apple.Safari.framework              0x00007fff85a6272e Safari::SafeBrowsingManager::handleMessage(Safari::SafeBrowsingManager::SafeBro wsingMessage*) + 202
    19  com.apple.Safari.framework              0x00007fff85a119b3 Safari::MessageRunLoop::dispatchMessage() + 49
    20  com.apple.CoreFoundation                0x00007fff83f923d1 __CFRunLoopDoSources0 + 1361
    21  com.apple.CoreFoundation                0x00007fff83f905c9 __CFRunLoopRun + 873
    22  com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    23  com.apple.Safari.framework              0x00007fff85a118e5 Safari::MessageRunLoop::threadBody() + 107
    24  com.apple.Safari.framework              0x00007fff85a1191f Safari::MessageRunLoop::threadCallback(void*) + 9
    25  libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    26  libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.CoreVideo                     0x00007fff83cb1342 CVDisplayLink::runIOThread() + 804
    3   com.apple.CoreVideo                     0x00007fff83cb0fe3 startIOThread(void*) + 139
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 9:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff8239d650 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff85a8e14b Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4   com.apple.Safari.framework              0x00007fff85a8c5bd Safari::SnapshotStore::diskAccessThreadBody() + 115
    5   com.apple.Safari.framework              0x00007fff85a8c73d Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000001fff  rbx: 0x0000000100368380  rcx: 0x000000010051ce98  rdx: 0x00000000ffffffff
      rdi: 0x0000000100335950  rsi: 0x00000001007c0dd0  rbp: 0x00000001007c0cd0  rsp: 0x00000001007c0c90
       r8: 0x0000000100335900   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000001  r13: 0x00000001003358f8  r14: 0x0000000100335800  r15: 0x000000010be00000
      rip: 0x00007fff8362949d  rfl: 0x0000000000010206  cr2: 0x0000000000000018
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.10 (6534.59.10) <E9B93F8E-359B-6C7E-E1D5-6415B49BBB03> /Applications/Safari.app/Contents/MacOS/Safari
           0x10c580000 -        0x10c713fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10c79a000 -        0x10c7c0fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e87f000 -        0x10eca2fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff801c4fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff801c5000 -     0x7fff8044eff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8044f000 -     0x7fff80477fff  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
        0x7fff804bb000 -     0x7fff804c9ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff804ca000 -     0x7fff80509ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <B2E93DEC-2F33-366A-995C-ACA0523D508F> /usr/lib/libssl.0.9.8.dylib
        0x7fff8065a000 -     0x7fff80710ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff80711000 -     0x7fff80734fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff807d3000 -     0x7fff80993fe7  com.apple.WebKit2 6534.59 (6534.59.10) <61029ECF-E501-D530-C98A-AB9AAB9FF257> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff80994000 -     0x7fff809eafe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff809eb000 -     0x7fff809fcff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff809fd000 -     0x7fff80e44fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff80e45000 -     0x7fff80ec3ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff80ec4000 -     0x7fff80ec4ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80f15000 -     0x7fff80f3cff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81047000 -     0x7fff81124fff  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
        0x7fff81326000 -     0x7fff8133cfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8133d000 -     0x7fff813bcfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81473000 -     0x7fff8152cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff81568000 -     0x7fff81568ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff817ba000 -     0x7fff817c1fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff817c2000 -     0x7fff81805ff7  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
        0x7fff81d94000 -     0x7fff81d99ff7  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
        0x7fff81d9a000 -     0x7fff81d9aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81d9b000 -     0x7fff81d9cff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81d9d000 -     0x7fff81ddefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff81ddf000 -     0x7fff81df0fff  SyndicationUI ??? (???) <A7C60837-3B4F-ACDE-5B7B-63DA918763D0> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff81e84000 -     0x7fff81e89fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff81e8a000 -     0x7fff81e8bfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82393000 -     0x7fff826b5fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff826f3000 -     0x7fff82748ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff82749000 -     0x7fff82a7dfef  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
        0x7fff82a7e000 -     0x7fff82a94fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff82a9b000 -     0x7fff82b80fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82b81000 -     0x7fff82c43fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82c44000 -     0x7fff83caefff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff83caf000 -     0x7fff83cd4ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83ce7000 -     0x7fff83d47fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83d79000 -     0x7fff83d7fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff83db0000 -     0x7fff83dc4ff7  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
        0x7fff83ebd000 -     0x7fff83f04ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83f05000 -     0x7fff83f43fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83f44000 -     0x7fff840bbfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff840bc000 -     0x7fff844fffef  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
        0x7fff84661000 -     0x7fff84664fff  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
        0x7fff84665000 -     0x7fff8479afff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8479b000 -     0x7fff84805fe7  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
        0x7fff84830000 -     0x7fff849d2fe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff84d1c000 -     0x7fff84e20ff7  com.apple.PubSub 1.0.5 (65.28) <87EB5C5F-E4E2-E4FD-70EE-773B3A40ABCD> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff84e80000 -     0x7fff84f54fe7  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
        0x7fff84f55000 -     0x7fff85651ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff857ef000 -     0x7fff85838fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85839000 -     0x7fff86079fe7  com.apple.Safari.framework 6534 (6534.59.10) <994DD15D-D620-7FEB-C912-1FF3086942AD> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff862bf000 -     0x7fff862caff7  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
        0x7fff86374000 -     0x7fff86672fff  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
        0x7fff8682a000 -     0x7fff86949ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8694a000 -     0x7fff8695fff7  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
        0x7fff86960000 -     0x7fff86a7afff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86a7e000 -     0x7fff86a97fff  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
        0x7fff86ab3000 -     0x7fff872bdfe7  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
        0x7fff872be000 -     0x7fff872beff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff872bf000 -     0x7fff872c5ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff872c6000 -     0x7fff872c6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff872d1000 -     0x7fff872e8fff  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
        0x7fff8730a000 -     0x7fff87420ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff87421000 -     0x7fff874adfef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff874e6000 -     0x7fff874ecfff  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
        0x7fff874ed000 -     0x7fff87537ff7  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
        0x7fff87538000 -     0x7fff8757bfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87648000 -     0x7fff8765cfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8765d000 -     0x7fff87661ff7  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
        0x7fff877d3000 -     0x7fff87894fef  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
        0x7fff87895000 -     0x7fff878c6fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff878c7000 -     0x7fff878d3fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff878d4000 -     0x7fff878f5fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff878f6000 -     0x7fff8793eff7  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
        0x7fff8793f000 -     0x7fff8794cfe7  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
        0x7fff8794d000 -     0x7fff879fdfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff879fe000 -     0x7fff87a04ff7  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
        0x7fff87a05000 -     0x7fff87abafe7  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
        0x7fff87b50000 -     0x7fff87b53ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87b54000 -     0x7fff8854eff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8854f000 -     0x7fff885a2ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff885e7000 -     0x7fff88612ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff88643000 -     0x7fff886d3fff  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
        0x7fff886d4000 -     0x7fff88715fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff88716000 -     0x7fff88765ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff88766000 -     0x7fff887afff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff887b0000 -     0x7fff887e6ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff888fe000 -     0x7fff88903fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88ae7000 -     0x7fff88b22fff  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
        0x7fff88b23000 -     0x7fff88bbdfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff88c4b000 -     0x7fff88d08fff  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
        0x7fff88d09000 -     0x7fff88d18fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff894b6000 -     0x7fff894f0fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
        0x7fff894f1000 -     0x7fff8953dfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8953e000 -     0x7fff8954dfff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89555000 -     0x7fff89714fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff89739000 -     0x7fff899bbfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff899bc000 -     0x7fff899c7fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff899d6000 -     0x7fff89a52ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff89a53000 -     0x7fff89df0fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89df1000 -     0x7fff89e0cff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89e0d000 -     0x7fff89e1cfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff89e1d000 -     0x7fff89e20ff7  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
        0x7fff89e21000 -     0x7fff89e23fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89e99000 -     0x7fff8a057fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff8a058000 -     0x7fff8a079fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8a218000 -     0x7fff8a295fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8a2a5000 -     0x7fff8a2d8ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8a30e000 -     0x7fff8a310fff  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
        0x7fff8a3f4000 -     0x7fff8a414fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8a487000 -     0x7fff8a499fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff8a49a000 -     0x7fff8a53afff  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
        0x7fff8a54f000 -     0x7fff8a68dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8a70c000 -     0x7fff8a710ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8a72d000 -     0x7fff8a72dff7  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
        0x7fff8a72e000 -     0x7fff8a72eff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a72f000 -     0x7fff8a730ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8a731000 -     0x7fff8a73cfff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a73d000 -     0x7fff8a7c2ff7  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
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 2 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: WDC WD5000BPVT-00HXZT3, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857E
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2

    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Safari/WebpageIcons.db
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Safari quits unexpectedly with following error.  Anyone talk me through the solution in easy terms please Process:         Safari [121] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:

    Process:         Safari [121]
    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:       /Users/Shared/.memalloc.so
    PlugIn Identifier: .memalloc.so
    PlugIn Version:    ??? (???)
    Date/Time:       2012-04-12 15:09:27.865 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          144494 sec
    Crashes Since Last Report:           26
    Per-App Interval Since Last Report:  57116 sec
    Per-App Crashes Since Last Report:   20
    Anonymous UUID:                      91B2A359-1542-4475-8E0E-2C7CE0C3B4D8
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  1
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff88938d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff889393ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8619f902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8619ed8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff87b5c7ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff87b5c5f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff87b5c4ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff88c58eb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff88c58801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari.framework              0x00007fff856a7b48 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10  com.apple.AppKit                        0x00007fff88c1e68f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff88c173b0 NSApplicationMain + 364
    12  com.apple.Safari.framework              0x00007fff85864e6a SafariMain + 200
    13  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1 Crashed:
    0   libSystem.B.dylib                       0x00007fff889ab9ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff889ab8d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff88a083ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff88a27a00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff801425d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff853d5b4d _objc_terminate + 120
    6   libstdc++.6.dylib                       0x00007fff80140ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff80140b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff80140bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libstdc++.6.dylib                       0x00007fff800fca3e std::__throw_length_error(char const*) + 127
    10  libstdc++.6.dylib                       0x00007fff801273fe std::string::append(char const*, unsigned long) + 82
    11  .memalloc.so                            0x000000010000e1bc dylibmain + 5910
    12  com.apple.CFNetwork                     0x00007fff84992dd7 HTTPReadFilter::readHeaderBytes(StreamReader*, unsigned char, unsigned char*, long, CFStreamError*) + 421
    13  com.apple.CFNetwork                     0x00007fff84993d4c HTTPReadFilter::canReadNoSignal(StreamReader*, CFStreamError*, unsigned char) + 110
    14  com.apple.CFNetwork                     0x00007fff8494152c HTTPReadFilter::streamCanRead(__CFReadStream*) + 90
    15  com.apple.CFNetwork                     0x00007fff849416a2 HTTPReadFilter::socketReadStreamCallback(unsigned long) + 122
    16  com.apple.CFNetwork                     0x00007fff84941613 HTTPReadFilter::_httpRdFilterStreamCallBack(__CFReadStream*, unsigned long, void*) + 49
    17  com.apple.CoreFoundation                0x00007fff86201343 _signalEventSync + 115
    18  com.apple.CoreFoundation                0x00007fff862012b4 _cfstream_solo_signalEventSync + 116
    19  com.apple.CoreFoundation                0x00007fff862011f4 _CFStreamSignalEvent + 740
    20  com.apple.CFNetwork                     0x00007fff849968d7 SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 45
    21  com.apple.CFNetwork                     0x00007fff8492b12c SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 224
    22  com.apple.CFNetwork                     0x00007fff8492b016 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 96
    23  com.apple.CoreFoundation                0x00007fff861c9bba __CFSocketDoCallback + 634
    24  com.apple.CoreFoundation                0x00007fff861c95bb __CFSocketPerformV0 + 315
    25  com.apple.CoreFoundation                0x00007fff861a13d1 __CFRunLoopDoSources0 + 1361
    26  com.apple.CoreFoundation                0x00007fff8619f5c9 __CFRunLoopRun + 873
    27  com.apple.CoreFoundation                0x00007fff8619ed8f CFRunLoopRunSpecific + 575
    28  com.apple.CFNetwork                     0x00007fff849441fc HTTPNetStreamInfo::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 278
    29  com.apple.CoreFoundation                0x00007fff8618f05c CFReadStreamRead + 748
    30  .memalloc.so                            0x000000010000e167 dylibmain + 5825
    31  com.apple.CFNetwork                     0x00007fff84995fe0 HTTPReadStream::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 82
    32  com.apple.CoreFoundation                0x00007fff8618f05c CFReadStreamRead + 748
    33  .memalloc.so                            0x000000010000d7f5 dylibmain + 3407
    34  .memalloc.so                            0x000000010000bde6 0x100004000 + 32230
    35  .memalloc.so                            0x000000010000d4bb dylibmain + 2581
    36  .memalloc.so                            0x0000000100010c8b dylibmain + 16869
    37  .memalloc.so                            0x0000000100015bf6 dylibmain + 37200
    38  libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    39  libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   .memalloc.so                            0x0000000100015d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 12:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff88951c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff88953add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff889537b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff889532de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff88952c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff88952aa5 start_wqthread + 13
    Thread 13:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff8897c932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff861c1468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 14:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff81417b69 WebCore::IconDatabase::syncThreadMainLoop() + 265
    3   com.apple.WebCore                       0x00007fff81414f68 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff88938d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff889393ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff89cc0396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff89cc02d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff88938d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff889393ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8619f902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8619ed8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8410e14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8408f114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 17:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff88938d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff889393ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8619f902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8619ed8f CFRunLoopRunSpecific + 575
    4   com.apple.Safari.framework              0x00007fff8581d305 Safari::MessageRunLoop::threadBody() + 107
    5   com.apple.Safari.framework              0x00007fff8581d33f Safari::MessageRunLoop::threadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 18:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff84d0d6a0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff85898803 Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4   com.apple.Safari.framework              0x00007fff85896c75 Safari::SnapshotStore::diskAccessThreadBody() + 115
    5   com.apple.Safari.framework              0x00007fff85896df5 Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 19:  JavaScriptCore::Marking
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff84f8428d JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00007fff84f844e0 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x00007fff84f84589 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 20:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x00007fff88973a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff88977881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff84d0d6f7 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore                0x00007fff84f8cbcc JSC::Heap::blockFreeingThreadMain() + 300
    4   com.apple.JavaScriptCore                0x00007fff84f8cc09 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libSystem.B.dylib                       0x00007fff88971fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff88971e89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff88952a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff88952e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff88952aa5 start_wqthread + 13
    Thread 1 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x00000001004ad5d0  rcx: 0x00000001004ad588  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x00000001004ad5c0  rsp: 0x00000001004ad588
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000114a9fbf0  r14: 0xffffffffffffffff  r15: 0x00000001004ad840
      rip: 0x00007fff889ab9ce  rfl: 0x0000000000000247  cr2: 0x000000011a085f38
    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 -        0x10002eff7 +.memalloc.so ??? (???) <C712F0B3-620E-5DEC-E57D-A58D7426F05C> /Users/Shared/.memalloc.so
           0x100039000 -        0x10011ffe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x114b3e000 -        0x114b64fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x117600000 -        0x117793fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x1177c4000 -        0x117be7fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8004cfef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8004d000 -     0x7fff80094ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff800f6000 -     0x7fff80173fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80174000 -     0x7fff801c0fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff801c1000 -     0x7fff801d2fff  SyndicationUI ??? (???) <2345AF3F-75EB-79A7-9665-A154F6943B59> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff801d3000 -     0x7fff80204fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff80246000 -     0x7fff80281fff  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
        0x7fff80282000 -     0x7fff802c3fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff802c4000 -     0x7fff802c5ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff802c6000 -     0x7fff802c6ff7  com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff80b32000 -     0x7fff80e66fef  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
        0x7fff80e67000 -     0x7fff80e7dfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff80fe6000 -     0x7fff8102eff7  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
        0x7fff813c5000 -     0x7fff8140fff7  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
        0x7fff81410000 -     0x7fff82479fe7  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
        0x7fff8247a000 -     0x7fff82591fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff82592000 -     0x7fff82593ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82594000 -     0x7fff82596fff  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
        0x7fff82597000 -     0x7fff8259cff7  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
        0x7fff8259d000 -     0x7fff825c8ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff825c9000 -     0x7fff826a6fff  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
        0x7fff826a7000 -     0x7fff827c6fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff827c7000 -     0x7fff82981ff7  com.apple.WebKit2 6534.55 (6534.55.3) <44B0FCCC-7303-FDDE-18D5-14D9FA744C50> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff829ac000 -     0x7fff829b2fff  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
        0x7fff829b3000 -     0x7fff82b71fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff82b72000 -     0x7fff82b9afff  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
        0x7fff82bcb000 -     0x7fff82c57fef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82f16000 -     0x7fff82f2afff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff83129000 -     0x7fff83140fff  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
        0x7fff83274000 -     0x7fff83282ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff83350000 -     0x7fff8339fff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff83645000 -     0x7fff83657fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff836ca000 -     0x7fff83ed4fe7  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
        0x7fff83ed5000 -     0x7fff83edbff7  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
        0x7fff83edc000 -     0x7fff8407dfe7  com.apple.WebKit 6534.55 (6534.55.3) <FF06897C-26D5-A526-1131-70D5A1D54CCB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8407e000 -     0x7fff84300fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84343000 -     0x7fff843a5fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff844b8000 -     0x7fff844f6fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff84543000 -     0x7fff84552fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff845df000 -     0x7fff84649fe7  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
        0x7fff846ac000 -     0x7fff8472bfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8472c000 -     0x7fff84732ff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff84922000 -     0x7fff849f6fe7  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
        0x7fff849f7000 -     0x7fff84a4cff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84a4d000 -     0x7fff84aa0ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84b16000 -     0x7fff84b19ff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84b1a000 -     0x7fff84b1aff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84b1b000 -     0x7fff84b1fff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84b20000 -     0x7fff84bd9fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84d03000 -     0x7fff85025fef  com.apple.JavaScriptCore 6534.55 (6534.55.2) <F360FF8A-97DE-327E-A366-EDE97321E795> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8508f000 -     0x7fff85114ff7  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
        0x7fff8513d000 -     0x7fff85153fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff85154000 -     0x7fff85215fef  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
        0x7fff85216000 -     0x7fff8525fff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff85260000 -     0x7fff85260ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8529e000 -     0x7fff852adfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff852ae000 -     0x7fff8530efe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85384000 -     0x7fff853c7fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff853c8000 -     0x7fff8547eff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff85495000 -     0x7fff854b0ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff854b1000 -     0x7fff85561fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff85647000 -     0x7fff85e77fff  com.apple.Safari.framework 6534 (6534.55.3) <1A32D063-6CA1-E1B7-735C-E8F4DA4F3C0F> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff85e78000 -     0x7fff85e78ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff85e80000 -     0x7fff85e86ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85fbd000 -     0x7fff85fc0fff  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
        0x7fff85fc1000 -     0x7fff86061fff  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
        0x7fff86062000 -     0x7fff8606dff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8606e000 -     0x7fff86072ff7  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
        0x7fff86073000 -     0x7fff86078fff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86079000 -     0x7fff86079ff7  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
        0x7fff860d4000 -     0x7fff860dfff7  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
        0x7fff8611f000 -     0x7fff86152ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff86153000 -     0x7fff862cafe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff862cb000 -     0x7fff862d6fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff862d7000 -     0x7fff862ecff7  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
        0x7fff862ed000 -     0x7fff86577fe7  com.apple.security 6.1.2 (55002) <FD0B5AD4-74DB-7ED8-90D3-6EC56FFA8557> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86580000 -     0x7fff8659dff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8666a000 -     0x7fff8666ffff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff86726000 -     0x7fff86726ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86727000 -     0x7fff86e23ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff86e24000 -     0x7fff87267fef  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
        0x7fff87289000 -     0x7fff8728afff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff874fe000 -     0x7fff8751eff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8751f000 -     0x7fff87530ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff87531000 -     0x7fff87540fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff875f9000 -     0x7fff876bbfe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff876bc000 -     0x7fff87779fff  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
        0x7fff8777a000 -     0x7fff87787fe7  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
        0x7fff87816000 -     0x7fff878fbfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff878fc000 -     0x7fff878fefff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87b2e000 -     0x7fff87e2cfff  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
        0x7fff88024000 -     0x7fff88067ff7  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
        0x7fff880b2000 -     0x7fff880efff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff880f0000 -     0x7fff88117ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff88125000 -     0x7fff88155fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff88156000 -     0x7fff88190fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff88191000 -     0x7fff881d2fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff881d3000 -     0x7fff88222fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff88223000 -     0x7fff88358fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff88359000 -     0x7fff887a0fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88938000 -     0x7fff88af9fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff88afa000 -     0x7fff88c14fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff88c15000 -     0x7fff8960fff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8961f000 -     0x7fff8962afff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8962b000 -     0x7fff896a9ff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff896ac000 -     0x7fff8986aff7  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
        0x7fff8986b000 -     0x7fff899a9fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff899aa000 -     0x7fff89a44fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff89a63000 -     0x7fff89a86fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89a87000 -     0x7fff89a87ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89a88000 -     0x7fff89b04ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff89b55000 -     0x7fff89c0afe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29

    You are infected with one of the flashback trojans.  Look at More Like This on the right side of this page for related threads and suggestions on what to do.

  • I am unable to open safari on my mac pro and getting the following details.how to reopen it.Process:         Safari [1484] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.1.6 (7534.56.5)

    how to reopen the safari browser on my mac pro
    Process:         Safari [1484]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.6 (7534.56.5)
    Build Info:      WebBrowser-7534056005000000~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [119]
    Date/Time:       2012-08-26 11:32:39.185 +0530
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          60727 sec
    Crashes Since Last Report:           116
    Per-App Interval Since Last Report:  516183 sec
    Per-App Crashes Since Last Report:   112
    Anonymous UUID:                      38F4D605-DBC4-4F2C-8049-505A80361EFB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[1484]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < [_itemArray count])'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff94732f56 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8db5ad5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff94732d8a +[NSException raise:format:arguments:] + 106
              3   Foundation                          0x00007fff8a1c671f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
              4   AppKit                              0x00007fff8b0becdf -[NSMenu itemAtIndex:] + 165
              5   AppKit                              0x00007fff8b0bee38 -[NSMenu removeItemAtIndex:] + 63
              6   Safari                              0x0000000103f13c2e -[AppController awakeFromNib] + 387
              7   CoreFoundation                      0x00007fff94729fb1 -[NSObject performSelector:] + 49
              8   CoreFoundation                      0x00007fff94729f32 -[NSSet makeObjectsPerformSelector:] + 274
              9   AppKit                              0x00007fff8b0a69ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
              10  AppKit                              0x00007fff8b09cf73 loadNib + 322
              11  AppKit                              0x00007fff8b09c470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
              12  AppKit                              0x00007fff8b09c38b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
              13  AppKit                              0x00007fff8b09c2ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
              14  AppKit                              0x00007fff8b30d06f NSApplicationMain + 398
              15  Safari                              0x0000000104116806 SafariMain + 166
              16  Safari                              0x0000000103f01f24 Safari + 3876
              17  ???                                 0x0000000000000002 0x0 + 2
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8d41ece2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8f5f17d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff8f5e2a7a abort + 143
    3   libc++abi.dylib                         0x00007fff95b767bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff95b73fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8db5b1b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x00007fff95b74001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff95b7405c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff95b75152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x00007fff8db5ae7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff94732d8a +[NSException raise:format:arguments:] + 106
    11  com.apple.Foundation                    0x00007fff8a1c671f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    12  com.apple.AppKit                        0x00007fff8b0becdf -[NSMenu itemAtIndex:] + 165
    13  com.apple.AppKit                        0x00007fff8b0bee38 -[NSMenu removeItemAtIndex:] + 63
    14  com.apple.Safari.framework              0x0000000103f13c2e -[AppController awakeFromNib] + 387
    15  com.apple.CoreFoundation                0x00007fff94729fb1 -[NSObject performSelector:] + 49
    16  com.apple.CoreFoundation                0x00007fff94729f32 -[NSSet makeObjectsPerformSelector:] + 274
    17  com.apple.AppKit                        0x00007fff8b0a69ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    18  com.apple.AppKit                        0x00007fff8b09cf73 loadNib + 322
    19  com.apple.AppKit                        0x00007fff8b09c470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    20  com.apple.AppKit                        0x00007fff8b09c38b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    21  com.apple.AppKit                        0x00007fff8b09c2ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    22  com.apple.AppKit                        0x00007fff8b30d06f NSApplicationMain + 398
    23  com.apple.Safari.framework              0x0000000104116806 SafariMain + 166
    24  com.apple.Safari                        0x0000000103f01f24 0x103f01000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8d41f7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8fd1078a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8fd0f31a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8d41f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8f5f1594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8f5f2b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8d41f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8f5f1594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8f5f2b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8d41ebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8f5f3274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x0000000104fb41fc WebCore::IconDatabase::syncThreadMainLoop() + 124
    3   com.apple.WebCore                       0x0000000104fb1d50 WebCore::IconDatabase::iconDatabaseSyncThread() + 496
    4   com.apple.JavaScriptCore                0x00000001048f111f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8f5ef8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8f5f2b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8d41d67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d41cd71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff89f5c2d9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff89f5c219 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8f5ef8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8f5f2b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff63aff418  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff63aff440  rsp: 0x00007fff63aff418
       r8: 0x00007fff7a8b5fb8   r9: 0x00007fff63afeea8  r10: 0x00007fff8d41ed0a  r11: 0xffffff80002da8d0
      r12: 0x00007f9e121198a0  r13: 0x0000000000000007  r14: 0x00007fff7a8b8960  r15: 0x00007fff63aff590
      rip: 0x00007fff8d41ece2  rfl: 0x0000000000000246  cr2: 0x0000000107b10000
    Logical CPU: 0
    Binary Images:
           0x103f01000 -        0x103f01fff  com.apple.Safari (5.1.6 - 7534.56.5) <C1A60C3B-9DA6-3FE7-87BA-6B09016A39A9> /Applications/Safari.app/Contents/MacOS/Safari
           0x103f07000 -        0x1043a1ff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x1046be000 -        0x10494dfff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x1049ff000 -        0x104b81ff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x104c71000 -        0x104e4afff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x104fae000 -        0x105f53ff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
        0x7fff63b01000 -     0x7fff63b35baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff89ca4000 -     0x7fff89cc3fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff89cc4000 -     0x7fff89cc9fff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff89cdb000 -     0x7fff89dddfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff89dde000 -     0x7fff89e2aff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89e70000 -     0x7fff89e94fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff89e95000 -     0x7fff89ea3ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff89edf000 -     0x7fff89f33ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff89f34000 -     0x7fff89f54fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89f5a000 -     0x7fff8a0f9ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8a0fa000 -     0x7fff8a0fafff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a0fb000 -     0x7fff8a414fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8a415000 -     0x7fff8a454ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a56c000 -     0x7fff8a888fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8a9d3000 -     0x7fff8a9deff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8aa1e000 -     0x7fff8aa30ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8abbd000 -     0x7fff8b084fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8b085000 -     0x7fff8b08bfff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b08c000 -     0x7fff8bc92ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8bd68000 -     0x7fff8bd75fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8bd76000 -     0x7fff8be55ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8be5d000 -     0x7fff8be5dfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8becc000 -     0x7fff8beccfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8becd000 -     0x7fff8beceff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8becf000 -     0x7fff8bf65ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8bf75000 -     0x7fff8c19ffe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c1a0000 -     0x7fff8c1a3fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8c1c5000 -     0x7fff8c200fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8c201000 -     0x7fff8c21efff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8c21f000 -     0x7fff8c54bff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8c54c000 -     0x7fff8c54cfff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8c54d000 -     0x7fff8c6a6fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c6a7000 -     0x7fff8c6fffff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8caf8000 -     0x7fff8caf8fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8cbf7000 -     0x7fff8cbf9fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8cbfa000 -     0x7fff8cd06fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8cd15000 -     0x7fff8cd29ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d406000 -     0x7fff8d407ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8d408000 -     0x7fff8d428fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8d429000 -     0x7fff8d42dff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d4c1000 -     0x7fff8d4c4ff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8d4d4000 -     0x7fff8d4d9fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8d4e7000 -     0x7fff8d512ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff8d54d000 -     0x7fff8d55bfff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d55c000 -     0x7fff8d845ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d992000 -     0x7fff8daabfff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8daec000 -     0x7fff8db40fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8db44000 -     0x7fff8dc28e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8dd6c000 -     0x7fff8e275ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8e276000 -     0x7fff8e6a3fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8e71b000 -     0x7fff8e7a0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e7fb000 -     0x7fff8e931fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8ee83000 -     0x7fff8ee87fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8ee88000 -     0x7fff8f46cfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8f46f000 -     0x7fff8f495fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8f55e000 -     0x7fff8f59eff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8f5a1000 -     0x7fff8f67efef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8f6e0000 -     0x7fff8f7d5fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff8f81a000 -     0x7fff8f85cff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8f85d000 -     0x7fff8f8c6fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8f8c7000 -     0x7fff8f8f2ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f8f3000 -     0x7fff8f8f4fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff8f8f5000 -     0x7fff8f98fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f990000 -     0x7fff8f9ecff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8f9ed000 -     0x7fff8fa4dfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8fa4e000 -     0x7fff8fa63fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8fa64000 -     0x7fff8fa6afff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8fa6b000 -     0x7fff8fa78ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
        0x7fff8fadb000 -     0x7fff8fb1cfff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8fb1d000 -     0x7fff8fb46fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8fb47000 -     0x7fff8fb5dff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8fb5e000 -     0x7fff8fb64fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8fb65000 -     0x7fff8fb6eff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8fcdc000 -     0x7fff8fd0cff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8fd0d000 -     0x7fff8fd1bfff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8fdc1000 -     0x7fff8fdeefe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
        0x7fff8fe02000 -     0x7fff8fe07ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8fe08000 -     0x7fff8fe31fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff90655000 -     0x7fff9068ffe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90690000 -     0x7fff9069dfff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9069e000 -     0x7fff9069fff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff906a0000 -     0x7fff906a6ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff90707000 -     0x7fff90709fff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff9070a000 -     0x7fff9071aff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9071b000 -     0x7fff9071cfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff90784000 -     0x7fff90784fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff90785000 -     0x7fff907a1ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff907a2000 -     0x7fff907b5ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff908bc000 -     0x7fff9092ffff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff90930000 -     0x7fff90931fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90960000 -     0x7fff909a0fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff90cf5000 -     0x7fff90d07ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff90d08000 -     0x7fff90d0aff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff9109f000 -     0x7fff91152ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff91153000 -     0x7fff9125afe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff912d8000 -     0x7fff912dffff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff91603000 -     0x7fff916e7fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff916e8000 -     0x7fff91731ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff91732000 -     0x7fff917a2fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff91837000 -     0x7fff918adfff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff918ae000 -     0x7fff918e1ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff918e4000 -     0x7fff918effff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff91b83000 -     0x7fff91df6fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff91df7000 -     0x7fff91e6dfff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff922ab000 -     0x7fff922c2fff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff928df000 -     0x7fff929a6ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff92d14000 -     0x7fff92d23ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff92d24000 -     0x7fff92e8bfff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff92e8c000 -     0x7fff92e91fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff92e92000 -     0x7fff92e95fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff93391000 -     0x7fff933d0fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff933d1000 -     0x7fff93d6ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff93d6f000 -     0x7fff93d79ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff93dcc000 -     0x7fff93e6dff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff93e6e000 -     0x7fff93e97ff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff93e98000 -     0x7fff93f9dfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93f9e000 -     0x7fff93fa0fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff93fc4000 -     0x7fff94006fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff94007000 -     0x7fff940a9fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff940ae000 -     0x7fff94100ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff94101000 -     0x7fff94136fff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff94137000 -     0x7fff9413efff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff9413f000 -     0x7fff9416cff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff9416d000 -     0x7fff9416efff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff9416f000 -     0x7fff94193fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9468f000 -     0x7fff94863ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff94864000 -     0x7fff94881ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff94882000 -     0x7fff948edff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff948ee000 -     0x7fff94993fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff94994000 -     0x7fff949e2fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff94b64000 -     0x7fff94b64fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff94b96000 -     0x7fff94b9efff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff94b9f000 -     0x7fff94c01ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff94c02000 -     0x7fff94c02fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff94c0c000 -     0x7fff94c22fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff94c23000 -     0x7fff94c8bff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <C6703B2E-62F2-37C4-A4DE-28AF9C81CB44> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff94cd7000 -     0x7fff94ed9fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff94ee2000 -     0x7fff94ee7fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff94fd3000 -     0x7fff9504eff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff95257000 -     0x7fff9525eff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff95a41000 -     0x7fff95ac5ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff95ad2000 -     0x7fff95ae9fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff95aea000 -     0x7fff95b6dfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff95b6e000 -     0x7fff95b79ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff968df000 -     0x7fff968eefff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff968ef000 -     0x7fff96917fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96918000 -     0x7fff96918fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff9693c000 -     0x7fff96942fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff96943000 -     0x7fff96948fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff96975000 -     0x7fff96978fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff96979000 -     0x7fff9697dfff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff9697e000 -     0x7fff96a8bfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        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: 2759
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=185.6M resident=130.4M(70%) swapped_out_or_unallocated=55.2M(30%)
    Writable regions: Total=1.1G written=4352K(0%) resident=5336K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                       96K
    CoreServices                         1060K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               43.1M
    MALLOC guard page                      48K
    SQLite page cache                     288K
    STACK GUARD                          56.0M
    Stack                                10.5M
    VM_ALLOCATE                            64K
    __CI_BITMAP                            80K
    __DATA                               15.8M
    __IMAGE                               528K
    __LINKEDIT                           59.9M
    __RC_CAMERAS                          248K
    __TEXT                              125.7M
    __UNICODE                             544K
    mapped file                          24.7M
    shared memory                         312K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      338.9M
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f98
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.4.20)
    Bluetooth: Version 4.0.5f11, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9A302, 320.07 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    https://discussions.apple.com/message/19168424#19168424

  • My notes has crashed.  i made a guest account and it is fine there.  Here is the info on the crash screen.  Please help, Process:         Notes [377] Path:            /Applications/Notes.app/Contents/MacOS/Notes Identifier:      com.apple.Notes Version:

    My notes has crashed and here is the printout.  It works fine in a guest account I created.
    Please help
    Process:         Notes [377]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.5 (107)
    Build Info:      Notes-107000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    User ID:         501
    Date/Time:       2013-08-18 22:07:25.392 -0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8448 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  34 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      14E94F91-30E8-3221-31AA-EC9E86F52275
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000010e6a2710 objc_msgSend_vtable13 + 16
    1   com.apple.CoreFoundation                0x000000010e8fd1de +[__NSArrayI __new:::] + 174
    2   com.apple.CoreFoundation                0x000000010e8694d3 -[NSArray initWithObjects:] + 707
    3   com.apple.WebKit                        0x000000010e425035 -[WebHTMLView(WebPrivate) _setAsideSubviews] + 133
    4   com.apple.WebKit                        0x000000010e4251eb -[WebHTMLView drawRect:] + 363
    5   com.apple.Notes                         0x000000010dbdcc04 0x10dbc4000 + 101380
    6   com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    7   com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    8   com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    9   com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    10  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    11  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    12  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    13  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    14  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    17  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    18  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    19  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    20  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    21  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    22  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    23  com.apple.AppKit                        0x000000010f731322 -[NSAnimationManager animationTimerFired:] + 2256
    24  com.apple.Foundation                    0x000000010ebad463 __NSFireTimer + 96
    25  com.apple.CoreFoundation                0x000000010e835804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    26  com.apple.CoreFoundation                0x000000010e83531d __CFRunLoopDoTimer + 557
    27  com.apple.CoreFoundation                0x000000010e81aad9 __CFRunLoopRun + 1529
    28  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    29  com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    30  com.apple.Notes                         0x000000010dbe9d3e 0x10dbc4000 + 154942
    31  com.apple.Notes                         0x000000010dbe9b55 0x10dbc4000 + 154453
    32  com.apple.Notes                         0x000000010dbe9528 0x10dbc4000 + 152872
    33  com.apple.Notes                         0x000000010dbe9591 0x10dbc4000 + 152977
    34  com.apple.Notes                         0x000000010dbdc9e8 0x10dbc4000 + 100840
    35  com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    36  com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    37  com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    38  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    39  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    40  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    41  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    42  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    43  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    44  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    45  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    46  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    47  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    48  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    49  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    50  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    51  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    52  com.apple.AppKit                        0x000000010f7b81cc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    53  com.apple.AppKit                        0x000000010fd83901 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    54  com.apple.CoreFoundation                0x000000010e83f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    55  com.apple.CoreFoundation                0x000000010e83f381 __CFRunLoopDoObservers + 369
    56  com.apple.CoreFoundation                0x000000010e81a7b8 __CFRunLoopRun + 728
    57  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    58  com.apple.HIToolbox                     0x00000001113ceeb4 RunCurrentEventLoopInMode + 209
    59  com.apple.HIToolbox                     0x00000001113ceb94 ReceiveNextEventCommon + 166
    60  com.apple.HIToolbox                     0x00000001113ceae3 BlockUntilNextEventMatchingListInMode + 62
    61  com.apple.AppKit                        0x000000010f7b5533 _DPSNextEvent + 685
    62  com.apple.AppKit                        0x000000010f7b4df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    63  com.apple.AppKit                        0x000000010f7ac1a3 -[NSApplication run] + 517
    64  com.apple.AppKit                        0x000000010f750bd6 NSApplicationMain + 869
    65  libdyld.dylib                           0x0000000110a177e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000110bedd16 kevent + 10
    1   libdispatch.dylib                       0x00000001109e0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001109e09ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd84dc4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x000000010dd839e8 -[IMAPConnection _authenticateWithAuthenticator:] + 197
    8   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    10  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    11  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    12  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    13  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    14  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    15  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    17  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd83039 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 262
    7   com.apple.IMAP                          0x000000010dd82c30 -[IMAPConnection capabilities] + 33
    8   com.apple.IMAP                          0x000000010dd839d0 -[IMAPConnection _authenticateWithAuthenticator:] + 173
    9   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    11  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    12  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    13  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    14  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    15  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x000000010eb6d1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x000000010dc40d57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd84f8f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x000000010dd765ae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x000000010eb70453 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.Notes                         0x000000010dbc9cf0 0x10dbc4000 + 23792
    4   com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x000000010ec1c2a7 -[_NSCFURLProtocolBridgeWithTrampoline processEventQ] + 279
    7   com.apple.Foundation                    0x000000010ec1c8b8 -[_NSCFURLProtocolBridgeWithTrampoline pushEvent:from:] + 180
    8   com.apple.Foundation                    0x000000010ec1d0aa -[_NSCFURLProtocolBridge start] + 98
    9   com.apple.Foundation                    0x000000010ec1e09c _bridger + 65
    10  com.apple.CFNetwork                     0x0000000112384376 URLProtocol_Classic::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 74
    11  com.apple.CFNetwork                     0x000000011232b589 ___private_ScheduleOriginLoad_block_invoke_0108 + 157
    12  com.apple.CFNetwork                     0x000000011232b4ba __withExistingProtocolAsync_block_invoke_0 + 28
    13  com.apple.CFNetwork                     0x00000001123caf3a __block_global_1 + 28
    14  com.apple.CoreFoundation                0x000000010e816154 CFArrayApplyFunction + 68
    15  com.apple.CFNetwork                     0x000000011232b2b4 RunloopBlockContext::perform() + 124
    16  com.apple.CFNetwork                     0x000000011232b18b MultiplexerSource::perform() + 221
    17  com.apple.CoreFoundation                0x000000010e7f7b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation                0x000000010e7f7455 __CFRunLoopDoSources0 + 245
    19  com.apple.CoreFoundation                0x000000010e81a7f5 __CFRunLoopRun + 789
    20  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    21  com.apple.Foundation                    0x000000010eb71546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    22  com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    23  libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    24  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000110bed322 __select + 10
    1   com.apple.CoreFoundation                0x000000010e859f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001173cfb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001175f2bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 17:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.QuartzCore                    0x000000010f17f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x000000010f203dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd8310b -[IMAPConnection executeCapability:] + 42
    17  com.apple.IMAP                          0x000000010dd79bc8 -[IMAPClientCapabilityOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x3000000000000000  rbx: 0x00007f7ffe8b7390  rcx: 0x3000000000000000  rdx: 0x000000010ea1a180
      rdi: 0x00007f7ffd6b21d0  rsi: 0x000000010e9e5640  rbp: 0x00007fff52031600  rsp: 0x00007fff520315b8
       r8: 0x000000011aebaa00   r9: 0x000000010e9ff4d0  r10: 0x00007f7ffbc19d30  r11: 0x00007f7ffe8b7380
      r12: 0x0000000000000001  r13: 0x00007fff52031610  r14: 0x000000010ea14110  r15: 0x00007f7ffd6b21d0
      rip: 0x000000010e6a2710  rfl: 0x0000000000010246  cr2: 0x00007f7ffe8eb0af
    Logical CPU: 0
    Binary Images:
           0x10dbc4000 -        0x10dc07fff  com.apple.Notes (1.5 - 107) <69EAB705-A00B-3584-91C6-F532B94806F9> /Applications/Notes.app/Contents/MacOS/Notes
           0x10dc2d000 -        0x10dc2efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10dc3a000 -        0x10dc3afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10dc3e000 -        0x10dcf6fff  com.apple.CoreMessage (6.5 - 1508) <E05A89F9-46AB-310C-B147-8B1E89C5A565> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
           0x10dd71000 -        0x10ddd0fff  com.apple.IMAP (6.5 - 1508) <42C96BC0-5E8B-38CC-BA03-BE32A7115521> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
           0x10de10000 -        0x10de4afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10de7f000 -        0x10deedff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10df1e000 -        0x10df60ff7  com.apple.Notes.framework (1.5 - 107) <A665344C-A62E-33EE-A0F3-66959EB4D12E> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10df96000 -        0x10df96fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10df99000 -        0x10e26aff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e39e000 -        0x10e3d2fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10e403000 -        0x10e403fff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
           0x10e408000 -        0x10e40afff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10e40f000 -        0x10e59afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10e690000 -        0x10e691ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
           0x10e69b000 -        0x10e7b392f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10e7d3000 -        0x10e7d5fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10e7da000 -        0x10e7dafff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e7de000 -        0x10e7e0fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e7e5000 -        0x10e9cfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eb33000 -        0x10eb33fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10eb39000 -        0x10ee98fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10f0bb000 -        0x10f0bdfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10f0c2000 -        0x10f270fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f329000 -        0x10f55eff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f660000 -        0x11028dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110982000 -        0x110984fff  pwauxprop.so (387.2) <F29F2067-8A39-3BDC-B1CA-9FC7C3470675> /usr/lib/sasl2/pwauxprop.so
           0x110989000 -        0x11098efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x110993000 -        0x110995fff  smb_nt.so (169) <757409B3-32F6-3FA1-97A4-92FEEF9FD624> /usr/lib/sasl2/smb_nt.so
           0x11099a000 -        0x1109a8fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x1109b5000 -        0x1109b5ff7  com.apple.SafariServices.framework (8536 - 8536.30.1) <2EB5365E-7D56-3283-89BB-AF6ED10F6D73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
           0x1109bb000 -        0x1109c0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x1109c8000 -        0x1109cffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x1109d6000 -        0x1109d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x1109dc000 -        0x1109f1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x110a0a000 -        0x110a0bff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x110a15000 -        0x110a18ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x110a1f000 -        0x110a1ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x110a25000 -        0x110a2dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x110a37000 -        0x110a3dfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x110a45000 -        0x110a47fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x110a4c000 -        0x110a4dfff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
           0x110a53000 -        0x110a54ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110a5a000 -        0x110a5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110a62000 -        0x110b2eff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110b77000 -        0x110b7fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110b8b000 -        0x110bc1ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
           0x110bdb000 -        0x110bf6ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x110c09000 -        0x110c37ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
           0x110c46000 -        0x110c54ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
           0x110c66000 -        0x110c71fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110c81000 -        0x110c82ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x110c8d000 -        0x110c8fff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
           0x110c96000 -        0x110c9cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x110ca8000 -        0x110ccaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110ce9000 -        0x110d38ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x110d49000 -        0x110d95ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x110db2000 -        0x110dd7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x110e0a000 -        0x110e72ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
           0x110ecb000 -        0x110f0eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110f46000 -        0x111098fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x111128000 -        0x111128ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x111132000 -        0x11119fff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1111dc000 -        0x1112fcfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11136f000 -        0x11169ffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1117fa000 -        0x111804fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11180e000 -        0x111810fff  com.apple.Notes.webplugin (1.5 - 107) <F7192C71-204F-312E-94F1-50E701287E91> /Applications/Notes.app/Contents/PlugIns/Notes.webplugin/Contents/MacOS/Notes
           0x111815000 -        0x111a15fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x111abb000 -        0x111bb8ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
           0x111bf1000 -        0x111c03ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x111c09000 -        0x111c0aff7  ATSHI.dylib (341.1) <6852B534-7542-338A-903F-26615745901F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x111c0f000 -        0x111cd4ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111d4a000 -        0x111dadff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x111dd4000 -        0x111ddafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111de8000 -        0x111de9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111def000 -        0x111e05fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111e15000 -        0x111e3cff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x111e5f000 -        0x111e76fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x111e87000 -        0x111e96fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x111ea0000 -        0x111f72ff7  com.apple.CoreText (260.0 - 275.16) <990F3C7D-EEF1-33C4-99D6-8E81C96ED3E3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111fd9000 -        0x1120f2fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112151000 -        0x11222bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1122ae000 -        0x112423ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1124e7000 -        0x112538ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x11256d000 -        0x11258eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
           0x11259e000 -        0x1125a2ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1125ac000 -        0x112615fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x112681000 -        0x112694ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1126a0000 -        0x11279dfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x1127b8000 -        0x1127c7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
           0x1127d3000 -        0x1127d7fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x1127e1000 -        0x1127e1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x1127e5000 -        0x1127f2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x1127fc000 -        0x112b13ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b92000 -        0x112c13fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c6d000 -        0x112d13ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d7a000 -        0x112e07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112e4e000 -        0x112eadfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112eda000 -        0x112f8bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fe4000 -        0x113015ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x11303b000 -        0x113042fff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113049000 -        0x113057ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x113061000 -        0x11306eff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x113080000 -        0x113097fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1130b3000 -        0x1130defff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x1130ee000 -        0x113115fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x113136000 -        0x1131d4ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113208000 -        0x113b984af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x113ca0000 -        0x113d20ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113d52000 -        0x113e0fff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113e55000 -        0x113eabfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ee1000 -        0x113ef4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113f08000 -        0x113f62fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113f96000 -        0x113fd5ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/Ap

    Here goes:
    Hardware Information:
              MacBook Pro (Retina, 13-inch, Early 2013)
              MacBook Pro - model: MacBookPro10,2
              1 3 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 1:25:41
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (458.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              SlingPlayer.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   1%          Mail
                   0%          Safari
                   0%          ManagedClient
                   0%          WebProcess
                   0%          SystemUIServer
                   0%          System Events
                   0%          configd
    Top Processes by Memory:
              352 MB             Finder
              319 MB             WebProcess
              213 MB             Mail
              213 MB             Safari
              164 MB             WindowServer
              115 MB             Dock
              106 MB             Messages
              66 MB              mds
              57 MB              SystemUIServer
              49 MB              com.apple.dock.extra
    Virtual Memory Statistics
              3.96 GB            Free RAM
              2.18 GB            Active RAM
              256 MB             Inactive RAM
              1.60 GB            Wired RAM
              198 MB             Page-ins
              0 B                Page-outs

  • Provider-hosted Apps debug error: The remote server returned an error: (401) unauthorised

    Hi,
    Any help appreciated!!
    I'm getting this error: "The remote server returned an error: (401) unauthorised when I debug a provider-hosted app.  I get the error on this line:  
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    See code below
    I created a high trust development environment following the instructions provided here:
    http://msdn.microsoft.com/en-us/library/office/fp179901(v=office.15).aspx and
    http://msdn.microsoft.com/library/office/fp179923
    I created a provider-hosted app with the intent to:
    create a SharePoint list in the appweb
    Use self-signed certificate, tokenhepler.cs and sharepointcontext.cs to retrieve current user context and access on SharePoint.  (No changes were made to tokenhelper.cs and sharepointcontext.cs)
    retrieve list items from the SharePoint list in a button click event handler on a default.aspx of the remote web
    What happens:
    The app is deployed successfully to the Dev site
    The SharePoint feature is deployed and activated
    The default.aspx page of the remote web loads
    The error (see image) is returned on clicking of the button
    My environment is an on-premise SharePoint 2013 with AD and my dev box is standalone windows 8.1 running Visual Studio Professional 2013 Update 3.
    The code block below is a copy of the default.aspx code-behind
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Microsoft.SharePoint.Client;
    using Microsoft.IdentityModel.S2S.Tokens;
    using System.Net;
    using System.IO;
    using System.Xml;
    using System.Data;
    using System.Xml.Linq;
    using System.Xml.XPath;
    namespace Idea.GeneratorWeb
    public partial class Default : System.Web.UI.Page
    SharePointContextToken contextToken;
    string accessToken;
    Uri sharepointUrl;
    protected void Page_PreInit(object sender, EventArgs e)
    Uri redirectUrl;
    switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
    case RedirectionStatus.Ok:
    return;
    case RedirectionStatus.ShouldRedirect:
    Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
    break;
    case RedirectionStatus.CanNotRedirect:
    Response.Write("An error occurred while processing your request.");
    Response.End();
    break;
    protected void Page_Load(object sender, EventArgs e)
    //// The following code gets the client context and Title property by using TokenHelper.
    //// To access other properties, the app may need to request permissions on the host web.
    var spContext = SharePointContextProvider.Current.GetSharePointContext(Context);
    //var spContext = new ClientContext("MySPDevInstance");
    //spContext.Credentials = new NetworkCredential("username", "password");
    //using (var clientContext = spContext.CreateUserClientContextForSPHost())
    // clientContext.Load(clientContext.Web, web => web.Title);
    // clientContext.ExecuteQuery();
    // Response.Write(clientContext.Web.Title);
    string contextTokenString = TokenHelper.GetContextTokenFromRequest(Request);
    if (contextTokenString != null)
    // Get context token
    contextToken = TokenHelper.ReadAndValidateContextToken(contextTokenString, Request.Url.Authority);
    // Get access token
    sharepointUrl = new Uri(Request.QueryString["SPAppWebUrl"]);
    accessToken = TokenHelper.GetAccessToken(contextToken, sharepointUrl.Authority).AccessToken;
    // Pass the access token to the button event handler.
    Button1.CommandArgument = accessToken;
    protected void Button1_Click(object sender, EventArgs e)
    // Retrieve the access token that the Page_Load method stored
    // in the button's command argument.
    string accessToken = ((Button)sender).CommandArgument;
    if (IsPostBack)
    sharepointUrl = new Uri(Request.QueryString["SPAppWebUrl"]);
    // REST/OData URL section
    string oDataUrl = "/_api/Web/lists/getbytitle('Diagrams In Idea Generator')/items?$select=Title,Diagram,SharingStatus";
    // HTTP Request and Response construction section
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(sharepointUrl.ToString() + oDataUrl);
    request.Method = "GET";
    request.Accept = "application/atom+xml";
    request.ContentType = "application/atom+xml;type=entry";
    request.Headers.Add("Authorization", "Bearer " + accessToken);
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    // Response markup parsing section
    XDocument oDataXML = XDocument.Load(response.GetResponseStream(), LoadOptions.None);
    XNamespace atom = "http://www.w3.org/2005/Atom";
    XNamespace d = "http://schemas.microsoft.com/ado/2007/08/dataservices";
    XNamespace m = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
    List<XElement> entries = oDataXML.Descendants(atom + "entry")
    .Elements(atom + "content")
    .Elements(m + "properties")
    .ToList();
    var entryFieldValues = from entry in entries
    select new
    Character = entry.Element(d + "Title").Value,
    Actor = entry.Element(d + "Diagram").Value,
    CastingStatus = entry.Element(d + "SharingStatus").Value
    GridView1.DataSource = entryFieldValues;
    GridView1.DataBind();
    Any ideas what I might be doing wrong

    Hi ,
    Use the below code
    Public string GetAccessToken(){
    string sharePointSiteUrlHost =  Page.Request["SPHostUrl"].Tostring();
    string AccessToken = tokenHelper.GetS2SAccessTokenWithWindowsIdentity(sharePointSiteUrlHost, Request.LogonUserIdentity);
    return accessToken;
    Than initialize the ClientCOntext with the below Method
     private static ClientContext GetClientContextWithAccessTokenString(string targetUrl, object accessToken)
                ClientContext clientContext = new ClientContext(targetUrl);
                clientContext.AuthenticationMode = ClientAuthenticationMode.Anonymous;
                clientContext.FormDigestHandlingEnabled = false;
                clientContext.ExecutingWebRequest +=
                    delegate(object oSender, WebRequestEventArgs webRequestEventArgs)
                        webRequestEventArgs.WebRequestExecutor.WebRequest.UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
                        webRequestEventArgs.WebRequestExecutor.RequestHeaders["Authorization"] =
                            "Bearer " + accessToken;
                return clientContext;
    use this clientCOntext and it will work.
    Do not use
    SharePointContextProvider
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • "Exception Processing Message" error when clicking the Accessing Server Data link on the start page

    When I first started the application, I click the Accessing Server Data link on the start page.  I immediately got the error "Exception Processing Message c0000013 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c in a dialog box titled "Windows - No Disk".  I had to used Task Manager to remove the box after closing Flash Builder 4.  I then tried the video tutorial on "PHP Services in Flash Builder 4".  I keep receiving an error during service introspection trying to connect to the PHP class.  It was the same error as the other individual "Cannot Connect to PHP Service".  So I tried another tutorial and generated a sample PHP class.  I moved a datagrid on to the stage, droped in the getAllItems function, and configured the return type.  However, when I ran the app, I received the same error "Exception Processing Message" again.  I have attached the screenshot of the error in addition to my phpinfo and log files.

    "The exception process message" is definitely a issue. Is it happening consistently, if so can you file a bug at bugs.adobe.com/flex and give out your machine config details, and the error log.
    With regards to generating a new php file and the introspection error that you are getting, looking at the logs it probably is two fold.
    First off the name of the file and the class name should be the same, are you having employeeServices as the name of the class in employeeServices.php file.
    Second, It seems prior to generating this new file, you had a syntax error at line 5.
    It would be easier to figure out what the error is, if you can also attach the php file, by removing any sensitive information in that.
    Hope this helps.
    Thanks
    -Sunil

Maybe you are looking for