Table Security

Hello.
I am looking for a way to implement security on a database table, in a way that a user can only update a specific column but not the others. On the other columns the user should have read-only access.
If you 've ever faced such a situation previously i kindly ask for your help.

Thank you for your response, Andrew.
Unfortunately, i am still on Oracle 9i so i guess that your second option might do the trick but it's rather difficult to implement so i think i should go for a database upgrade before i apply column-level security.

Similar Messages

  • External Table Security with OBIEE 11G is not working properly.

    Hello Everyone,
    we just upgraded for OBIEE from 10G to 11G.
    not what we had in 10G for object level and data level security is that we were using "External table" and LDAP Authentication.
    Now for User we are capturing Groups in that table, so basically we have Group-level security.
    so in that case we are creating Groups in External Table, RPD & Catalog.
    Now we upgraded OBIEE to 11G, there we have totally different concept for security.
    So here in what we have to do to implement the same concept. because we have created the Application Roles in Admin Console and Groups in Enterprise Manager with same name, and assigned same Groups to same Application Role.
    now while applying security in frontend we can catalog groups options too!!! so do we have to create the same groups in catalog too?? and while applying the security to catalog which one do we need to use? "Application Role" OR "Catalog Groups"???
    Thanking You..

    Hi,
    which version r u using? until obiee11.1.1.5 its bug but solve it by workaround method . also the bug fixed in obiee.11.1.1.6
    11700314 REPORT NOT EXPORTED FULLY INTO EXCEL WHEN DOWNLOADING FROM PAGES OTHER THAN 1
    1) stop it all u r bi serivices then take a back of u original instanconfig.xml file then do the below changes
    D:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1
    instanceconfig.xml
    just add below content then
    <Views>
    <Pivot>
    <MaxCells>6500000</MaxCells>
    <MaxVisibleColumns>100</MaxVisibleColumns>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>
    </Pivot>
    <Table>
    <MaxCells>6500000</MaxCells>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
    </Table>
    </Views>
    Restart all u r bi services..
    then test it out.
    Thanks
    Deva

  • Table security concerns with form on intranet

    We are trying to maintain database security for forms that run
    on the intranet. The first line of security is to require all
    users to logon to the application. The main concern is the
    database user being asscessed without the application. Here are
    the current ideas:
    The easiest solution would be to hide the user/password
    information on the html that launches the form, however (to my
    knowledge) this is not possible.
    I moved the table containing application users passwords to a
    second user (db user) and am using a function to validate logon
    information. This works great, the problem is where to put the
    actual data tables user by the application. If they are in the
    first user which the form logs into by default then a "curious"
    person may access the tables via a sql session using the
    user/password from the html. The best thing I can come up with
    is to put the data tables in the second user containing the
    logon password table, however if the grants exist for the user
    that the form defaults to we have the same problem.
    Dynamic grants would be perfect however you can not create
    grants with the logon function.
    Any input would be greatly appreciated.
    -Doug
    null

    You can mantain this table in a separate user (administrative
    user) and create a function under this user to validate
    user and password. Grant privilege for the users to execute
    this function, but not to select the table. In this way, any
    user can execute this function but cannot query the table.
    The only one allowed to query and update this table is the
    owner. Based on Oracle concepts, if the user has rights to
    execute a function or procedure, he automatically has implicit
    rights to the objects being accessed by this function or
    procedure. But to access these implicit objects directly,
    he must have specific rights. I hope this can help you.
    null

  • Select from nested table in a nested table security problem

    please help
    running Oracle 9.2.0.3.0 on RH AS 2.1
    I can select the inner most nested table as the creator, but can't use the same select statement as USER2.
    ORA-00942: table or view does not exist
    -- begin make of objects and tables
    create or replace type mydata_t as object ( x float, y float);
    create or replace type mydata_tab_t as table of mydata_t;
    create or replace type mid_t as object (
         graphname varchar2(12),
         datapoints mydata_tab_t );
    create or replace type mid_tab_t as table of mid_t;
    create or replace type top_t as object (
         someinfo int,
         more_mid     mid_tab_t );
    create table xyz (
         xyzPK int,
         mainstuff     top_t )
         nested table mainstuff.more_mid store as mid_nt_tab
              (nested table datapoints store as mydata_nt_tab)
    -- grants
    grant all on mydata_t to user2;
    grant all on mydata_tab_t to user2;
    grant all on mid_t to user2;
    grant all on mid_tab_t to user2;
    grant all on top_t to user2;
    grant all on xyz to user2;
    -- insert
    insert into xyz values (1, top_t(22,mid_tab_t(mid_t('line1',mydata_tab_t(
    mydata_t(0,0),
    mydata_t(15,15),
    mydata_t(30,30))))));
    commit;
    -- select fails as user2
    select * from table(select Y.datapoints as DP_TAB
         from table(select X.mainstuff.more_mid as MORE_TAB
              from scott.xyz X
              where X.xyzPK=1) Y
         where Y.graphname='line1') Z;
    -- select works as user2, but i need individual lines
    select Y.datapoints as DP_TAB
         from table(select X.mainstuff.more_mid as MORE_TAB
              from scott.xyz X
              where X.xyzPK=1) Y
         where Y.graphname='line1';

    Thank you for your reply.
    I have tried
    select value(t) from table t;
    but it is still not working. I got almost the same answer as before.
    Anyway thank you very much again.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by MARCELO OCHOA ([email protected]):
    Originally posted by meimei wu ([email protected]):
    [b]I created a nested object-relational table using REF type in oracle8i. when I tried to select * from the table, I got lots of number as the ref type values, but actually, the value in ref type should be of type varchar2 and number. The number I got looked like following code:
    JARTICLE_REF_TYPE(000022020876108427C2FE0D00E0340800208FD71F76103B99B12009C0E0340800208FD71F,
    Does anyone know how I can get the actual value that I inserted into the nested table?
    your help is appreciated.<HR></BLOCKQUOTE>
    Try this:
    select value(t) from table t;
    Best regards, Marcelo.
    null

  • DB Adapter wizard – WHERE clause on parent and child tables not working.

    I have two tables, SECURITY and SECURITY_POSITIONS, where SECURITY has a 1:M relationship with SECURITY_POSITIONS. I used the DB-adapter wizard to create the relationship and the following WHERE clause expression which is looking at both the parent and the child tables;
    The expression builder looks like this:
    AND
    |--- 1. partitionKey EQUAL p_SearchKey
    |--- 2. securityType EQUAL “DBT”
    |--- 3. securityPositionsCollection.dealReference EQUAL “NA”
    The primary key on SECURITY = PARTITION_KEY and SECURITY_REFERENCE
    The foreign key from SECURITY_POSITIONS to SECURITY = PARTITION_KEY and SECURITY_REFERENCE
    securityType is on SECURITY table (master)
    securityPositionsCollection.dealReference is on SECURITY_POSITIONS table (child)
    The invoke on the database adapter is selecting a row in securityPositionsCollection for each child row, rather than just those with dealReference = “NA”!
    I turned on DEBUG logging in the BPEL console and I can see that there are 2 SELECT queries run (guess this is how Toplink does it!), where the 1st query appears to select the parent rows and the 2nd query selects the child rows.
    However the 2nd query is not working because it is failing to select only those child rows where dealReference = “NA”. Also, don’t know why the 2nd SELECT query needs to specify the child SECURITY_POSITIONS table twice in the FROM clause, because that seems to be causing the problem.
    1st query executed is as follows;
    SELECT DISTINCT t0.PARTITION_KEY, t0.SECURITY_REFERENCE, t0.SECURITY_TYPE
    FROM CENTRAL.SECURITY t0, CENTRAL.SECURITY_POSITIONS t1
    WHERE ((((t0.PARTITION_KEY = ?) AND (t0.SECURITY_TYPE = ?)) AND (t1.DEAL_REFERENCE = ?)) AND ((t1.SECURITY_REFERENCE = t0.SECURITY_REFERENCE) AND (t1.PARTIT
    ION_KEY = t0.PARTITION_KEY)))
    bind => [200706200000, DBT, NA]
    2nd query executed is as follows, where child table appears twice! ;
    SELECT DISTINCT t0.DEAL_REFERENCE, t0.PARTITION_KEY, t0.SECURITY_REFERENCE
    FROM CENTRAL.SECURITY_POSITIONS t0,
    CENTRAL.SECURITY_POSITIONS t2,
    CENTRAL.SECURITY t1
    WHERE ((((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND (t0.PARTITION_KEY = t1.PARTITION_KEY)) AND
    (((t1.PARTITION_KEY = ?) AND (t1.SECURITY_TYPE = ?)) AND
    (t2.DEAL_REFERENCE = ?))) AND
    ((t2.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND
    (t2.PARTITION_KEY = t1.PARTITION_KEY)))
    bind => [200706200000, DBT, NA]
    Anyone experienced the same problem e.g. why is toplink making the query more complicated that it needs to be, because the query only needs to reference the SECURITY_POSITIONS table once, as follows;
    SELECT DISTINCT t0.DEAL_REFERENCE, t0.PARTITION_KEY, t0.SECURITY_REFERENCE
    FROM CENTRAL.SECURITY_POSITIONS t0,
    CENTRAL.SECURITY t1
    WHERE ((((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND (t0.PARTITION_KEY = t1.PARTITION_KEY)) AND
    (((t1.PARTITION_KEY = '200706200000') AND (t1.SECURITY_TYPE = 'DBT')) AND
    (t0.DEAL_REFERENCE = 'NA'))) AND
    ((t0.SECURITY_REFERENCE = t1.SECURITY_REFERENCE) AND
    (t0.PARTITION_KEY = t1.PARTITION_KEY)))

    Hello,
    It looks like you have configured your 1:M relationship to use batch reading. This causes the query to bring in the Security_Position table's objects to use the same selection criteria as was used on the initial query, with a join statement. This is more efficient in most cases as it ensures only the Security_positions needed for the Security objects to be fully built are read, in a single query.
    The selection criteria added is only used to filter out the Security objects. All referenced Security_Positions must be read in for the returned Security objects so that the data matches what is in the database. If you do not want the Security_Positions, you might try using indirection on the mapping which will delay the second query until you need the Security_Positions. Or, if you want only the Security_Positions with dealReference EQUAL “NA", you could do a query specifically to filter on them.
    Best Regards,
    Chris

  • Controll of Table T090L in transaction AO25 used in FI-AA

    Hi SDN
    I am currently implementing Fixed assets and have a problem with the security on one of the key tables.
    Table T090L accesable via transaction AO25 is a table that holds production and reserve values which are input by Fiscal period / year , however the table security is not controlled via the 'posting period vaiant' control (OB52).
    The problem I have is that AO25 will allow you to change the values in prior years/periods even though those periods are now closed and the figures have been used in their appropriate calculations.
    I wish to be able to restrict periods for user change to avoid prior period adjustments in line with OB52.
    Any insight greatly appreciated
    Regards
    Mark

    Hi
    Yes - if you want to control access on line level S_TABU_DIS is the correct object.
    But please notice that this object wil require you to implement note 76329, if your going to use it in SE16 - if access is provided through SM30 (or a parameter transaction based on this t-code), this note won't be relevant.
    I have created a small How-to guide for customising S_TABU_LIN - you can find it here if interested
    http://www.mortenhjorthnielsen.dk/Security/S_TABU_LIN.htm
    Regards
    Morten Nielsen

  • Dynamic where clause, user/row security

    I haev two tables:
    create table table1(
    First_name varchar2(12),
    Last_Name varchar2(17),
    Middle_name varchar2(1),
    Cabinet varchar2(2),
    Department varchar2(3),
    Division varchar2(2),
    branch varchar2(2),
    section varchar2(2),
    unit varchar2(2),
    serial varchar2(3),
    job_title varchar2(13),
    other fields......
    create table security(
    USERname VARCHAR2(14),
    FIRST_NAME VARCHAR2(20),
    PER_CABINET VARCHAR2(2),
    PER_DEPT VARCHAR2(3),
    PER_DIVISION VARCHAR2(2),
    PER_BRANCH VARCHAR2(2),
    PER_SECTION VARCHAR2(2),
    PER_UNIT VARCHAR2(2),
    PER_SERIAL VARCHAR2(2),
    other fields....
    ****security table sample data****
    username first_name cabinet dept division branch section unit serial
    username1 firstname1 10 785 05 01 02
    username2 firstname2 32 527 02 03
    username3 firstname3 32 527 02 01
    username4 firstname4 46 546 22 06 05
    username5 firstname5 46 546 27 15 01
    username6 firstname6 10 005 01 01 01 01
    username7 firstname7 10 005 01 01 01 01
    username8 firstname8 10
    username9 firstname9 10 005
    username10 firstname10 10 005 01
    What I would like to do is, based on the values assigned to user in security table, the records from table1 should be fetched.
    For example: (lets say there are 1000 records in table 1 for cabinet 10)
    username8 should be able to see all records pertaining to cabinet 10. (record count=1000)
    Username9 should be able to see all records pertaining to cabinet 10 and dept 005 (record count=800)
    username10 should be able to see all records pertaining to cabinet 10 and dept 005 and division 01 (record count=600)
    username1 should be able to see all records pertaining to cabinet 10 and dept 785 and division 05 and branch 01 and unit 02 (record count=10)
    ....and so on
    To summarize I have to narrow down the number of records a user can see.
    I tried to implement this using set_context each for cabinet, department etc... the problem is some users may not have all the values. so my where clause fails and returns 0 rows.
    example:
    select count(1) from table1 where cabinet=(select per_cabinet from security where username='username1') and department=(select per_dept from security where username='username1') and division=(select per_division from security where username='username1') and branch=(select per_branch from security where username='username1') and section=(select per_section from security where username='username1') and unit=(select per_unit from security where username='username1');
    I would get 0 rwos because username1 does not have any value for section.
    I point to keep in mind is that not all users have same values.
    Any thoughts or ideas on how to resolve my problem? Thanks.

    By set_context, I hope you mean you are using sys_context and VPD/RLS for this filtering. For the filter condition, how about modifying each part in the form:
    unit = nvl((select per_unit from security where username = :username), unit)or
    unit = (select nvl(per_unit, unit) from security where username = :username)

  • Row leve security

    Currently, we are using a security table, which has, username, department columns. All the base tables have department column.
    We use views on top of base tables and use a where clause to link security table.
    For example:
    select name, address from table1
    WHERE dept_no in
    (SELECT dept_no FROM SECURITY_tab WHERE USERID = USER)
    This procedure is very complected especially when we have lot of tables and views.
    Can any one suggest a easy way of doing this? I was thinking OID could help me, can anyone tell me how to implement a solution in OID?
    Thanks.

    Thought this might help to resolve my problem.
    create table table1(
    First_name           varchar2(12),
    Last_Name           varchar2(17),
    Middle_name           varchar2(1),
    Cabinet               varchar2(2),
    Department          varchar2(3),
    Division          varchar2(2),
    branch               varchar2(2),
    section               varchar2(2),
    unit               varchar2(2),
    serial               varchar2(3),
    job_title          varchar2(13),
    other fields......
    create table security(
    USERname VARCHAR2(14),
    FIRST_NAME VARCHAR2(20),
    PER_CABINET VARCHAR2(2),
    PER_DEPT VARCHAR2(3),
    PER_DIVISION VARCHAR2(2),
    PER_BRANCH VARCHAR2(2),
    PER_SECTION VARCHAR2(2),
    PER_UNIT VARCHAR2(2),
    PER_SERIAL VARCHAR2(2),
    other fields....
    ****security table sample data****
    username     first_name     cabinet     dept     division     branch     section          unit     serial
    username1     firstname1      10      785      05           01                02
    username2     firstname2     32      527      02           03
    username3     firstname3     32      527      02           01
    username4     firstname4     46      546      22           06      05
    username5     firstname5     46      546      27           15      01
    username6     firstname6     10      005      01           01      01           01
    username7     firstname7     10      005      01           01      01           01
    username8     firstname8     10
    username9     firstname9     10     005
    username10     firstname10     10     005     01
    What I would like to do is, based on the values assigned to user in security table, the records from table1 should be fetched.
    For example: (lets say there are 1000 records in table 1 for cabinet 10)
    username8 should be able to see all records pertaining to cabinet 10. (record count=1000)
    Username9 should be able to see all records pertaining to cabinet 10 and dept 005 (record count=800)
    username10 should be able to see all records pertaining to cabinet 10 and dept 005 and division 01 (record count=600)
    username1 should be able to see all records pertaining to cabinet 10 and dept 785 and division 05 and branch 01 and unit 02 (record count=10)
    ....and so on
    To summarize I have to narrow down the number of records a user can see.
    I tried to implement this using set_context each for cabinet, department etc... the problem is some users may not have all the values. so my where clause fails and returns 0 rows.
    example:
    select count(1) from table1 where cabinet=(select per_cabinet from security where username='username1') and department=(select per_dept from security where username='username1') and division=(select per_division from security where username='username1') and branch=(select per_branch from security where username='username1') and section=(select per_section from security where username='username1') and unit=(select per_unit from security where username='username1');
    I would get 0 rwos because username1 does not have any value for section.
    Any thoughts or ideas on how to resolve my problem? Thanks.

  • Security suggestion

    Hello all,
    I am facing the following 'problem':
    I am working on HR analytics and built in a custom authorisation model.
    Now I have the complete logical table secured by the countrydimension and by the organization dimension.
    But now the requirement is to have some facts of the fact table sercured and unsecured as well.
    For example. I have a headcount per country. When I am only allowed to see 1 country, I want to compare the secured headcount (1 country) with the unsecure (total) headcount.
    Normally the case is that some items have to be secured, but now everything have to be secured, except this items.
    What is the best way to model this?
    options I see:
    Make a new unsecured fact table with all the unsecured facts, but I don't want this, becuase of performce reasons
    implement the security not on the complete fact table, but on column level, but I don't want this because when you want to add a column it will be unsecured by default and I want that it is secured by default.
    Do I have any more options?
    Or anyone good ideas?
    Best regards,
    Remc0

    Hi Karthick,
    Thanks for your respond, but I know the different manners to implement security. As your examples shows, you can do it in a security group or in a LTS, however, I am not asking how to do it technically, but my question is more, how can I implement the security model with taking in account things like easy maintance and easy setup.
    Remc0

  • Help Safari won't open at all

    I have seen other threats similar but the have been a while a go. I am trying to open Safari since Friday and it crashes and gives me a report. I submit it and have restarted Safari but it keeps crashing. I also checked pluggins in my library just in case but I have not installed anything. I am including here the report to see if someone can help. I would greatly appreciate it.
    Here's the report:
    Process:          
    Safari [933]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [933]
    User ID:          
    501
    Date/Time:        
    2015-01-08 11:27:41.156 -0500
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    2B100640-069E-A493-E737-EC5CF2841293
    Sleep/Wake UUID:  
    745E8593-F5DA-41D3-AEFA-D4F1163303BC
    Time Awake Since Boot: 5900 seconds
    Time Since Wake:  
    1500 seconds
    Crashed Thread:   
    24
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    000000010ac48000-000000010ac49000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.wondershare.iskyvc-YZC2T44ZDX (4.0.0 - 4.0.0) iMedia Converter Deluxe 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff97bb952e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff97bb869f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff91531b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff91530fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff91530838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox     
    0x00007fff8a55643f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox     
    0x00007fff8a5561ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox     
    0x00007fff8a555ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit        
    0x00007fff893d56d1 _DPSNextEvent + 964
    9   com.apple.AppKit        
    0x00007fff893d4e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.Safari.framework  
    0x000000010acc8ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    11  com.apple.AppKit        
    0x00007fff896d9bd7 -[NSApplication _realDoModalLoop:peek:] + 666
    12  com.apple.AppKit        
    0x00007fff896d8186 -[NSApplication runModalForWindow:] + 119
    13  com.apple.AppKit        
    0x00007fff896d7d53 -[NSAlert runModal] + 144
    14  com.apple.AppKit        
    0x00007fff893da65d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1037
    15  com.apple.AppKit        
    0x00007fff893da20e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    16  com.apple.AppKit        
    0x00007fff893da1ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    17  com.apple.AppKit        
    0x00007fff893d9e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    18  com.apple.AppKit        
    0x00007fff893d9c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    19  com.apple.AppKit        
    0x00007fff893d96b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    20  com.apple.Foundation    
    0x00007fff92296458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    21  com.apple.Foundation    
    0x00007fff922962c9 _NSAppleEventManagerGenericHandler + 102
    22  com.apple.AE            
    0x00007fff8eefa99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    23  com.apple.AE            
    0x00007fff8eefa719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    24  com.apple.AE            
    0x00007fff8eefa623 aeProcessAppleEvent + 295
    25  com.apple.HIToolbox     
    0x00007fff8a56337e AEProcessAppleEvent + 56
    26  com.apple.AppKit        
    0x00007fff893d5d76 _DPSNextEvent + 2665
    27  com.apple.AppKit        
    0x00007fff893d4e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    28  com.apple.Safari.framework  
    0x000000010acc8ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    29  com.apple.AppKit        
    0x00007fff893c8e23 -[NSApplication run] + 594
    30  com.apple.AppKit        
    0x00007fff893b42d4 NSApplicationMain + 1832
    31  libdyld.dylib           
    0x00007fff935015c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff97bbf22e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff8a865a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff97bbe132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x000000010c88188b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x000000010c87e9d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x000000010ba37a9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff8a4b82fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8a4b8279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8a4b64b1 thread_start + 13
    Thread 7:: Dispatch queue: tcpConnWorkQueue
    0   libsystem_kernel.dylib  
    0x00007fff97bbe876 __unlink + 10
    1   com.apple.security      
    0x00007fff931f8c7d Security::doFilesExist(char const*, char const*, unsigned int, bool, stat&, stat&) + 106
    2   com.apple.security      
    0x00007fff931f83a7 Security::MDSSession::updateDataBases() + 803
    3   com.apple.security      
    0x00007fff93265930 Security::MDSSession::DataGetFirst(long, Security::CssmQuery const*, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 38
    4   com.apple.security      
    0x00007fff931f7e38 mds_DataGetFirst(cssm_dl_db_handle, cssm_query const*, long*, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 146
    5   com.apple.security      
    0x00007fff932b26ed Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 67
    6   com.apple.security      
    0x00007fff931f7800 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 258
    7   com.apple.security      
    0x00007fff931f745c Security::CssmClient::Table<Security::MDSClient::Common>::fetch(Security::CssmC lient::Query const&, int) + 144
    8   com.apple.security      
    0x00007fff931f6d31 MdsComponent::MdsComponent(Security::Guid const&) + 209
    9   com.apple.security      
    0x00007fff931f6938 CssmManager::loadModule(Security::Guid const&, unsigned int, Security::ModuleCallback const&) + 136
    10  com.apple.security      
    0x00007fff931f6847 CSSM_ModuleLoad + 129
    11  com.apple.security      
    0x00007fff931f63f1 Security::CssmClient::ModuleImpl::activate() + 157
    12  com.apple.security      
    0x00007fff931f6206 Security::CssmClient::AttachmentImpl::activate() + 92
    13  com.apple.security      
    0x00007fff93225c91 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 49
    14  com.apple.security      
    0x00007fff93220651 Security::KeychainCore::Trust::evaluate(bool) + 2707
    15  com.apple.security      
    0x00007fff9321fa10 SecTrustEvaluate + 48
    16  com.apple.CFNetwork     
    0x00007fff8a93eae9 CFNetworkTrust::evaluate() + 27
    17  com.apple.CFNetwork     
    0x00007fff8a93ea4b SocketStream::doSettingsOverrideTrustEvaluation() + 663
    18  com.apple.CFNetwork     
    0x00007fff8a93e747 SocketStream::securityAcceptPeerTrust_NoLock(SSLPeerTrustAcceptancePolicy) + 431
    19  com.apple.CFNetwork     
    0x00007fff8a9cc19a ___ZN12SocketStream32_PerformSecurityHandshake_NoLockEv_block_invoke_2 + 44
    20  libdispatch.dylib       
    0x00007fff8a867323 _dispatch_call_block_and_release + 12
    21  libdispatch.dylib       
    0x00007fff8a862c13 _dispatch_client_callout + 8
    22  libdispatch.dylib       
    0x00007fff8a866365 _dispatch_queue_drain + 1100
    23  libdispatch.dylib       
    0x00007fff8a867ecc _dispatch_queue_invoke + 202
    24  libdispatch.dylib       
    0x00007fff8a8656b7 _dispatch_root_queue_drain + 463
    25  libdispatch.dylib       
    0x00007fff8a873fe4 _dispatch_worker_thread3 + 91
    26  libsystem_pthread.dylib 
    0x00007fff8a4b86cb _pthread_wqthread + 729
    27  libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff97bb952e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff97bb869f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff927d8d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff927d8c96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff8a4b82fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8a4b8279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8a4b64b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff97bbe162 __psynch_mutexwait + 10
    1   com.apple.CFNetwork     
    0x00007fff8a910392 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 92
    2   com.apple.CFNetwork     
    0x00007fff8a9102fa SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 70
    3   com.apple.CoreFoundation
    0x00007fff9157e447 __CFSocketPerformV0 + 1031
    4   com.apple.CoreFoundation
    0x00007fff9153f661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    5   com.apple.CoreFoundation
    0x00007fff915317ed __CFRunLoopDoSources0 + 269
    6   com.apple.CoreFoundation
    0x00007fff91530e1f __CFRunLoopRun + 927
    7   com.apple.CoreFoundation
    0x00007fff91530838 CFRunLoopRunSpecific + 296
    8   com.apple.CFNetwork     
    0x00007fff8a9a6d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    9   com.apple.Foundation    
    0x00007fff922dcb7a __NSThread__main__ + 1345
    10  libsystem_pthread.dylib 
    0x00007fff8a4b82fc _pthread_body + 131
    11  libsystem_pthread.dylib 
    0x00007fff8a4b8279 _pthread_start + 176
    12  libsystem_pthread.dylib 
    0x00007fff8a4b64b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 19:: Dispatch queue: com.apple.SafariShared.WBSHistorySQLiteStore
    0   libsystem_kernel.dylib  
    0x00007fff97bbf5d6 pread + 10
    1   libsqlite3.dylib        
    0x00007fff90efe855 readDbPage + 117
    2   libsqlite3.dylib        
    0x00007fff90efcf92 sqlite3PagerAcquire + 1314
    3   libsqlite3.dylib        
    0x00007fff90fef831 checkTreePage + 257
    4   libsqlite3.dylib        
    0x00007fff90f384ac sqlite3VdbeExec + 67324
    5   libsqlite3.dylib        
    0x00007fff90f263df sqlite3_step + 735
    6   com.apple.Safari.framework  
    0x000000010b250bfc -[WBSSQLiteRowEnumerator nextObject] + 45
    7   com.apple.Safari.framework  
    0x000000010b2205bf -[WBSHistorySQLiteStore _checkDatabaseIntegrity] + 71
    8   com.apple.Safari.framework  
    0x000000010b220896 -[WBSHistorySQLiteStore _openDatabase:andCheckIntegrity:] + 458
    9   com.apple.Safari.framework  
    0x000000010b220371 -[WBSHistorySQLiteStore _loadHistory] + 94
    10  libdispatch.dylib       
    0x00007fff8a867323 _dispatch_call_block_and_release + 12
    11  libdispatch.dylib       
    0x00007fff8a862c13 _dispatch_client_callout + 8
    12  libdispatch.dylib       
    0x00007fff8a866365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib       
    0x00007fff8a867ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib       
    0x00007fff8a866154 _dispatch_queue_drain + 571
    15  libdispatch.dylib       
    0x00007fff8a867ecc _dispatch_queue_invoke + 202
    16  libdispatch.dylib       
    0x00007fff8a8656b7 _dispatch_root_queue_drain + 463
    17  libdispatch.dylib       
    0x00007fff8a873fe4 _dispatch_worker_thread3 + 91
    18  libsystem_pthread.dylib 
    0x00007fff8a4b86cb _pthread_wqthread + 729
    19  libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib  
    0x00007fff97bbe946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b64a1 start_wqthread + 13
    Thread 23:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff97bbe3f6 __select + 10
    1   libsystem_pthread.dylib 
    0x00007fff8a4b82fc _pthread_body + 131
    2   libsystem_pthread.dylib 
    0x00007fff8a4b8279 _pthread_start + 176
    3   libsystem_pthread.dylib 
    0x00007fff8a4b64b1 thread_start + 13
    Thread 24 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff8a4b6695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff8ec42b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff8ec3b620 fprintf + 186
    3   ???                     
    0x00000001145cf5dc 0 + 4636603868
    Thread 24 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff793271d8  rcx: 0x00007fff793271f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff793271f0  rsi: 0x00007fff8a4b6b14  rbp: 0x0000000111a6ee30  rsp: 0x0000000111a6edb0
       r8: 0x000000010fb30000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff793266b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8a4b6695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x10ac48000 -   
    0x10ac48fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x10ac52000 -   
    0x10b58bff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x10ba2d000 -   
    0x10bf40ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x10c0ab000 -   
    0x10c35ffff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10c63c000 -   
    0x10c63cfff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10c646000 -   
    0x10c782ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x10c87a000 -   
    0x10d81fff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x111a9f000 -   
    0x111a9ffef +cl_kernels (???) <A8A3C71E-589B-4DF3-B5E8-6A7DA40FE3C7> cl_kernels
    0x113ce8000 -   
    0x113ce8ff5 +cl_kernels (???) <180AE1CF-F6B8-4790-BB3B-C8FB3EA9E10C> cl_kernels
    0x113cea000 -   
    0x113dd0fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff67a1b000 -
    0x7fff67a51837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff881d9000 -
    0x7fff881e1fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff881e2000 -
    0x7fff8823aff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
    0x7fff8823b000 -
    0x7fff88273fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff88274000 -
    0x7fff882fdfff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff88312000 -
    0x7fff88379ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff8837a000 -
    0x7fff8837fffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
    0x7fff88380000 -
    0x7fff883cafff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff883cd000 -
    0x7fff883e6ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff883e7000 -
    0x7fff88524fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff885a3000 -
    0x7fff885a4ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
    0x7fff885b7000 -
    0x7fff885b7ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x7fff885d2000 -
    0x7fff885d6fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff88aeb000 -
    0x7fff88af6fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88af7000 -
    0x7fff88af8ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff88af9000 -
    0x7fff88b0bfff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
    0x7fff88b0c000 -
    0x7fff88b3eff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff88b3f000 -
    0x7fff89396ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8939a000 -
    0x7fff8939bfff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
    0x7fff893b1000 -
    0x7fff89ef2fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff89fcd000 -
    0x7fff8a051ff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff8a052000 -
    0x7fff8a321ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8a322000 -
    0x7fff8a324ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff8a326000 -
    0x7fff8a4b4fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8a4b5000 -
    0x7fff8a4befff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8a528000 -
    0x7fff8a82afff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8a861000 -
    0x7fff8a88bff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
    0x7fff8a88c000 -
    0x7fff8a8afff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8a8bd000 -
    0x7fff8a8c2ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8a8c5000 -
    0x7fff8a8c9fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x7fff8a8ca000 -
    0x7fff8a8d2fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff8a8d3000 -
    0x7fff8a8d6ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8a906000 -
    0x7fff8ab09ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8ab24000 -
    0x7fff8ab3aff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff8acec000 -
    0x7fff8ad12ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8ad13000 -
    0x7fff8b143fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8b144000 -
    0x7fff8b14bfff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8b14c000 -
    0x7fff8b15eff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8b15f000 -
    0x7fff8b1cdffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8b1ce000 -
    0x7fff8b1d1fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8b1d2000 -
    0x7fff8b226fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff8b227000 -
    0x7fff8b232ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff8b233000 -
    0x7fff8b241ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8b242000 -
    0x7fff8b695fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8b6bb000 -
    0x7fff8b6c0ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
    0x7fff8b6c1000 -
    0x7fff8b7e8fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8b826000 -
    0x7fff8b82eff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8b82f000 -
    0x7fff8bb16ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8bb17000 -
    0x7fff8bc2fffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8bca9000 -
    0x7fff8bceafff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8bceb000 -
    0x7fff8bcf9ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff8bcfa000 -
    0x7fff8bd8bfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff8bd8c000 -
    0x7fff8bdb4ffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff8c0dd000 -
    0x7fff8c10dfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff8c10e000 -
    0x7fff8c10ffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8c110000 -
    0x7fff8c138fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff8c139000 -
    0x7fff8c1adfff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8d184000 -
    0x7fff8d186ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff8d187000 -
    0x7fff8d1aafff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8d1ab000 -
    0x7fff8d2baffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8d2bb000 -
    0x7fff8d2d8fff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
    0x7fff8d2d9000 -
    0x7fff8d2f5ff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff8d2f6000 -
    0x7fff8d2f8ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8d2f9000 -
    0x7fff8d329ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8d32a000 -
    0x7fff8d3bbff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8d3bc000 -
    0x7fff8d4ecfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8d518000 -
    0x7fff8d51cfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
    0x7fff8d528000 -
    0x7fff8d61aff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8d620000 -
    0x7fff8d62dfff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8d62e000 -
    0x7fff8d6a2fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8d6a3000 -
    0x7fff8d6b0ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x7fff8d6b1000 -
    0x7fff8d745fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8d746000 -
    0x7fff8d781fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8d782000 -
    0x7fff8d797fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8d798000 -
    0x7fff8d7c6ff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff8d7df000 -
    0x7fff8d81fff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8d820000 -
    0x7fff8d841fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8d842000 -
    0x7fff8d867ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8d868000 -
    0x7fff8d8e5fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8d8e6000 -
    0x7fff8d984fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8d985000 -
    0x7fff8d9bcffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8d9bd000 -
    0x7fff8d9bdfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8d9be000 -
    0x7fff8da53ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8db83000 -
    0x7fff8df5afe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8df5b000 -
    0x7fff8dfb6fff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8e00f000 -
    0x7fff8e03dfff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8e03e000 -
    0x7fff8e048fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x7fff8e049000 -
    0x7fff8e05dff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x7fff8e05e000 -
    0x7fff8e05efff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8e05f000 -
    0x7fff8e08fff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8e095000 -
    0x7fff8e0acfff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff8e0dd000 -
    0x7fff8e1baff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8e1bb000 -
    0x7fff8e1bdfff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x7fff8e1be000 -
    0x7fff8e46afff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8e46b000 -
    0x7fff8e4a4fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff8e4a5000 -
    0x7fff8e4adfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff8e4fd000 -
    0x7fff8e503ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8e51c000 -
    0x7fff8e51fff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff8e520000 -
    0x7fff8e5b6ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8e5dc000 -
    0x7fff8e5dcfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8e5dd000 -
    0x7fff8e637ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff8e638000 -
    0x7fff8e63affb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff8e63b000 -
    0x7fff8e8a5ff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8e986000 -
    0x7fff8e9e4fff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
    0x7fff8e9e5000 -
    0x7fff8e9f6ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
    0x7fff8ea10000 -
    0x7fff8ea1bfff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8ea1c000 -
    0x7fff8ea36ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8ea37000 -
    0x7fff8ea52ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff8ea53000 -
    0x7fff8ea58ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff8ea59000 -
    0x7fff8ebc4ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8ebfd000 -
    0x7fff8ebfdff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff8ebfe000 -
    0x7fff8ec8afff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
    0x7fff8ee4d000 -
    0x7fff8eeecdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff8eeed000 -
    0x7fff8ef4cff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8efa1000 -
    0x7fff8f30cfff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8f30d000 -
    0x7fff8f328fff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
    0x7fff8f329000 -
    0x7fff8f32ffff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8f388000 -
    0x7fff8f40afff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8f40b000 -
    0x7fff8f43afff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8f43b000 -
    0x7fff8f620ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-355

    This can happen if adware  Genieo is installed without your knowledge. Removing it will help,
    1. Download and use free AdwareMedic to remove the adware
        http://www.adwaremedic.com/index.php
        Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
        Once done, quit AdwareMedic.
                   or
        Remove the adware  manually  by following the “HowTo” from Apple.
        http://support.apple.com/en-us/HT203987
    2. Safari > Preferences > Extensions
         Turn those off and relaunch Safari to test .
         Turn those on one by one and test.
    Note:
    If you have another browser installed, use it.
    If not, startup in SafeMode, log into your account
    and download  AdwareMedic or the removal instructions from Apple.
    Restart from Apple menu afterwards.

  • I messed up iPhoto 11, keeps crashing even applying every fix

    Hi,
    I made a mess with my iPhoto on my iMac 27, Core 2 3.06 Ghz version. It runs Lion, with latest updates. Lion was installed on a native Snow Leopard.
    I wanter to upgrade the version of iLife and I had this genial idea of using my Macbook Pro, latest version 2011 DVD to do it.
    I've read a tutorial that explained how to do it with an application to read from packages and Apple DVDs.
    The process gave me some errors related to the Prokit Library. I've stopped it and I saw that the whole iLife was installed, but iPhoto would crash instantly every time I run it.
    I did the following attempts of recovering, found in this forum. After each attemp, every iLife app other than iPhoto works. I'm testing on an account with an empty picture library.
    - web update: failure
    -  Delete everything, delete the recipes, reinstall: failure
    - A friend of mine gave me the iLife 11 DVD. Tried removing iLife, deleting recipes before installing: failure.
    - Same as above, with additional delete of every iPhoto related file in my User library: failure
    - I've finally decided purchased iPhoto 11 from the App Store, sure that it would work: epic fail. iPhoto not working and I have 12 euro less
    - I've already tried creating new library, starting the app with ALT and CTRL ALT, but as soon as the process of rebuilding the library - which by the way is empty - the application crashes.
    - I've run everything I could from Onyx.
    What else I can do now to fix this situation?
    Do I need to reinstall Lion from scratch?
    Here is the error I get.
    Process:         iPhoto [4060]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [237]
    Date/Time:       2011-11-01 10:50:53.526 +0100
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          21346 sec
    Crashes Since Last Report:           33
    Per-App Interval Since Last Report:  207 sec
    Per-App Crashes Since Last Report:   30
    Anonymous UUID:                      BCD20D72-95EB-4873-AC30-EAAFCBF557F6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    VM Regions Near 0x1:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        __TEXT                 0000000000001000-0000000000d1b000 [ 13.1M] r-x/rwx SM=COW  /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Application Specific Information:
    objc_msgSend() selector name: release
    objc[4060]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x95974d44 objc_msgSend + 20
    1   com.apple.AppKit                        0x94de3679 -[NSCarbonMenuImpl dealloc] + 98
    2   libobjc.A.dylib                         0x9597654e _objc_rootRelease + 47
    3   com.apple.AppKit                        0x94de3362 -[NSMenu setMenuRepresentation:] + 310
    4   com.apple.AppKit                        0x94de3189 -[NSMenu dealloc] + 69
    5   libobjc.A.dylib                         0x9597654e _objc_rootRelease + 47
    6   libobjc.A.dylib                         0x95977c58 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 404
    7   com.apple.CoreFoundation                0x91f73515 _CFAutoreleasePoolPop + 53
    8   com.apple.Foundation                    0x9bead8c6 -[NSAutoreleasePool drain] + 131
    9   com.apple.Foundation                    0x9bee4de3 _NSAppleEventManagerGenericHandler + 300
    10  com.apple.AE                            0x93cc8045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    11  com.apple.AE                            0x93cb1b67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    12  com.apple.AE                            0x93cb1a54 aeProcessAppleEvent + 253
    13  com.apple.HIToolbox                     0x98ee9fea AEProcessAppleEvent + 103
    14  com.apple.AppKit                        0x94b842af _DPSNextEvent + 1301
    15  com.apple.AppKit                        0x94b838ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    16  com.apple.AppKit                        0x94b7fc22 -[NSApplication run] + 911
    17  com.apple.AppKit                        0x94e1418a NSApplicationMain + 1054
    18  com.apple.iPhoto                        0x0001159a 0x1000 + 66970
    19  com.apple.iPhoto                        0x00010a29 0x1000 + 64041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libdispatch.dylib                       0x98c04c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x98c036a7 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9311b42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9bf168c0 -[__NSOperationInternal waitUntilFinished] + 145
    4   com.apple.Foundation                    0x9bf16828 -[NSOperation waitUntilFinished] + 67
    5   com.apple.iPhoto                        0x00254107 0x1000 + 2437383
    6   com.apple.iPhoto                        0x009e367b 0x1000 + 10364539
    7   com.apple.Foundation                    0x9bf32f7e -[NSBlockOperation main] + 269
    8   com.apple.Foundation                    0x9bef6323 -[__NSOperationInternal start] + 797
    9   com.apple.Foundation                    0x9bef5fff -[NSOperation start] + 67
    10  com.apple.Foundation                    0x9bf0a152 ____NSOQSchedule_block_invoke_2 + 135
    11  libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    13  libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    14  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 7:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x99378bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9311b7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x9311b558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x94dcbbe2 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 33:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01d31ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.CoreFoundation                0x91fe253a -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    9   com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    11  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    12  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    13  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    14  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    15  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 35:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 36:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9311b42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9bf0ad40 -[NSCondition wait] + 304
    4   com.apple.iPhoto                        0x0005c66a 0x1000 + 374378
    5   com.apple.iPhoto                        0x0005c5c2 0x1000 + 374210
    6   com.apple.CoreFoundation                0x91fdce1d __invoking___ + 29
    7   com.apple.CoreFoundation                0x91fdcd59 -[NSInvocation invoke] + 137
    8   com.apple.RedRock                       0x01d53e61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x01d656c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    12  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    14  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    15  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    16  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    17  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    18  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 38:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99378b42 __select + 10
    1   com.apple.CoreFoundation                0x91fc9195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 39:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   liblaunch.dylib                         0x947ffb1c 0x947fa000 + 23324
    3   liblaunch.dylib                         0x947fdf2b _spawn_via_launchd + 1782
    4   com.apple.LaunchServices                0x996d021c _ZL27LaunchApplicationViaLaunchD11LSSessionIDR19CFMutableDictionaryS1_PK9__CFAr rayPKPKcPPK7__LSASNPPK14__CFDictionary + 3259
    5   com.apple.LaunchServices                0x996d203b _LSLaunchApplication + 6148
    6   com.apple.LaunchServices                0x996e947e _ZL9_LSLaunchP9LSContextP6FSNodemPvPK9__CFArrayPK6AEDescS6_PK14__CFDictionarymP 19ProcessSerialNumber + 8397
    7   com.apple.LaunchServices                0x996e9c28 _ZL10_LSOpenAppP11LSOpenStatemP6FSNodemPhP19ProcessSerialNumber + 311
    8   com.apple.LaunchServices                0x996ecc3b _ZL43_LSOpenItemsWithHandler_CFDictionaryApplierPKvS0_Pv + 735
    9   com.apple.CoreFoundation                0x91f72230 __CFDictionaryApplyFunction_block_invoke_1 + 32
    10  com.apple.CoreFoundation                0x91f515a2 CFBasicHashApply + 114
    11  com.apple.CoreFoundation                0x91f72202 CFDictionaryApplyFunction + 194
    12  com.apple.LaunchServices                0x996ef030 _LSOpenStuff + 3710
    13  com.apple.LaunchServices                0x996da0e1 _ZL25_LSOpenApplication_CommonPK26LSApplicationParameters_V1PK9AEKeyDescP19Proc essSerialNumberP5FSRef + 189
    14  com.apple.LaunchServices                0x996da21a LSOpenFromURLSpec + 242
    15  com.apple.ImageCapture                  0x9921be34 _ICALaunchImageCaptureExtension + 128
    16  com.apple.ImageCapture                  0x9921bb6d ICACommand::PrepareCommand() + 325
    17  com.apple.ImageCapture                  0x9921b7da ICACommand::ICACommand(void (*)(ICAHeader*), unsigned char*, unsigned long, __CFString const*) + 140
    18  com.apple.ImageCapture                  0x9921b716 ICAGetDeviceListImp::ICAGetDeviceListImp(ICAGetDeviceListPB*, void (*)(ICAHeader*)) + 60
    19  com.apple.ImageCapture                  0x9921b67f ICAGetDeviceList_Deprecated + 45
    20  com.apple.ImageCapture                  0x9921b64a ICAGetDeviceList + 24
    21  com.apple.iPhoto                        0x0008a423 0x1000 + 562211
    22  com.apple.iPhoto                        0x0008a3b9 0x1000 + 562105
    23  com.apple.iPhoto                        0x0008a314 0x1000 + 561940
    24  com.apple.iPhoto                        0x0008a2be 0x1000 + 561854
    25  com.apple.iPhoto                        0x0008a1ef 0x1000 + 561647
    26  com.apple.iPhoto                        0x0008a0ec 0x1000 + 561388
    27  com.apple.iPhoto                        0x00089f52 0x1000 + 560978
    28  com.apple.CoreFoundation                0x91fdce1d __invoking___ + 29
    29  com.apple.CoreFoundation                0x91fdcd59 -[NSInvocation invoke] + 137
    30  com.apple.RedRock                       0x01d53e61 -[RKInvoker _invokeTarget:] + 33
    31  com.apple.RedRock                       0x01d656c4 -[RKInvoker _invokeTargetWithPool:] + 68
    32  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    33  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    34  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    35  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    36  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    37  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    38  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    39  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    40  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    41  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    42  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x954c5608  ecx: 0x954c5608  edx: 0x00000000
      edi: 0x0cc941c0  esi: 0x94de3624  ebp: 0xbffff158  esp: 0xbffff13c
       ss: 0x00000023  efl: 0x00010202  eip: 0x95974d44   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000001
    Logical CPU: 1
    Binary Images:
        0x1000 -   0xd1afeb  com.apple.iPhoto (9.2.1 - 9.2.1) <68601E93-E4CF-3B4C-AFFD-4781A92DD58B> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xe83000 -   0xf63fe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfae000 -  0x114effb  com.apple.geode (1.5 - 151.51) <28D29759-F356-3608-B9CF-3031F3299B1B> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x11ee000 -  0x11f0fff  com.apple.iLifePhotoStreamConfiguration (2.2 - 2.2) <4FA61CE9-1718-3E07-9896-0023A2A49699> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x11f6000 -  0x1205fff  com.apple.iLifeAssetManagement (2.0 - 2.33) <8346DE35-5F86-3338-9913-B035B3EE5435> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1212000 -  0x123affb  com.apple.iPhoto.Tessera (1.1 - 60.10) <7BA9184E-0A00-3083-8322-772ECBDD30C9> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x124b000 -  0x1272ffb  com.apple.iPhoto.Tellus (1.3 - 60.10) <4AABB0BC-AC97-3EE4-BF0F-D8499DDB57C0> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1287000 -  0x1291fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <3B68F126-D783-3F86-AF04-A0F6A459BE67> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x129c000 -  0x12b3ff7  com.apple.iLifeFaceRecognition (1.0 - 21) <AD53D7A2-F0B2-FF76-5C6D-C23B2

    I am having the same issue.  I loaded some new pictures & halfway through the upload it crashed & now it just continually crashes.  I don't have iphoto on another computer with the same photos....what do I do???  I don't want to lose all my photos....
    Process:         iPhoto [1028]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [115]
    Date/Time:       2011-11-05 18:49:04.173 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          24560 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  161 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      56AC5B87-578E-4096-874C-7F09EF77931F
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000002398d000
    Crashed Thread:  30
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x93aeaa16 mmap + 10
    1   com.apple.security                0x94169aaa Security::AtomicBufferedFile::loadBuffer() + 248
    2   com.apple.security                0x941698ce Security::AtomicBufferedFile::read(long long, long long, long long&) + 322
    3   com.apple.security                0x94169733 Security::DbVersion::DbVersion(Security::AppleDatabase const&, Security::RefPointer<Security::AtomicBufferedFile> const&) + 157
    4   com.apple.security                0x941691a4 Security::DbModifier::getDbVersion(bool) + 432
    5   com.apple.security                0x94168fe4 Security::DbModifier::openDatabase() + 40
    6   com.apple.security                0x94168c53 Security::Database::_dbOpen(Security::DatabaseSession&, unsigned int, Security::AccessCredentials const*, void const*) + 213
    7   com.apple.security                0x9416808f Security::DatabaseManager::dbOpen(Security::DatabaseSession&, Security::DbName const&, unsigned int, Security::AccessCredentials const*, void const*) + 71
    8   com.apple.security                0x94167f64 Security::DatabaseSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 328
    9   com.apple.security                0x94167df9 Security::MDSSession::dbOpen(char const*, bool) + 311
    10  com.apple.security                0x94167c9f Security::MDSSession::DbFilesInfo::objDbHand() + 199
    11  com.apple.security                0x941676e7 Security::MDSSession::DbFilesInfo::removeOutdatedPlugins() + 323
    12  com.apple.security                0x94165e76 Security::MDSSession::updateDataBases() + 2308
    13  com.apple.security                0x941653dc Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 204
    14  com.apple.security                0x941650f4 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 284
    15  com.apple.security                0x94164f84 Security::MDSClient::Directory::cdsa() const + 128
    16  com.apple.security                0x942b1a1d Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 21
    17  com.apple.security                0x941649d5 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 193
    18  com.apple.security                0x9416453c Security::CssmClient::Table<Security::MDSClient::Common>::find(Security::CssmCl ient::Query const&) + 106
    19  com.apple.security                0x94162625 Security::KeychainCore::DynamicDLDBList::_load() + 339
    20  com.apple.security                0x94162484 Security::KeychainCore::DynamicDLDBList::searchList() + 62
    21  com.apple.security                0x941612ea Security::KeychainCore::StorageManager::getSearchList(std::vector<Security::Key chainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 254
    22  com.apple.security                0x94161116 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 80
    23  com.apple.security                0x941d034f SecKeychainFindInternetPassword + 101
    24  com.apple.iPhoto                  0x00060240 0x1000 + 389696
    25  com.apple.iPhoto                  0x0005fb68 0x1000 + 387944
    26  com.apple.iPhoto                  0x0005fa9e 0x1000 + 387742
    27  ....AccountConfigurationPlugin    0x01292e0d -[AccountConfigurationManagerBase loadPasswordFromKeychainForAccountConfiguration:] + 109
    28  ....AccountConfigurationPlugin    0x01294dd5 -[AccountConfiguration password] + 85
    29  ....AccountConfigurationPlugin    0x01291f57 -[AccountConfigurationManagerBase loadAccountInformation:] + 199
    30  com.apple.Foundation              0x933f2671 __NSThreadPerformPerform + 506
    31  com.apple.CoreFoundation          0x97a8e2c1 __CFRunLoopDoSources0 + 1201
    32  com.apple.CoreFoundation          0x97a8beef __CFRunLoopRun + 1071
    33  com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    34  com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    35  com.apple.HIToolbox               0x91579e04 RunCurrentEventLoopInMode + 392
    36  com.apple.HIToolbox               0x91579af5 ReceiveNextEventCommon + 158
    37  com.apple.HIToolbox               0x91579a3e BlockUntilNextEventMatchingListInMode + 81
    38  com.apple.AppKit                  0x9716c595 _DPSNextEvent + 847
    39  com.apple.AppKit                  0x9716bdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    40  com.apple.AppKit                  0x9712e1f3 -[NSApplication run] + 821
    41  com.apple.AppKit                  0x97126289 NSApplicationMain + 574
    42  com.apple.iPhoto                  0x0001159a 0x1000 + 66970
    43  com.apple.iPhoto                  0x00010a29 0x1000 + 64041
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x93b0e382 kevent + 10
    1   libSystem.B.dylib                 0x93b0ea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x93b0df59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x93b0dcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x93b0d781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x93b0d412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x93b0d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 6:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                 0x01d46ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    8   com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    9   com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    10  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    11  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    12  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    13  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    14  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    15  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 28:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.Foundation              0x933f1d35 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1111
    5   com.apple.Foundation              0x9340480f -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    6   ....AccountConfigurationPlugin    0x0129210f -[AccountConfigurationManagerBase accountInformationForAccountType:accountIdentifier:] + 143
    7   com.apple.iPhoto                  0x00060bdf 0x1000 + 392159
    8   ...le.iPhoto.MobileMePublisher    0x1f111f88 _removeUserName + 59848
    9   ....AccountConfigurationPlugin    0x0129605a -[AccountConfigurationProfileInformationDownloadOperation main] + 234
    10  com.apple.Foundation              0x93403b5a -[__NSOperationInternal start] + 705
    11  com.apple.Foundation              0x934f40bb ____NSOQSchedule_block_invoke_2 + 119
    12  libSystem.B.dylib                 0x93b1ba24 _dispatch_call_block_and_release + 16
    13  libSystem.B.dylib                 0x93b0dcf2 _dispatch_worker_thread2 + 228
    14  libSystem.B.dylib                 0x93b0d781 _pthread_wqthread + 390
    15  libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 29:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.iPhoto                  0x0005c66a 0x1000 + 374378
    5   com.apple.iPhoto                  0x0005c5c2 0x1000 + 374210
    6   com.apple.CoreFoundation          0x97ac8ead __invoking___ + 29
    7   com.apple.CoreFoundation          0x97ac8e18 -[NSInvocation invoke] + 136
    8   com.apple.RedRock                 0x01d68e61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                 0x01d7a6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    11  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    12  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    13  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    14  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    15  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    16  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    17  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    18  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 30 Crashed:
    0   libSystem.B.dylib                 0xffff0c58 __memcpy + 1208
    1   com.apple.ImageIO.framework       0x95120aa3 CGImageReadGetBytesAtOffset + 309
    2   com.apple.ImageIO.framework       0x95123a4d CGImageReadSessionGetBytes + 48
    3   com.apple.ImageIO.framework       0x9513a392 fill_input_buffer + 214
    4   libJPEG.dylib                     0x9a0bfcf3 decode_mcu_optimized + 3195
    5   libJPEG.dylib                     0x9a0bee74 decompress_onepass + 138
    6   libJPEG.dylib                     0x9a0ca4c1 process_data_simple_main + 52
    7   libJPEG.dylib                     0x9a0bea97 _cg_jpeg_read_scanlines + 150
    8   com.apple.ImageIO.framework       0x9513ca11 copyImageBlockSetJPEG + 2978
    9   com.apple.ImageIO.framework       0x95127f95 ImageProviderCopyImageBlockSetCallback + 174
    10  com.apple.CoreGraphics            0x90bb552b CGImageProviderCopyImageBlockSet + 228
    11  com.apple.CoreGraphics            0x90bb9d3c img_blocks_create + 348
    12  com.apple.CoreGraphics            0x90b51305 img_data_lock + 2921
    13  com.apple.CoreGraphics            0x90b4fb4a CGSImageDataLock + 172
    14  libRIP.A.dylib                    0x95839751 ripc_AcquireImage + 2446
    15  libRIP.A.dylib                    0x958373c6 ripc_DrawImage + 1245
    16  com.apple.CoreGraphics            0x90b4f7c4 CGContextDrawImage + 450
    17  com.apple.iPhoto                  0x000b1cfc 0x1000 + 724220
    18  com.apple.iPhoto                  0x003ed5ef 0x1000 + 4113903
    19  com.apple.iPhoto                  0x000b0d17 0x1000 + 720151
    20  com.apple.iPhoto                  0x0033e710 0x1000 + 3397392
    21  com.apple.iPhoto                  0x000b05c7 0x1000 + 718279
    22  com.apple.iPhoto                  0x001668b9 0x1000 + 1464505
    23  com.apple.iLifeFaceRecognition    0x012aa4b0 -[FaceRecognitionManager detectFacesInPhoto:userInfo:options:delegate:context:] + 149
    24  com.apple.RedRock                 0x01dc27c5 -[RKFaceDetectionWorker detectFacesForMaster:aggressive:] + 1125
    25  com.apple.iPhoto                  0x009ea972 0x1000 + 10393970
    26  com.apple.RedRock                 0x01dc2218 -[RKFaceDetectionWorker performJob:] + 440
    27  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    28  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    29  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    30  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    31  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    32  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    33  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    34  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 32:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x93b06ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x97acbc53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    3   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.Foundation              0x933f1d35 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1111
    5   com.apple.Foundation              0x9340480f -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    6   com.apple.RedRock                 0x01d68c75 -[RKInvoker forwardInvocation:] + 133
    7   com.apple.CoreFoundation          0x97ac9ca4 ___forwarding___ + 1108
    8   com.apple.CoreFoundation          0x97ac97d2 _CF_forwarding_prep_0 + 50
    9   com.apple.iPhoto                  0x0008c98c 0x1000 + 571788
    10  com.apple.iPhoto                  0x0008c1c6 0x1000 + 569798
    11  com.apple.iPhoto                  0x0008bf7f 0x1000 + 569215
    12  com.apple.iPhoto                  0x0008be84 0x1000 + 568964
    13  com.apple.iPhoto                  0x0008bdd5 0x1000 + 568789
    14  com.apple.CoreFoundation          0x97ac8ead __invoking___ + 29
    15  com.apple.CoreFoundation          0x97ac8e18 -[NSInvocation invoke] + 136
    16  com.apple.RedRock                 0x01d68e61 -[RKInvoker _invokeTarget:] + 33
    17  com.apple.RedRock                 0x01d7a6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    18  com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    19  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    20  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    21  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    22  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    23  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    24  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    25  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    26  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.CoreVideo               0x92e2b6fe CVDisplayLink::runIOThread() + 1016
    4   com.apple.CoreVideo               0x92e2b2ea startIOThread(void*) + 156
    5   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 30 crashed with X86 Thread State (32-bit):
      eax: 0xffff0c40  ebx: 0x00503619  ecx: 0x00000018  edx: 0xfffffb80
      edi: 0x232f9790  esi: 0x2398d44a  ebp: 0xb4c2a478  esp: 0xb4c2a470
       ss: 0x0000001f  efl: 0x00010282  eip: 0xffff0c58   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x2398d000
    Binary Images:
        0x1000 -   0xd1afeb  com.apple.iPhoto 9.2.1 (9.2.1) <68601E93-E4CF-3B4C-AFFD-4781A92DD58B> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xe83000 -   0xf6afef  org.python.python 2.6.1 (2.6.1) <4FFD855C-1C5A-9206-A695-8C9904F1DA84> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfb5000 -  0x1155ffb  com.apple.geode 1.5 (151.51) <28D29759-F356-3608-B9CF-3031F3299B1B> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x11f5000 -  0x11f7fff  com.apple.iLifePhotoStreamConfiguration 2.2 (2.2) <4FA61CE9-1718-3E07-9896-0023A2A49699> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x11fd000 -  0x120cfff  com.apple.iLifeAssetManagement 2.0 (2.33) <8346DE35-5F86-3338-9913-B035B3EE5435> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1219000 -  0x1241ffb  com.apple.iPhoto.Tessera 1.1 (60.10) <7BA9184E-0A00-3083-8322-772ECBDD30C9> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x1252000 -  0x1279ffb  com.apple.iPhoto.Tellus 1.3 (60.10) <4AABB0BC-AC97-3EE4-BF0F-D8499DDB57C0> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x128e000 -  0x1298fff  com.apple.iphoto.AccountConfigurationPlugin 1.2 (1.2) <3B68F126-D783-3F86-AF04-A0F6A459BE67> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x12a3000 -  0x12baff7  com.apple.iLifeFaceRecognition 1.0 (21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
    0x12c9000 -  0x12f4fff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x130c000 -  0x1317fff  com.apple.UpgradeChecker 9.2 (9.2) <2040F6E1-7E77-3C64-8B2C-F3B9503C7402> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x131f000 -  0x131ffff  com.apple.iLifeSlideshow 2.3.0 (847) <E98D197B-DAE9-3728-A2DA-C66966ABC6EF> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    0x1322000 -  0x1598ffb  com.apple.iLifePageLayout 1.3 (150.37) <F71F8978-B7FE-3E7A-91E7-C79862B7E827> /Library/Frameworks/iLifePageLayout.framework/Versions/A/iLifePageLayout
    0x1662000 -  0x16fdff7  com.apple.MobileMe 11 (1.0.3) <BCE66DE5-97D5-3E78-AC9C-17353AFA6A34> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1757000 -  0x17b7fff  com.apple.proxtcore 1.3 (140.57) <37B97974-E262-3CA8-AF41-2A522C849E82> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1809000 -  0x18e8ff3  com.apple.iLifeSQLAccess 1.6 (30.12) <C59BE368-DD76-3E91-8F89-2A97E99FE282> /Library/Frameworks/iLifeSQLAccess.framework/Versions/A/iLifeSQLAccess
    0x1916000 -  0x1942fef  com.apple.ProUtils 1.1 (120.14) <44F86ACC-A361-3837-9068-B3B8802E6B39> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x195d000 -  0x19b0ff7  com.apple.iLifeKit 1.3 (90.16) <607E7C33-6A90-39A3-96F2-6C4C8160A4DC> /Library/Frameworks/iLifeKit.framework/Versions/A/iLifeKit
    0x19e1000 -  0x1c19fff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1d21000 -  0x215efe3  com.apple.RedRock 1.8.1 (231.89) <6217B083-7AD4-355E-8ED3-53318A609015> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x22ef000 -  0x22f6ff7  com.apple.MediaSync 1.1 (130.12) <3E7E1340-C3C8-3F1A-BB4B-E8C3A3EE7777> /Applications/iPhoto.app/Contents/Frameworks/MediaSync.framework/Versions/A/Med iaSync
    0x22fe000 -  0x22fffff +eOkaoCom.dylib ??? (???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
    0x2303000 -  0x2328ff2 +eOkaoPt.dylib ??? (???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
    0x232f000 -  0x2363fe7 +eOkaoDt.dylib ??? (???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
    0x2369000 -  0x24d0fff +eOkaoFr.dylib ??? (???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
    0x24d4000 -  0x24fdff7  com.apple.iLifeSlideshowCore 2.3.0 (233) <AFEB793C-AB48-3FEC-BE49-393824CB92F9> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owCore.framework/Versions/A/iLifeSlideshowCore
    0x2510000 -  0x261ffef  com.apple.iLifeSlideshowProducer 2.3.0 (613) <160187AE-D805-3479-887E-B5A5FBE96F44> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owProducer.framework/Versions/A/iLifeSlideshowProducer
    0x266d000 -  0x27cbfe3  com.apple.iLifeSlideshowRenderer 2.3.0 (676) <76D67C6D-9148-380F-A356-ADF82550500E> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x2829000 -  0x2842ff7  com.apple.iLifeSlideshowExporter 2.3.0 (252) <923A15E3-2BB3-35C6-AD09-36E1D8318BC6> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owExporter.framework/Versions/A/iLifeSlideshowExporter
    0x284f000 -  0x2878fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2889000 -  0x290aff7  com.apple.NyxAudioAnalysis 12.2 (12.2) <278C9474-A560-4CCD-0414-DCAC5F2E2BB1> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x2929000 -  0x2950fff  com.apple.ExpressCheckout 1.0 (1.0) <F2DB3C97-F03F-3152-B436-B2DCB6100857> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/ExpressChec kout.framework/Versions/A/ExpressCheckout
    0x296a000 -  0x29a5ff3  com.apple.iLifeImageAnalysis 3.0 (3) <87BA0439-1AA8-321A-844A-35A5D1B7898D> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/iLifeImageA nalysis.framework/Versions/A/iLifeImageAnalysis
    0x2b31000 -  0x2b37fff  com.apple.iPhoto.RSSPublisher 1.1 (1.1) <FCD56B7E-C4BB-3310-8253-8AFFE6DC7754> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x2b3e000 -  0x2b41ff7  com.apple.iphoto.accountconfig.Facebook 1.2 (1.2) <209B424C-22A7-3CC2-96F4-713BEAE22135> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x14ec9000 - 0x14ecdff7  libcldcpuengine.dylib 1.5.6 (compatibility 1.0.0) <EF10CD42-F20F-EB7B-FC29-2AA973D5758D> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x14ed2000 - 0x14ed3ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x14f18000 - 0x14f1aff7  libclparser.dylib ??? (???) <F1C02810-AEEA-F661-FCED-DEA4EB7524D7> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x1b5fb000 - 0x1b621ffb  com.apple.iPhoto.FacebookPublisher 1.2 (1.2) <BC94960A-3D2A-3B0A-B6A0-F9F3C0011E37> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1b62c000 - 0x1b64bff3  com.apple.iPhoto.FlickrPublisher 1.2 (1.2) <9D3721EC-F982-3D8B-9A7A-B188CCB2B4AA> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1b655000 - 0x1b65aff7  com.apple.iphoto.accountconfig.Email 9.2 (9.2) <916E237B-D991-3C6F-99CB-CBF9C1743948> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x1ddf4000 - 0x1df6dff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1df9f000 - 0x1e3b2fef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1e3e4000 - 0x1e408fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1e9bc000 - 0x1ea56ff7  unorm8_argb.dylib 1.5.6 (compatibility 1.0.0) <F486B4F7-B6B0-88F5-8A0C-570566F74618> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x1efa7000 - 0x1efaafff  com.apple.iphoto.accountconfig.Flickr 1.1 (1) <BF134E42-6068-3E8F-928D-B56DFC9E3E8F> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x1efaf000 - 0x1efb4ffb  com.apple.iphoto.accountconfig.MobileMe 1.1 (1) <BFCC1111-5742-3F60-993A-28D9C00BF15B> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x1f100000 - 0x1f137ff7  com.apple.iPhoto.MobileMePublisher 1.2 (1.2) <FCD043A6-97BE-340E-A930-676FBAAB708C> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x90003000 - 0x90017fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x90018000 - 0x90028ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90029000 - 0x90072fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x900b7000 - 0x900b7ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x900b8000 - 0x900cdff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x900ce000 - 0x900d3ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x902b3000 - 0x902beff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90955000 - 0x90a2ffff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A

  • Safari unexpectedly quits whenever I try to start it

    Immediately after clearing my browser history, I find that Safari unexpectedly quits whenever I try to start it.  I don't get this problem when I try to run Safari with another account on the same computer.  Here's the error report that I get:
    Process:    
    Safari [1722]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    5.1.3 (7534.53.10)
    Build Info: 
    WebBrowser-7534053010000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [136]
    Date/Time:  
    2012-03-10 19:50:55.895 -0600
    OS Version: 
    Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:     
    -933297 sec
    Crashes Since Last Report:      
    41
    Per-App Interval Since Last Report:  -438524 sec
    Per-App Crashes Since Last Report:   40
    Anonymous UUID:                 
    A83AAF72-05D6-4479-B818-717BA5C5F229
    Crashed Thread:  4  WebCore: IconDatabase
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000002
    VM Regions Near 0x2:
    -->
    __TEXT            
    000000010e081000-000000010e082000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    objc[1722]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libstdc++.6.dylib        
    0x00007fff8813d6ea std::string::_Rep::_M_dispose(std::allocator<char> const&) + 36
    1   libstdc++.6.dylib        
    0x00007fff8813d740 std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string() + 44
    2   com.apple.security       
    0x00007fff9066f03a Security::MetaRecord::setRecordAttributeInfo(cssm_db_record_attribute_info const&) + 108
    3   com.apple.security       
    0x00007fff9066e5e1 Security::DbVersion::open() + 543
    4   com.apple.security       
    0x00007fff9066deb0 Security::DbVersion::DbVersion(Security::AppleDatabase const&, Security::RefPointer<Security::AtomicBufferedFile> const&) + 168
    5   com.apple.security       
    0x00007fff9066d9f0 Security::DbModifier::getDbVersion(bool) + 286
    6   com.apple.security       
    0x00007fff9066d8c3 Security::DbModifier::openDatabase() + 33
    7   com.apple.security       
    0x00007fff9066d436 Security::Database::_dbOpen(Security::DatabaseSession&, unsigned int, Security::AccessCredentials const*, void const*) + 88
    8   com.apple.security       
    0x00007fff9066c82e Security::DatabaseManager::dbOpen(Security::DatabaseSession&, Security::DbName const&, unsigned int, Security::AccessCredentials const*, void const*) + 74
    9   com.apple.security       
    0x00007fff9066c4af Security::DatabaseSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 265
    10  com.apple.security       
    0x00007fff906ce24d Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 339
    11  com.apple.security       
    0x00007fff906ce00b _ZL10mds_DbOpenlPKcPK16cssm_net_addressjPK23cssm_access_credentialsPKvPl + 281
    12  com.apple.security       
    0x00007fff90669bee Security::MDSClient::Directory::cdsa() const + 96
    13  com.apple.security       
    0x00007fff907bc3ee Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 38
    14  com.apple.security       
    0x00007fff906696db Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 195
    15  com.apple.security       
    0x00007fff906691e9 Security::CssmClient::Table<Security::MDSClient::Common>::find(Security::CssmCl ient::Query const&) + 103
    16  com.apple.security       
    0x00007fff90669140 Security::CssmClient::Table<Security::MDSClient::Common>::fetch(Security::CssmC lient::Query const&, int) + 38
    17  com.apple.security       
    0x00007fff9066871f MdsComponent::MdsComponent(Security::Guid const&) + 169
    18  com.apple.security       
    0x00007fff9066829b CssmManager::loadModule(Security::Guid const&, unsigned int, Security::ModuleCallback const&) + 99
    19  com.apple.security       
    0x00007fff906681a2 CSSM_ModuleLoad + 68
    20  com.apple.Safari.framework
    0x00007fff915e1e98 Safari::cdsaCSPAttach(long&) + 102
    21  com.apple.Safari.framework
    0x00007fff917378ea Safari::SignatureVerifier::initializeProvider() + 26
    22  com.apple.Safari.framework
    0x00007fff9170e474 _ZN6SafariL56configurationsDictionaryFromSignedConfigurationsFileDataERKNS_2CF4 DataE + 62
    23  com.apple.Safari.framework
    0x00007fff9170e8e8 Safari::RemoteConfigurationsController::loadConfigurationForKeyFromDisk(Safari: :SString const&, Safari::SURL const&) const + 70
    24  com.apple.Safari.framework
    0x00007fff9170e974 Safari::RemoteConfigurationsController::initializeSuccessfulDownloadIntervalIfN eeded() const + 66
    25  com.apple.Safari.framework
    0x00007fff9170eaa9 Safari::RemoteConfigurationsController::intervalBeforeNextDownload() const + 259
    26  com.apple.Safari.framework
    0x00007fff9170ed8f Safari::RemoteConfigurationsController::addConsumerForKey(Safari::RemoteConfigu rationConsumer*, Safari::SString const&) + 95
    27  com.apple.Safari.framework
    0x00007fff916fbf06 Safari::ReaderConfiguration::ReaderConfiguration() + 94
    28  com.apple.Safari.framework
    0x00007fff916fc423 Safari::ReaderConfiguration::shared() + 53
    29  com.apple.Safari.framework
    0x00007fff91521656 Safari::Application::initializeProcessContext() + 944
    30  libobjc.A.dylib          
    0x00007fff88554662 _class_initialize + 320
    31  libobjc.A.dylib          
    0x00007fff88554517 prepareForMethodLookup + 237
    32  libobjc.A.dylib          
    0x00007fff885542bb lookUpMethod + 63
    33  libobjc.A.dylib          
    0x00007fff88551f3c objc_msgSend + 188
    34  com.apple.AppKit         
    0x00007fff8f0d461d -[NSCustomObject nibInstantiate] + 89
    35  com.apple.AppKit         
    0x00007fff8f0d4551 -[NSIBObjectData instantiateObject:] + 303
    36  com.apple.AppKit         
    0x00007fff8f0d37ad -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 347
    37  com.apple.AppKit         
    0x00007fff8f0ca09f loadNib + 322
    38  com.apple.AppKit         
    0x00007fff8f0c959c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    39  com.apple.AppKit         
    0x00007fff8f0c94b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    40  com.apple.AppKit         
    0x00007fff8f0c93fa +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    41  com.apple.AppKit         
    0x00007fff8f33c9b3 NSApplicationMain + 398
    42  com.apple.Safari.framework
    0x00007fff917145cd SafariMain + 197
    43  com.apple.Safari         
    0x000000010e081f24 0x10e081000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8e1e37e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff901ba5be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff901b914e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff8e1e3192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff8aacd594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff8aaceb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8e1e3192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff8aacd594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff8aaceb85 start_wqthread + 13
    Thread 4 Crashed:: WebCore: IconDatabase
    0   com.apple.JavaScriptCore 
    0x00007fff8d1cdc7f ***::fastMalloc(unsigned long) + 479
    1   com.apple.WebCore        
    0x00007fff8ab61cd3 WebCore::IconDatabase::getOrCreateIconRecord(***::String const&) + 73
    2   com.apple.WebCore        
    0x00007fff8ab61008 WebCore::IconDatabase::performURLImport() + 666
    3   com.apple.WebCore        
    0x00007fff8ab5fa69 WebCore::IconDatabase::iconDatabaseSyncThread() + 469
    4   com.apple.WebCore        
    0x00007fff8ab5f88b WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib        
    0x00007fff8aacb8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff8aaceb75 thread_start + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000090  rbx: 0x0000000000000002  rcx: 0x0000000000000003  rdx: 0x000000010f374980
      rdi: 0x0000000000000008  rsi: 0x0000000000000000  rbp: 0x000000010f3748f0  rsp: 0x000000010f5e2c50
       r8: 0x000000010f41acae   r9: 0x0000000000000000  r10: 0x00000000746e848e  r11: 0x000000010f41ac60
      r12: 0x000000010f374980  r13: 0x0000000000000009  r14: 0x0000000000000040  r15: 0x000000010f396138
      rip: 0x00007fff8d1cdc7f  rfl: 0x0000000000010286  cr2: 0x0000000000000002
    Logical CPU: 2
    Binary Images:
    0x10e081000 -   
    0x10e081fff  com.apple.Safari (5.1.3 - 7534.53.10) <FBA8DD1F-7A44-3018-8ACC-BBCDF38E0321> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff6dc81000 -
    0x7fff6dcb5baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff88111000 -
    0x7fff88184fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff88218000 -
    0x7fff88223fff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff88548000 -
    0x7fff8862ce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff88655000 -
    0x7fff887f4fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff887f5000 -
    0x7fff88822ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8887b000 -
    0x7fff88970fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff889a3000 -
    0x7fff889a6fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff889a7000 -
    0x7fff889c7fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff88a01000 -
    0x7fff88a02ff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff88a03000 -
    0x7fff88a0eff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff88a0f000 -
    0x7fff88a18ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff88a19000 -
    0x7fff88a1cfff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff88a1d000 -
    0x7fff88bd1ff7  com.apple.WebKit2 (7534.53 - 7534.53.11) <DF90BF18-E0D7-3E40-902A-CE5272AFEFBD> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff88bde000 -
    0x7fff88be4fff  IOSurface (??? - ???) <2114359C-D839-3855-8735-BBAA2704DB93> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff88be5000 -
    0x7fff88c69ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff88e77000 -
    0x7fff88e7cfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff88e7d000 -
    0x7fff88e82fff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff88e83000 -
    0x7fff88e86fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff88f88000 -
    0x7fff88fd4ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff89022000 -
    0x7fff89022fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff89023000 -
    0x7fff89036ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff89039000 -
    0x7fff89047ff7  libkxld.dylib (??? - ???) <9C937433-A362-3E40-BF71-FDABA986B56C> /usr/lib/system/libkxld.dylib
    0x7fff89127000 -
    0x7fff89229ff7  com.apple.PubSub (1.0.5 - 65.28) <8251731B-2EAA-3957-82B6-3FF0E096645A> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8922c000 -
    0x7fff89241fff  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
    0x7fff89242000 -
    0x7fff8924eff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff893ed000 -
    0x7fff893edfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff89463000 -
    0x7fff89465fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff89466000 -
    0x7fff89475ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff894c7000 -
    0x7fff894c8ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff89588000 -
    0x7fff8964fff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8965d000 -
    0x7fff89681fff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff89780000 -
    0x7fff8a1107a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8a118000 -
    0x7fff8a17eff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8a195000 -
    0x7fff8a196fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff8a197000 -
    0x7fff8a1b3ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff8aa7d000 -
    0x7fff8ab5afef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    0x7fff8ab5b000 -
    0x7fff8b86ffef  com.apple.WebCore (7534.53 - 7534.53.11) <E37D145A-0BFD-3BE0-98A9-7F04CE9B6E6E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8b8ed000 -
    0x7fff8b904fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8b905000 -
    0x7fff8b96fff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8b970000 -
    0x7fff8b975ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8bc8e000 -
    0x7fff8bfaaff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8bfab000 -
    0x7fff8bfbdff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff8c6f7000 -
    0x7fff8c6f7fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8c6f8000 -
    0x7fff8c753ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8c754000 -
    0x7fff8c77cff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8c77d000 -
    0x7fff8c7b2fff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8c7b3000 -
    0x7fff8c7b3fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8c7b4000 -
    0x7fff8c7b8fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8c7b9000 -
    0x7fff8c7cfff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8c7da000 -
    0x7fff8c828fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff8c837000 -
    0x7fff8c867ff7  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
    0x7fff8c8ce000 -
    0x7fff8ca58ff7  com.apple.WebKit (7534.53 - 7534.53.11) <2969964C-2759-3407-9EBB-C1304A556755> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8cac2000 -
    0x7fff8cae9fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8caea000 -
    0x7fff8cb60fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8cb68000 -
    0x7fff8cd90fe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8cd91000 -
    0x7fff8cd97ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff8d027000 -
    0x7fff8d15dfff  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
    0x7fff8d160000 -
    0x7fff8d184fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8d185000 -
    0x7fff8d197ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff8d198000 -
    0x7fff8d1cbff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8d1cc000 -
    0x7fff8d457fff  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8d553000 -
    0x7fff8d580fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
    0x7fff8d586000 -
    0x7fff8d5afff7  com.apple.framework.Apple80211 (7.1.2 - 712.1) <B4CD34B3-D555-38D2-8FF8-E3C6A93B94EB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8d5b0000 -
    0x7fff8d8c9ff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8e064000 -
    0x7fff8e1cbff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8e1cc000 -
    0x7fff8e1ecfff  libsystem_kernel.dylib (1699.22.81 - compatibility 1.0.0) <B9E259FC-73EA-31E3-8E68-7F980DEBA8A6> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8e1ed000 -
    0x7fff8e1fbfff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8e1fc000 -
    0x7fff8e7e0fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8e893000 -
    0x7fff8e8a0fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8e9f2000 -
    0x7fff8e9f2fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff8e9f3000 -
    0x7fff8ea2dfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8ea2e000 -
    0x7fff8ea82ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8ea83000 -
    0x7fff8ea9afff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8eb22000 -
    0x7fff8ef4ffff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8f074000 -
    0x7fff8f07afff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff8f0b6000 -
    0x7fff8f0b8fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
    0x7fff8f0b9000 -
    0x7fff8fcbdfff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8fcbe000 -
    0x7fff8fdcafff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff9011f000 -
    0x7fff9017ffff  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
    0x7fff90180000 -
    0x7fff9019dff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff9019e000 -
    0x7fff901afff7  SyndicationUI (??? - ???) <C8084303-1ABA-3FE8-A3F2-2EF67A70FF50> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff901b0000 -
    0x7fff901b6fff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff901b7000 -
    0x7fff901c5fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff901c6000 -
    0x7fff90266fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff902ae000 -
    0x7fff902b2fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff902f2000 -
    0x7fff902f9fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff90334000 -
    0x7fff90338ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff90339000 -
    0x7fff9038bff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff90478000 -
    0x7fff90479fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff9047a000 -
    0x7fff9055cfff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff9055d000 -
    0x7fff90664fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff90665000 -
    0x7fff90947fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff909ca000 -
    0x7fff909d7ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
    0x7fff909dc000 -
    0x7fff90c4ffff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff90c50000 -
    0x7fff90c6dfff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
    0x7fff90c6e000 -
    0x7fff90d12fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff90da2000 -
    0x7fff90dcbfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff90e24000 -
    0x7fff90e6dff7  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff90e7d000 -
    0x7fff90e7efff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
    0x7fff90e7f000 -
    0x7fff90e87fff  libsystem_dnssd.dylib (??? - ???) <407A48F3-64A0-348B-88E6-70CECD3D0D67> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff90ecf000 -
    0x7fff911f9ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff913a9000 -
    0x7fff91502fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff91503000 -
    0x7fff91505ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff91506000 -
    0x7fff91999fff  com.apple.Safari.framework (7534 - 7534.53.10) <BA2D28C9-AE5D-3144-9CEF-C8A1AA90FE4B> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff9199a000 -
    0x7fff9199afff  com.apple.Carbon (153 - 153) <E37A515C-4C10-3102-8146-C0FBD458F8CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9199b000 -
    0x7fff919afff7  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
    0x7fff919b0000 -
    0x7fff91a4aff7  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
    0x7fff91a4b000 -
    0x7fff91ab3ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff9222e000 -
    0x7fff92270ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff92273000 -
    0x7fff92292fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff92293000 -
    0x7fff92308ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
    0x7fff92779000 -
    0x7fff92779fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff927db000 -
    0x7fff92806ff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff92807000 -
    0x7fff92808ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff9288b000 -
    0x7fff92cedff7  com.apple.RawCamera.bundle (3.9.1 - 586) <1AA853F4-E429-33E3-B4A9-6B019CCCC5E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff92cee000 -
    0x7fff92cf3fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff92d32000 -
    0x7fff931f9fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff931fa000 -
    0x7fff9325cff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff9325d000 -
    0x7fff93260ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff93261000 -
    0x7fff93261fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff93262000 -
    0x7fff9326dff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff9326e000 -
    0x7fff93304ff7  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
    0x7fff93305000 -
    0x7fff9330afff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff9335f000 -
    0x7fff9346cfff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff9346d000 -
    0x7fff9354bfff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff9354c000 -
    0x7fff935cffef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff935db000 -
    0x7fff9361aff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff9361b000 -
    0x7fff93691fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff9374f000 -
    0x7fff9374ffff  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
    0x7fff9397c000 -
    0x7fff939bcff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
    0x7fff939bd000 -
    0x7fff939befff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff939bf000 -
    0x7fff939cefff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff939cf000 -
    0x7fff93a0afff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff93a0b000 -
    0x7fff93c0dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff93c0e000 -
    0x7fff93d10ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
    0x7fff93d11000 -
    0x7fff93d17fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff93e30000 -
    0x7fff93e40ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff93e50000 -
    0x7fff93ecbff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff93ecc000 -
    0x7fff93f24fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff93f25000 -
    0x7fff93f64fff  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
    0x7fff93f6b000 -
    0x7fff94084fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff94085000 -
    0x7fff9409bfff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff9409c000 -
    0x7fff940ddfff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff940de000 -
    0x7fff94120fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff941c3000 -
    0x7fff94233fff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff94234000 -
    0x7fff94236fff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff94237000 -
    0x7fff9428bff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff942ec000 -
    0x7fff943f1fff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff943f2000 -
    0x7fff943f9ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff943fa000 -
    0x7fff94404ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
    0x7fff94405000 -
    0x7fff9442bff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff9442c000 -
    0x7fff944b1ff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff944b2000 -
    0x7fff944b7fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff944b8000 -
    0x7fff944e3ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
    0x7fff944e4000 -
    0x7fff94524fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff947a1000 -
    0x7fff947a8fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff947f2000 -
    0x7fff94894ff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff94cc8000 -
    0x7fff94e9cfff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94e9d000 -
    0x7fff94f50fff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 1082
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=171.3M resident=111.1M(65%) swapped_out_or_unallocated=60.1M(35%)
    Writable regions: Total=71.0M written=2800K(4%) resident=3416K(5%) swapped_out=0K(0%) unallocated=67.6M(95%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    CG shared images               
    128K
    CoreServices                  
    2732K
    MALLOC                        
    60.1M
    MALLOC guard page               
    48K
    SQLite page cache              
    576K
    STACK GUARD                   
    56.0M
    Stack                         
    10.0M
    VM_ALLOCATE                     
    64K
    __CI_BITMAP                     
    80K
    __DATA                        
    16.3M
    __IMAGE                        
    528K
    __LINKEDIT                    
    47.6M
    __RC_CAMERAS                   
    232K
    __TEXT                       
    123.7M
    __UNICODE                      
    544K
    mapped file                   
    24.6M
    shared memory                  
    312K
    ===========                 
    =======
    TOTAL                        
    343.4M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Display Ethernet, Ethernet, en2
    PCI Card: pci12d8,400e, sppci_usbopenhost, Thunderbolt@107,0,0
    PCI Card: pci12d8,400e, sppci_usbopenhost, Thunderbolt@107,0,1
    PCI Card: pci12d8,400f, USB Enhanced Host Controller, Thunderbolt@107,0,2
    PCI Card: Apple 57761-B0, sppci_ethernet, Thunderbolt@108,0,0
    PCI Card: pci11c1,5901, sppci_ieee1394openhci, Thunderbolt@109,0,0
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    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
    USB Device: hub_device, apple_vendor_id, 0x9127, 0x40100000 / 2
    USB Device: Apple Thunderbolt Display, apple_vendor_id, 0x9227, 0x40170000 / 5
    USB Device: FaceTime HD Camera (Display), apple_vendor_id, 0x1112, 0x40150000 / 4
    USB Device: Display Audio, apple_vendor_id, 0x1107, 0x40140000 / 3

    Hi ..
    Go to     ~/Library/Preferences
    Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Launch Safari to test.
    If that helped, move the .plist file to the Trash, If not, just move it back to the Preferences folder.
    If that didn't work, try installing the OS X Lion Update 10.7.3 (Client Combo)
    Then restart your Mac, try Safari.
    It's ok to do this even though you are already running v10.7.3
    ~ (Tilde) character represents the Home folder
    Others Have the same question:
    Safari Crashes on launch: Apple Support Communities
    "safari quit unexpectedly" on opening...: Apple Support Communities
    Safari crashes on launch: Apple Support Communities
    Safari does not launch: Apple Support Communities
    Hope I helped,
    Simmm

  • Installing Mavericks produced "a connection error occurred" in Mail and "connection failed" in App Store

    Dear Apple Support Community!
    I installed Mavericks OS X on my iMac immediately after it was released. I was soon starting to experience trouble with logging in to Mail and App Store. After contacting Apple Support and trying various tips and tricks to no avail, like re-installing Mavericks for instance, I just decided to wait for an update of the OS X to see if that would solve my problems. Unfortunately, that didn't help either.
    I therefore turn to the Apple Support Communities in hope of expert help that will solve my problems.
    Here are the actions that result in error messages:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    App Store > Sign In > Apple ID/Password > Sign In > Connection failed.
    I have three accounts on my computer:
    System Administrator, Guest Account and Other.
    I use the “Other” account as my regular account. When I log in to the System Administrator or Guest Account I don’t experience any problems; Mail and App Store work as they should.
    Booting in safe mode does not solve the problem:
    I disconnected all wired peripherals except those needed for the test, and removed all aftermarket expansion cards. I booted in safe mode and logged in to the account with the problem.
    I tested the said actions while in safe mode. The problems were the same.
    After testing, I rebooted as usual (i.e., not in safe mode) and verified that I still had the problems.
    Info about my Mac:
    iMac
    24-inch Mid 2007
    Processor  2,8 GHz Intel Core 2 Duo
    Memory  4 GB 667 MHz DDR2 SDRAM
    Graphics  ATI Radeon HD 2600 Pro 256 MB
    Serial Number  xxxxxxxxxxx
    Software  OS X 10.9.1 (13B42)
    Console System Logs
    Console log – All Messages
    Action:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    02.02.14 12:41:38,030 SafariNotificationAgent[43964]: Error calling realpath on the home directory.
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[43964]) Exited with code: 1
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    02.02.14 12:41:38,231 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager keychainEntryForUserName:] [359] -- Failed to fetch keychain item for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,234 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager setKeychainEntry:ForUserName:] [380] -- *** Failed to store token in keychain for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,263 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,291 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,300 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,309 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,318 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,352 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,426 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,430 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,497 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,498 Mail[43640]: NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -67674)
    02.02.14 12:41:38,498 Mail[43640]: -[IAAccountAuthenticator connection:didFailWithError:] [172] -- *** error: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo=0x6000001b36a0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fdf23579d20 [0x7fff75b66eb0]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x60000084b220 "An SSL error has occurred and a secure connection to the server cannot be made.", NSErrorPeerCertificateChainKey=(
        "<SecCertificate 0x7fdf2357bf90 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23579ae0 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23578e00 [0x7fff75b66eb0]>"
    ), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://www.google.com/accounts/ClientLogin, NSErrorFailingURLStringKey=https://www.google.com/accounts/ClientLogin, NSErrorClientCertificateStateKey=0}
    Full report of the following incident:
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         com.apple.intern [66431]
    Path:            /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
    Load Address:    0x101a8b000
    Identifier:      com.apple.internetaccounts
    Version:         1 (1.0)
    Build Info:      1-InternetAccountsFramework_executables~192000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [1]
    Date/Time:       2014-02-02 12:41:38.232 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff8587da18 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::__1::vector<Security::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 88
    11  Security                                0x00007fff85754f5c SecKeychainSearchCreateFromAttributes + 142
    12  Security                                0x00007fff858930a8 _CreateSecItemParamsFromDictionary(__CFDictionary const*, int*) + 3493
    13  Security                                0x00007fff8588fca7 SecItemCopyMatching_osx(__CFDictionary const*, void const**) + 133
    14  Security                                0x00007fff8588f95d SecItemCopyMatching + 390
    15  InternetAccounts                        0x00007fff900ad7c5 +[IAGoogleAuthTokenManager keychainEntryForUserName:] + 215
    16  InternetAccounts                        0x00007fff900ad604 +[IAGoogleAuthTokenManager googleTokenForEmailAddress:shouldCreateToken:] + 48
    17  com.apple.internetaccounts              0x0000000101a95c83
    18  CoreFoundation                          0x00007fff8c991dec __invoking___ + 140
    19  CoreFoundation                          0x00007fff8c991c54 -[NSInvocation invoke] + 308
    20  Foundation                              0x00007fff844b5af6 -[NSXPCConnection _decodeAndInvokeMessageWithData:] + 1469
    21  Foundation                              0x00007fff844b26be message_handler + 381
    22  libxpc.dylib                            0x00007fff90ef6510 _xpc_connection_call_event_handler + 58
    23  libxpc.dylib                            0x00007fff90ef5123 _xpc_connection_mach_event + 2124
    24  libdispatch.dylib                       0x00007fff86e1aafe _dispatch_client_callout4 + 9
    25  libdispatch.dylib                       0x00007fff86e1b3b8 _dispatch_mach_msg_invoke + 143
    26  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    27  libdispatch.dylib                       0x00007fff86e1a69e _dispatch_mach_invoke + 154
    28  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    29  libdispatch.dylib                       0x00007fff86e1a9dd _dispatch_queue_invoke + 110
    30  libdispatch.dylib                       0x00007fff86e18fa3 _dispatch_root_queue_drain + 75
    31  libdispatch.dylib                       0x00007fff86e1a193 _dispatch_worker_thread2 + 40
    32  libsystem_pthread.dylib                 0x00007fff8c5ceef8 _pthread_wqthread + 314
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fb9 start_wqthread + 13
    Binary Images:
           0x101a8b000 -        0x101a9efff  com.apple.internetaccounts (1.0 - 1) <fedaf54b-d9b6-3da1-b4bc-e2cef64a8491> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86e16000 -     0x7fff86e30fff  libdispatch.dylib (339.1.9) <46878a5b-4248-3057-962c-6d4a235eef31> /usr/lib/system/libdispatch.dylib
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90096000 -     0x7fff900e5ff7  com.apple.framework.internetaccounts (2.1 - 210) <c77069c7-928c-315c-aa61-d90543901f20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90eeb000 -     0x7fff90f0ffff  libxpc.dylib (300.1.17) <4554927a-9467-365c-91f1-5a116989dd7f> /usr/lib/system/libxpc.dylib
    Full report of the following incident:
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         Mail [43640]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Load Address:    0x10c586000
    Identifier:      com.apple.mail
    Version:         1827 (7.1)
    Build Info:      5-Mail~1827000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:41:38.276 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Console log – All Messages
    Action:
    App Store > Sign In > Apple ID / Password > Sign In > Connection failed.
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,372 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,377 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,384 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,390 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,396 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,402 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,409 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:09,730 SafariNotificationAgent[44337]: Error calling realpath on the home directory.
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[44337]) Exited with code: 1
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    Full report of the following incident:
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         App Store [44259]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Load Address:    0x107a6d000
    Identifier:      com.apple.appstore
    Version:         201 (1.3)
    Build Info:      61-Firenze~201000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:51:07.307 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    I have had somewhat similar problems as Øystein Ange since upgrading from Snow Leopard to Mavericks in January. But fortunately, I have been able to solve many of them after a lot of trial & error, frustration and sweat! I now long for the more than 2 years of previous Snow Leopard usage when problems were small, few and far between, and quickly solvable. I feel as if Apple has cut me adrift and left me to struggle on my own with the seemingly numerous problems of getting the performance of Mavericks to finally stabilize on my iMac.
    Øystein's Feb. 8th post asks some of the same Mavericks questions that I still have. It would be very helpful to me, and to others I'm sure, if someone/anyone has specific suggestions or solutions on what one could/should do to fix specific problems with newly installed Mavericks OSs, short of a clean, full re-install of the OS.
    I have one admin account plus the guest account on my iMac Mavericks. Does this mean my admin account is a/the root account?! How can one tell whether or not they are logging in with a root account?! What's the distinction between the root account, a user's admin account, and other standard users' accounts?! Could someone please recommend a definitive Apple document describing all the various types of Mavericks accounts, in detail, and how/when/where/why each type should be used before or along with any of the others?
    Why is it suddenly a no-no to log on to Mavericks via the root user account, when previous OS versions had no problem with this?! What's the purpose of the root user account if not to use it to log on to the computer?! If it's so dangerous, why isn't it internally safeguarded from inadvertent logins by casual users?! What damage or harm are we talking about, and why weren't personal-use customers given a big warning about this apparent "booby trap" in Mavericks?! Saying NEVER DO THAT is like closing the barn door after the horse has already bolted, and it explains nothing to the casual user.
    We can't just do a clean re-install every time something in Mavericks hiccups?! Based on my recent experience, and on what I'm seeing in this thread, I would have had to re-installed it a half dozen times in the past 2 months alone!! That's nonsensical. There's got to be a better way of fixing a newly installed Mavericks OS than doing a re-install over and over again. Why don't the Mac diagnostic and troubleshooting tools work in Mavericks' case, as they have done for me on many occasions on earlier OS versions?! What is it about Mavericks that makes it different this time?! Could it possibly have something to do with integration of Mavericks and iCloud; and, if so, what specific cautions should the casual user observe to make sure they don't jeopardize the integrity of Mavericks by doing something similar to logging in from the root account?!
    Many customers need to be brought in out of the dark! Is there an Apple Mavericks expert out there who can advise the customer community on specifically how to apply the existing repair tools to solve specific Mavericks teething problems, without having to revert to multiple OS re-installs?

  • Mail Unexpectedly Quits on admin account but not others

    This is a Mail quit with a twist...
    I have already done the following:
    repaired permissions
    deleted plist files
    installed the updates for the OS and for mail.
    checked for plugins and don't have any
    deleted cache files
    tried another copy of mail.app from my laptop
    repaired permissions again
    checked hardware
    checked disc
    installed the update again
    There are no to-do's.
    I removed any fonts with warnings.
    Seems no matter what I do, mail will crash a few seconds after it is opened when in the main admin account on this iMac. Other mail programs work (like Thunderbird). Internet works fine too. When in another user account, I can open and view mail and it works fine.
    Crash log says the following:
    Process: Mail [3051]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.5 (930.3)
    Build Info: Mail-9300300~1
    Code Type: X86 (Native)
    Parent Process: launchd [92]
    Date/Time: 2009-01-12 18:42:06.223 -0500
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000cf5f8b80
    Crashed Thread: 7
    Application Specific Information:
    -[MailApp doBackgroundFetch:]
    -[RSSLibraryStore addEntries:fromFeed:]
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[MailAddressManager loadAddressBookSynchronously]
    Thread 0:
    0 com.apple.CoreFoundation 0x900744d6 __CFAllocatorSystemDeallocate + 6
    1 com.apple.CoreFoundation 0x901287f0 _parseComponents + 1632
    2 com.apple.CoreFoundation 0x9012d10e _retainedComponentString + 782
    3 com.apple.CoreFoundation 0x9012e1c6 CFURLCopyScheme + 214
    4 com.apple.CoreFoundation 0x90132500 CFURLCreateDataAndPropertiesFromResource + 32
    5 com.apple.CoreFoundation 0x9008e127 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 1271
    6 com.apple.CoreFoundation 0x9007e325 CFBundleGetInfoDictionary + 85
    7 com.apple.CoreFoundation 0x9008279d _CFBundleCreate + 637
    8 com.apple.Foundation 0x91ed4586 -[NSBundle _cfBundle] + 134
    9 com.apple.Foundation 0x91ed863a -[NSBundle pathForResource:ofType:] + 42
    10 ...apple.AddressBook.framework 0x9295bc1a -[ABAddressBook localizedDefaults] + 178
    11 ...apple.AddressBook.framework 0x9295b18e -[ABAddressBook nts_InitDefaultContactManager] + 64
    12 ...apple.AddressBook.framework 0x9295b093 +[ABAddressBook nts_SharedAddressBook] + 77
    13 ...apple.AddressBook.framework 0x9295afd9 +[ABAddressBook nts_CreateSharedAddressBook] + 65
    14 ...apple.AddressBook.framework 0x9295ae34 +[ABAddressBook sharedAddressBook] + 123
    15 ...apple.AddressBook.framework 0x92964faa -[ABSearchElementMatch initWithProperty:label:key:value:searchPeople:searchSubscribed:comparison:] + 319
    16 ...apple.AddressBook.framework 0x92964e63 -[ABSearchElementMatch initWithProperty:label:key:value:searchPeople:comparison:] + 85
    17 ...apple.AddressBook.framework 0x92964a58 +[ABPerson searchElementForProperty:label:key:value:comparison:] + 124
    18 com.apple.mail 0x00037dcc 0x1000 + 224716
    19 com.apple.mail 0x0003679f 0x1000 + 219039
    20 com.apple.Foundation 0x91f0522e __NSFireDelayedPerform + 382
    21 com.apple.CoreFoundation 0x900dcb25 CFRunLoopRunSpecific + 4469
    22 com.apple.CoreFoundation 0x900dccd8 CFRunLoopRunInMode + 88
    23 com.apple.HIToolbox 0x901da2c0 RunCurrentEventLoopInMode + 283
    24 com.apple.HIToolbox 0x901da0d9 ReceiveNextEventCommon + 374
    25 com.apple.HIToolbox 0x901d9f4d BlockUntilNextEventMatchingListInMode + 106
    26 com.apple.AppKit 0x93004d7d _DPSNextEvent + 657
    27 com.apple.AppKit 0x93004630 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    28 com.apple.AppKit 0x92ffd66b -[NSApplication run] + 795
    29 com.apple.AppKit 0x92fca8a4 NSApplicationMain + 574
    30 com.apple.mail 0x000fb6f2 0x1000 + 1025778
    Thread 1:
    0 libSystem.B.dylib 0x927541c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9275b9bc mach_msg + 72
    2 com.apple.CoreFoundation 0x900dc0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x900dccd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91f04d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x91f10e94 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d6f65 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    8 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x92785095 pthreadstart + 321
    10 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9275b3ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x92785d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x96ea2ab9 fefragmentthread + 54
    3 libSystem.B.dylib 0x92785095 pthreadstart + 321
    4 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9275420e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9275bce5 pthreadmutexlock + 569
    2 ...apple.AddressBook.framework 0x9295adf1 +[ABAddressBook sharedAddressBook] + 56
    3 com.apple.MessageFramework 0x003114d3 -[MailAddressManager loadAddressBookSynchronously] + 37
    4 com.apple.CoreFoundation 0x9015ba3d _invoking__ + 29
    5 com.apple.CoreFoundation 0x9015b428 -[NSInvocation invoke] + 136
    6 com.apple.MessageFramework 0x003d940c -[MonitoredInvocation invoke] + 409
    7 com.apple.MessageFramework 0x003d8fee -[InvocationQueue _drainQueue] + 772
    8 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    9 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x92785095 pthreadstart + 321
    11 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9275b3ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x92785d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x91f182d2 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x91ed0c6a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x91f24288 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.apple.MessageFramework 0x00311688 -[NSObject(MainThreadMessaging) performSelectorInMainThread:] + 57
    6 com.apple.CoreFoundation 0x9015ba3d _invoking__ + 29
    7 com.apple.CoreFoundation 0x9015b428 -[NSInvocation invoke] + 136
    8 com.apple.MessageFramework 0x003da2ce +[WorkerThread _execute:] + 144
    9 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    10 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x92785095 pthreadstart + 321
    12 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9275f792 close$UNIX2003 + 10
    1 com.apple.security 0x92de8bad Security::AtomicBufferedFile::close() + 25
    2 com.apple.security 0x92de244a Security::DbVersion::DbVersion(Security::AppleDatabase const&, Security::RefPointer<Security::AtomicBufferedFile> const&) + 150
    3 com.apple.security 0x92de4475 Security::DbModifier::getDbVersion(bool) + 429
    4 com.apple.security 0x92de55c2 Security::DbModifier::openDatabase() + 40
    5 com.apple.security 0x92df7f0a Security::Database::_dbOpen(Security::DatabaseSession&, unsigned int, Security::AccessCredentials const*, void const*) + 206
    6 com.apple.security 0x92df7736 Security::DatabaseManager::dbOpen(Security::DatabaseSession&, Security::DbName const&, unsigned int, Security::AccessCredentials const*, void const*) + 64
    7 com.apple.security 0x92df9320 Security::DatabaseSession::DbOpen(char const*, cssmnetaddress const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 96
    8 com.apple.security 0x92d8ea95 Security::MDSSession::DbFilesInfo::objDbHand() + 133
    9 com.apple.security 0x92d8fbc9 Security::MDSSession::DbFilesInfo::removeOutdatedPlugins() + 281
    10 com.apple.security 0x92d903d7 Security::MDSSession::updateDataBases() + 1241
    11 com.apple.security 0x92d905e4 Security::MDSSession::DbOpen(char const*, cssmnetaddress const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 108
    12 com.apple.security 0x92d8a464 mds_DbOpen(long, char const*, cssmnetaddress const*, unsigned int, cssmaccesscredentials const*, void const*, long*) + 144
    13 com.apple.security 0x92e0c472 Security::MDSClient::Directory::cdsa() const + 128
    14 com.apple.security 0x92e0c556 Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssmdb_record_attributedata&, cssm_data*, cssmdb_uniquerecord*&) + 22
    15 com.apple.security 0x92e0d789 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 183
    16 com.apple.security 0x92e0d897 Security::CssmClient::Table<Security::MDSClient::Common>::find(Security::CssmCl ient::Query const&) + 111
    17 com.apple.security 0x92d2dfe4 Security::KeychainCore::DynamicDLDBList::_load() + 264
    18 com.apple.security 0x92d2e6f6 Security::KeychainCore::DynamicDLDBList::searchList() + 86
    19 com.apple.security 0x92d619fd Security::KeychainCore::StorageManager::getSearchList(std::vector<Security::Key chainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 129
    20 com.apple.security 0x92d61d03 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 33
    21 com.apple.security 0x92d501af SecKeychainFindInternetPassword + 161
    22 com.apple.MessageFramework 0x0031a7cc +[MessageKeychainManager _passwordForHost:username:port:protocol:itemRef:] + 215
    23 com.apple.MessageFramework 0x0031a541 +[MessageKeychainManager passwordForHost:username:port:protocol:] + 139
    24 com.apple.MessageFramework 0x0031a435 -[Account passwordFromKeychain] + 166
    25 com.apple.MessageFramework 0x0031a23d -[Account passwordFromStoredUserInfo] + 74
    26 com.apple.MessageFramework 0x00319e89 -[Account password] + 93
    27 com.apple.MessageFramework 0x003a4b6e -[Account _connectAndAuthenticate:] + 63
    28 com.apple.MessageFramework 0x00429e7b -[Account authenticatedConnection] + 108
    29 com.apple.MessageFramework 0x0040c7ea -[POP3FetchStore fetchSynchronously] + 661
    30 com.apple.MessageFramework 0x0043f6e6 -[POPAccount fetchSynchronously] + 337
    31 com.apple.CoreFoundation 0x9015ba3d _invoking__ + 29
    32 com.apple.CoreFoundation 0x9015b428 -[NSInvocation invoke] + 136
    33 com.apple.MessageFramework 0x003d940c -[MonitoredInvocation invoke] + 409
    34 com.apple.MessageFramework 0x003d8fee -[InvocationQueue _drainQueue] + 772
    35 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    36 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    37 libSystem.B.dylib 0x92785095 pthreadstart + 321
    38 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x92754226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927861ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x92787a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x91f1675c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x91f16570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d8e27 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    7 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x92785095 pthreadstart + 321
    9 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 7 Crashed:
    0 ...ple.CoreServices.CarbonCore 0x95e210fb GetVariableUnitClientBytesLength(VariableUnit const*) + 1
    1 com.apple.LaunchServices 0x94f9e646 CSStringCopyCFString + 94
    2 com.apple.LaunchServices 0x94fbc2f1 CSStringBindingCopyCFStrings + 139
    3 com.apple.LaunchServices 0x94fbc059 _LSCopySchemesAndHandlerURLs + 149
    4 com.apple.MessageFramework 0x00337a31 +[URLifier _urlMatchesForString:startIndex:matches:] + 2784
    5 com.apple.MessageFramework 0x00336aad +[URLifier urlMatchesForString:] + 363
    6 com.apple.MessageFramework 0x003a056f -[FormatFlowedWriter _outputQuotedParagraph] + 335
    7 com.apple.MessageFramework 0x003a03a6 -[FormatFlowedWriter outputString] + 746
    8 com.apple.MessageFramework 0x0039fffc -[NSAttributedString(FormatFlowedSupport) getFormatFlowedString:insertedTrailingSpaces:encoding:] + 88
    9 com.apple.MessageFramework 0x0039fe17 _createFormatFlowedPart + 181
    10 com.apple.MessageFramework 0x00388867 -[MessageWriter createMessageWithHtmlString:plainTextAlternative:otherHtmlStringsAndAttachments :headers:] + 1963
    11 com.apple.MessageFramework 0x0049f30f +[RSSLibraryStore _messageForEntry:feed:store:isUpdated:] + 4181
    12 com.apple.MessageFramework 0x0049df21 -[RSSLibraryStore addEntries:fromFeed:] + 669
    13 com.apple.CoreFoundation 0x9015ba3d _invoking__ + 29
    14 com.apple.CoreFoundation 0x9015b428 -[NSInvocation invoke] + 136
    15 com.apple.MessageFramework 0x003d940c -[MonitoredInvocation invoke] + 409
    16 com.apple.MessageFramework 0x003d8fee -[InvocationQueue _drainQueue] + 772
    17 com.apple.Foundation 0x91ed07ed -[NSThread main] + 45
    18 com.apple.Foundation 0x91ed0394 _NSThread__main_ + 308
    19 libSystem.B.dylib 0x92785095 pthreadstart + 321
    20 libSystem.B.dylib 0x92784f52 thread_start + 34
    Thread 7 crashed with X86 Thread State (32-bit):
    eax: 0xcf5f8b80 ebx: 0x95e220d1 ecx: 0x00000000 edx: 0x0088c418
    edi: 0x84fbbbbb esi: 0x13a39000 ebp: 0xb03b5358 esp: 0xb03b5318
    ss: 0x0000001f efl: 0x00010282 eip: 0x95e210fb cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0xcf5f8b80
    Binary Images:
    0x1000 - 0x271ff3 com.apple.mail 3.5 (930.3) <918d5fc75d11e2bad29cc7192e8459d2> /Applications/Mail.app/Contents/MacOS/Mail
    0x2e0000 - 0x537ffb com.apple.MessageFramework 3.5 (930.3) <548c39b875ebdc054eed49e9dd5238f3> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x68d000 - 0x68ffff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x696000 - 0x6bafe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x1396c000 - 0x13971ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x13af9000 - 0x13ccbfe7 com.apple.RawCamera.bundle 2.0.10 (2.0.10) <fea6d22f985aec2f376d937291b54ecc> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90021ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90022000 - 0x90051fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90052000 - 0x90068fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <7e010557527a0e6d49147c297d16850a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90069000 - 0x9019cfff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9019d000 - 0x901a9ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x901aa000 - 0x904b2fff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x904b3000 - 0x904bffff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x904c0000 - 0x9058bfff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9058c000 - 0x9058cffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9058d000 - 0x905a5fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x905a6000 - 0x905abffc com.apple.KerberosHelper 1.1 (1.0) <d789cb3b793a05879bde688c19f60afe> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x905ac000 - 0x905d6fff com.apple.CoreMediaPrivate 1.4 (1.4) <59630ee9096ecf2ca1e518da2f46c68d> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x905d7000 - 0x90628feb com.apple.framework.familycontrols 1.0.3 (1.0.3) <52c7ec091f6d3dc99ec42e1e185c38a7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90629000 - 0x90667ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90668000 - 0x90d08fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90d09000 - 0x90ec5ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90ec6000 - 0x90f45ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90f46000 - 0x90f4ffff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90f50000 - 0x90faaff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90fab000 - 0x9108bfff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x9108c000 - 0x910c3fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x910c4000 - 0x9120aff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9120b000 - 0x91233fff libcups.2.dylib ??? (???) <81abd305142ad1b771024eb4a1309e2e> /usr/lib/libcups.2.dylib
    0x91234000 - 0x91705f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91706000 - 0x91ac4fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91ac5000 - 0x91ad5ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91b9e000 - 0x91c65ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c66000 - 0x91cedff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x91cee000 - 0x91dbcff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91dc5000 - 0x91e7ffe3 com.apple.CoreServices.OSServices 226.5 (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91e80000 - 0x91e86fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91e87000 - 0x91e98ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x91e99000 - 0x91ea0ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91ea1000 - 0x91ec5feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x91ec6000 - 0x92141fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92142000 - 0x92142ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92143000 - 0x92148fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92149000 - 0x92160fff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92161000 - 0x92208feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92209000 - 0x92341ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x92342000 - 0x92752fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92753000 - 0x928baff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x928bb000 - 0x92958ffc com.apple.CFNetwork 422.11 (422.11) <2780dfc3d2186195fccb3634bfb0944b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92959000 - 0x92ad8fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92ad9000 - 0x92b0dfef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92b0e000 - 0x92b48ffe com.apple.securityfoundation 3.0 (32989) <ef1baca4880788750c38461222b60cae> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92b49000 - 0x92caaff2 com.apple.CalendarStore 3.0.6 (847) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x92cab000 - 0x92cf9ff3 com.apple.datadetectorscore 1.0.2 (52.14) <4c0a8d505509b7748d3a0cfc887d2c2a> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92cfa000 - 0x92ec8ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92ec9000 - 0x92ed8fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x92ed9000 - 0x92fbaff7 libxml2.2.dylib ??? (???) <c65c902ca6afc1b4cf68b90cff921cc5> /usr/lib/libxml2.2.dylib
    0x92fbb000 - 0x92fc3fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92fc4000 - 0x937c2fef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9474b000 - 0x947bdfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x947be000 - 0x948bffef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x948c0000 - 0x948ceffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x948cf000 - 0x94911fef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94912000 - 0x94936fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x94937000 - 0x9493bfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9493c000 - 0x94947fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94a3d000 - 0x94a4dfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94a4e000 - 0x94acbfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94acc000 - 0x94ae1ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94ae2000 - 0x94b1ffff com.apple.CoreMediaIOServicesPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x94b20000 - 0x94b22ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94b23000 - 0x94b23ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94b24000 - 0x94bd4fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94c05000 - 0x94c05ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94c06000 - 0x94c0bfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94c0c000 - 0x94c10fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x94c11000 - 0x94c1bfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94c1c000 - 0x94c79ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x94c7a000 - 0x94f8efe2 com.apple.QuickTime 7.4.1 (14) <1a4838d29e0804a2a102f03c053600f0> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94f8f000 - 0x9501bff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9501c000 - 0x95020fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9528a000 - 0x952bbffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x952bc000 - 0x952bcffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x952bd000 - 0x95307fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95308000 - 0x95308ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95309000 - 0x9530cfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9530d000 - 0x9532bfff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
    0x9532c000 - 0x95338ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95339000 - 0x95339ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9533a000 - 0x953b7feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x953b8000 - 0x953c5fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x953c6000 - 0x953e2fff com.apple.IMFramework 4.0.5 (583) <a1890d82d681840490025bb50bf97cf8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x953e3000 - 0x953f2ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x953f3000 - 0x9552bfe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9552c000 - 0x95531fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95532000 - 0x95539ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9553a000 - 0x95593ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95594000 - 0x9559bfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9559c000 - 0x9562fff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95630000 - 0x9563bfff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9563c000 - 0x95721ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95722000 - 0x95766feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95767000 - 0x957a6fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x957a7000 - 0x957a7fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x957a8000 - 0x957acffd com.apple.AOSNotification 1.0.0 (68.10) <38239776860eed3c5265d4ae3c21dd73> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x957ad000 - 0x95dfdfff com.apple.WebCore 5525.18.1 (5525.18.1) <017c41396dd54275da6d7a9c63697f1d> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95dfe000 - 0x95dfeffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95dff000 - 0x95e1effa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95e1f000 - 0x960f9ff3 com.apple.CoreServices.CarbonCore 786.10 (786.10) <ec35bb05f67fe0e828d49dda88bbf6d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x960fa000 - 0x9610dfff com.apple.IMUtils 4.0.5 (583) <b54c55fea76255e789f607b78592c468> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9610e000 - 0x9619affb com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9619b000 - 0x961b8ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x961b9000 - 0x961b9ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x961ba000 - 0x9624dfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96251000 - 0x96292fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96297000 - 0x96298ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x96299000 - 0x962d5fff com.apple.DAVKit 3.0.6 (653) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x962d6000 - 0x962feff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x962ff000 - 0x963b1ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x963b2000 - 0x963e4fff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x963e5000 - 0x96434fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96435000 - 0x96467ff7 com.apple.DotMacSyncManager 1.2.3 (305) <76f2a03fbb91d701cd8c1d1dde21b531> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x96468000 - 0x965baff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x965bb000 - 0x96646fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x966f0000 - 0x96756ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96757000 - 0x96784feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96785000 - 0x967f2ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x967f3000 - 0x967f5fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x967f6000 - 0x96880fef com.apple.DesktopServices 1.4.7 (1.4.7) <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96881000 - 0x96962fff com.apple.syncservices 3.1 (389.12) <e0c2241379300f52b12b479e53797016> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x96963000 - 0x9699dfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9699e000 - 0x969efff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96ac4000 - 0x96adafff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96adb000 - 0x96b55ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96b56000 - 0x96b81fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x96b82000 - 0x96bb8fef libtidy.A.dylib ??? (???) <468dcda829b0307ea64cb1967605af0c> /usr/lib/libtidy.A.dylib
    0x96bb9000 - 0x96bd4ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96bd5000 - 0x96c31ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96c32000 - 0x96ceffff com.apple.WebKit 5525.18.1 (5525.18.1) <1840d06d9111a595a5d71f489da73299> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96cf0000 - 0x96d62fff com.apple.iLifeMediaBrowser 1.0.11 (212.1.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x96d63000 - 0x96d63ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96d64000 - 0x96dadfef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96dae000 - 0x9714bfef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    It always has a crash log with a crashed thread that says the same basic things
    I've got so much stuff in this one user account that I'd really like to avoid having to transfer everything to another user account unless there's an uncomplicated way of doing it. I've already started stuffing my pics and songs into my shared folder for dragging around later.
    Any help to fix the problem in my admin account's instance of Mail would be greatly appreciated,
    Thanks!
    Eric
    Message was edited by: Eric SN

    It looks to me as though your Launch Services database may be corrupted and need to be reset, which you can do by downloading Onyx for your system and running the Maintenance > Reset section, making sure to check the box to reset the LaunchServices database. You should, of course, quit all running applications while you're doing this.
    But I'm puzzled as to why you are running Mail in the Admin account; you should never be running anything in that account unless you're performing a system administration task. You risk security and hosing your entire system by being in there; everything else on your Mac depends on that account working normally. If you need to use Mail, you need to create a separate user account just for you.
    Mulder

  • Single-signon for multiple sites or sub sites

    Does anyone know of some good articles/publications or suggestions for
    implementing a single signon for multiple very secure internet sites in
    weblogic type environments.
    For example, bank1 has a internet site and bank 2 has an internet site.
    Bank 2 has some cool features they want to offer bank1's customers. They
    agree but, bank1 wants to present bank2 as a tab or part of bank1 site.
    IN order to do this there are lots of fun things, but the things Im
    interested in are how to authenticate between them and handle timeouts.
    timeouts seem particularly tricky in that if I dont hit a page on bank2
    for a while, it could time out its session for the guy on bank1. Also if
    im in the bank2 section of the site, then bank1 could time me out as
    well.
    any ideas let me know.
    thanks
    Joel

    I've been informed ;-) that a pure Java solution is also available from
    Entegrity. So here are a couple of URLs for you to research
    anagrammatically:
    http://www.netegrity.com
    http://www.entegrity.com
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    Tangosol: How Weblogic applications are customized
    "Cameron Purdy" <[email protected]> wrote in message
    news:[email protected]...
    Netegrity?
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    Tangosol: How Weblogic applications are customized
    "Tim Funk" <[email protected]> wrote in message
    news:[email protected]...
    This is long winded and I tried to have this make sense, if it doesn't
    just mark this as read ...
    I am running into the same issue. Out of need, different applications
    need to be hosted on different boxes/JVM's/web applications. I am
    experimenting with a customer single sign on process which is
    independent of Java but lends itself nicely to it. Here is my thoughts:
    1) All applications need to run under the same domain. For example:
    foo.redrose.net, www.redrose.net, bar.redrose.net, app1.redrose.net
    all reside under redose.net.
    2) You have a database table (secure) that contains the following:
    user id, password, session id, last access time.
    3) This database table contains all of the valid sessions across the
    domain (in this exmaple .redrose.net)
    4) There is a daemon running which runs every ?? seconds that deletes
    any records older than ?? seconds/(or minutes/hours) in the
    database.
    5) There exist a cookie which is set to the domain level that contains
    the session id.
    6) The session id provides a way to obtain the id and password for the
    user to authenticate to the container. For example in WL5.1SP8 there
    exists: weblogic.servlet.security.ServletAuthentication.weak(...) to
    authenticate to your container. By using this you will get the
    capability of setting up your roles and ACLS etc in you web.xml and
    weblogic.xml to handle authorization.
    7) All requests to any applications participating in this philosophy
    must do the following for EVERY request (or appropriate):
    Even if you are logged authenticated to the container and authorized,
    you may have timed out or logged out of another application. So the
    database table must be checked to see if the session id exists. At the
    same time, you must also update the last access time to prevent timeout.
    8) If the user tries to access a different application which he has not
    authenticated to yet - the user will be forwarded to a servlet whichwill:
    a) Look for the cookie at the domain level
    b) If the cookie is found - get the UID and PWD from database
    b2) Present login form if cookie is invalid/not exists
    c) Authenticate to container
    d) Forward back to original page and let the container handle
    authorization since you have already authenticated.
    I use have encapsulated the database activity into 3 stored functions:
    1) isValidSession(session_id) - Returns null or the user id and pwd
    concatentated which will need split apart if needed
    2) makeSession(user_id, password) - Returns a new unique session id and
    creates the appropriate record
    3) cleanUpSessions() - Arguements not yet determined. This will delete
    any records older than a certain time. I would like to have the proc
    know what to delete without being given a parameter but time to the
    second level can be tricky for some DBMS's.
    There is a concern of storing the user id and password in the database
    but this can be eliminated with a good design to restrict access to the
    database table and using encrypted connections.
    Hope this helps. Hopefully - a similar philosphy will be adopted by an
    application container so I may not have to worry about this and I can go
    back programming business functionality.
    -Tim
    Joel Nylund wrote:
    Does anyone know of some good articles/publications or suggestions for
    implementing a single signon for multiple very secure internet sites
    in
    weblogic type environments.
    For example, bank1 has a internet site and bank 2 has an internetsite.
    Bank 2 has some cool features they want to offer bank1's customers.They
    agree but, bank1 wants to present bank2 as a tab or part of bank1site.
    IN order to do this there are lots of fun things, but the things Im
    interested in are how to authenticate between them and handletimeouts.
    >>>
    timeouts seem particularly tricky in that if I dont hit a page onbank2
    for a while, it could time out its session for the guy on bank1. Alsoif
    im in the bank2 section of the site, then bank1 could time me out as
    well.
    any ideas let me know.
    thanks
    Joel

Maybe you are looking for

  • Itunes account over rode and erased when a second was downloaded. help!

    I had one Itunes account downloaded on my windows used with my Itunes shuffle. I used it regularly. When a second Itunes account was downloaded for a nano, it over rode the first account. All my songs were erased, and now my Itunes won't recognize my

  • 3.1 Stacked bar chart shows no color by default - Override possible?

    I noticed in Studio 3.1, stacked bar charts show no color by default. I also read in the documentation that this is the default behavior: "The chart is initially displayed with no color dimension selected. End users can then select a color dimension.

  • How far can i go

    i have a sempron 3000+ socket a processor k7n2 delta2 series fsr mobo 768mb ddr pc3200 memory 2 80gb hard dr 2 cdrom 400w ps powerlink +3.3  28a +5    40a +12  18a 3 case fan 2 case blower copper heatsink  up to 2.2                                  

  • Why slow confirmation of student creative suite CS6 for Mac?

    Having provided all requested documentation and payment, and been advised to expect a response within a 24hr time frame, why haven't I received confirmation necessary to download product after three [3]+ days?

  • Frame rate trouble

    I just finished animating a project using Flash CS6.  I'm relatively new to CS6 having previously been using CS3 but so far haven't had much difficulty.  Until now that is.  I've been rendering out my scenes as png image sequences to then import into