While using the Old syntax of outer join i encountered Ora-01719 error .

This is quite strange when i used the Old way of using Outer Joins(+), i encountered the Ora-01719 error saying Outer Joins not allowed in Or and IN operator.Whereas when i use the ANSI sql i query gets executed without any error.Any idea what might be the reason..is it that i myself is making mistake.
Please find the select statement below..
SELECT d4.c2, d4.c8, vw_rpt_prod_ln_grp.prod_grp_desc, d4.c10, d4.c5, d4.c3,
CASE
WHEN d4.c6 = 'Closed'
THEN d4.c6
WHEN d4.c6 = 'Closed (w/o Action)'
THEN d4.c6
WHEN d4.c6 =
'Closed, Supporting Process(es) Active'
THEN d4.c6
WHEN d4.c6 = 'Cancelled'
THEN d4.c6
WHEN t3.workflow_compnt_id = 1
THEN 'Definition'
WHEN t3.workflow_compnt_id = 2
THEN 'Root Cause'
WHEN t3.workflow_compnt_id = 3
THEN 'Solution'
WHEN t3.workflow_compnt_id = 4
THEN 'Implementation'
WHEN t3.workflow_compnt_id = 5
THEN 'Feedback'
WHEN t3.workflow_compnt_id = 9
THEN 'Preliminary Root Cause'
WHEN t3.workflow_compnt_id = 2001
THEN 'Report'
WHEN t3.workflow_compnt_id = 2002
THEN 'Sent'
WHEN t3.workflow_compnt_id = 2003
THEN 'Add. Info Needed'
WHEN t3.workflow_compnt_id = 2004
THEN 'Open'
WHEN t3.workflow_compnt_id = 2007
THEN 'Solution Feedback'
END issue_workflow_status,
CASE
WHEN d4.c6 = 'Closed'
THEN 0
WHEN d4.c6 = 'Closed (w/o Action)'
THEN 0
WHEN d4.c6 =
'Closed, Supporting Process(es) Active'
THEN 0
WHEN d4.c6 = 'Cancelled'
THEN 0
ELSE t3.workflow_compnt_id
END issue_workflow_status_code,
d4.c6, d4.c9,
CASE t3.issue_step_status_cd
WHEN 'In Progress'
THEN t3.step_target_submit_dt
WHEN 'Needs Additional Information'
THEN t3.step_target_submit_dt
WHEN 'Awaiting Approval'
THEN t3.step_target_closed_dt
ELSE NULL
END target_date,
CASE
WHEN CASE t3.issue_step_status_cd
WHEN 'In Progress'
THEN t3.step_target_submit_dt
WHEN 'Needs Additional Information'
THEN t3.step_target_submit_dt
WHEN 'Awaiting Approval'
THEN t3.step_target_closed_dt
ELSE NULL
END IS NULL
THEN 'N'
WHEN CASE t3.issue_step_status_cd
WHEN 'In Progress'
THEN t3.step_target_submit_dt
WHEN 'Needs Additional Information'
THEN t3.step_target_submit_dt
WHEN 'Awaiting Approval'
THEN t3.step_target_closed_dt
ELSE NULL
END < TRUNC (CURRENT_DATE)
THEN 'Y'
ELSE 'N'
END step_is_late,
t3.orig_user_full_nm, t3.champ_user_full_nm, t3.champ_org_nm,
vw_rpt_defntn.modl_yr_nbr, vw_rpt_vpps_lvl.level1_vpps_desc,
vw_rpt_vpps_lvl.level2_vpps_desc, vw_rpt_vpps_lvl.level3_vpps_desc,
vw_rpt_vpps_lvl.level4_vpps_desc,
Mv_RPT_CONCAT_ENGN_OPTN_ALL.concat_engn_optn,
vw_rpt_incdnt_src_three_level.level1_incdnt_src_desc,
vw_rpt_incdnt_src_three_level.level2_incdnt_src_desc,
vw_rpt_incdnt_src_three_level.level3_incdnt_src_desc,
vw_rpt_warranty_labr_code.concat_warranty_labr_code_desc, d4.c4, d4.c7,
vw_cust_survey_type.cust_survey_type_desc,
vw_complaint_ctg.complaint_ctg_cd,
vw_prob_main_cause.prob_main_cause_desc, soltn_step.confidence_lvl_id,
d4.c12, d4.c13
FROM (SELECT DISTINCT vw_rpt_issue.project_id c0,
vw_rpt_issue.prts_prod_ln_id c1,
vw_rpt_issue.issue_id c2,
vw_rpt_issue.disply_issue_nbr c3,
vw_rpt_issue.issue_sevrty_cd c4,
vw_rpt_issue.proj_nbr c5,
vw_rpt_issue.issue_status_cd c6,
vw_rpt_issue.primry_metric_score_nbr c7,
vw_rpt_issue.issue_type_cd c8, vw_rpt_issue.title c9,
vw_rpt_issue.prts_prod_ln_desc c10,
vw_rpt_leadtime.issue_id c11,
vw_rpt_leadtime.definition_start_dt c12,
vw_rpt_leadtime.definition_close_dt c13,
vw_rpt_leadtime.root_cause_start_dt c14,
vw_rpt_leadtime.root_cause_close_dt c15,
vw_rpt_leadtime.solution_start_dt c16,
vw_rpt_leadtime.solution_end_dt c17,
vw_rpt_leadtime.implementation_start_dt c18,
vw_rpt_leadtime.implementation_close_dt c19,
vw_rpt_leadtime.feedback_start_dt c20,
vw_rpt_leadtime.feedback_end_dt c21,
vw_rpt_leadtime.prc_start_dt c22,
vw_rpt_leadtime.prc_end_dt c23,
defntn_step.issue_id c24,
defntn_step.workflow_compnt_id c25,
defntn_step.complaint_ctg_id c26,
defntn_step.contnmt_actn_plan_id c27,
defntn_step.direct_run_imprvm_pct c28,
defntn_step.direct_run_loss_pct c29,
defntn_step.drive_type_id c30,
defntn_step.driving_cond_id c31,
defntn_step.eng_pgm_nbr c32,
defntn_step.engn_serial_nbr c33,
defntn_step.envrnmtl_cond_id c34,
defntn_step.ergo_rating_id c35,
defntn_step.evaltn_complt_pct c36,
defntn_step.evaltn_procdr_id c37,
defntn_step.gca_50_or_safety_issue_flag c38,
defntn_step.gca_value_amt c39,
defntn_step.gm_rating_id c40,
defntn_step.hardware_stage_id c41,
defntn_step.incdnt_discvrd_by_nm c42,
defntn_step.incdnt_discvr_dept_nm c43,
defntn_step.incdnt_discvr_ph_nbr c44,
defntn_step.incdnt_first_rptd_dt c45,
defntn_step.incdnt_src_id c46,
defntn_step.intrnl_measmt_info_owner_nm c47,
defntn_step.intrnl_measmt_plt_faclty_id c48,
defntn_step.intrnl_measmt_rpt_dt c49,
defntn_step.issue_clasfn_id c50,
defntn_step.issue_ctg_id c51,
defntn_step.issue_intgrtn_id c52,
defntn_step.modl_yr_id c53,
defntn_step.modl_yr_qtr_id c54,
defntn_step.odmtr_msmt_unit_id c55,
defntn_step.odmtr_rdng_msmt_unit_id c56,
defntn_step.odmtr_rdng_nbr c57,
defntn_step.odmtr_rdng_beginning_nbr c58,
defntn_step.odmtr_rdng_ending_nbr c59,
defntn_step.part_drblty_msmt_unit_id c60,
defntn_step.part_drblty_nbr c61,
defntn_step.part_test_msmt_unit_id c62,
defntn_step.part_test_nbr c63,
defntn_step.pe_me_trial_issue_flag c64,
defntn_step.pim_nbr c65,
defntn_step.plt_asmbly_doc_nbr c66,
defntn_step.productivity_nbr c67,
defntn_step.suspect_parts_avbl_flag c68,
defntn_step.suspect_parts_loc_txt c69,
defntn_step.trnsmn_serial_nbr c70,
defntn_step.veh_ident_nbr c71,
defntn_step.veh_proprt_nbr c72,
defntn_step.veh_test_msmt_unit_id c73,
defntn_step.veh_test_nbr c74,
defntn_step.vpps_id_nbr c75,
defntn_step.wrkstn_id c76,
defntn_step.road_surface_id c77,
defntn_step.cost_redctn_rpt_dt c78,
defntn_step.cost_redctn_trackg_nbr c79,
defntn_step.cost_redctn_type_id c80,
defntn_step.cust_survey_dt c81,
defntn_step.warnty_impct_rpt_dt c82,
defntn_step.field_prod_rpt_nbr c83
FROM (SELECT DISTINCT mv_rpt_issue_all.project_id
project_id,
mv_rpt_issue_all.prts_prod_ln_id
prts_prod_ln_id,
mv_rpt_issue_all.issue_id issue_id,
mv_rpt_issue_all.disply_issue_nbr
disply_issue_nbr,
mv_rpt_issue_all.issue_sevrty_cd
issue_sevrty_cd,
mv_rpt_issue_all.proj_nbr proj_nbr,
mv_rpt_issue_all.issue_status_cd
issue_status_cd,
mv_rpt_issue_all.primry_metric_score_nbr
primry_metric_score_nbr,
mv_rpt_issue_all.issue_type_cd
issue_type_cd,
mv_rpt_issue_all.title title,
mv_rpt_issue_all.prts_prod_ln_desc
prts_prod_ln_desc
FROM mv_rpt_issue_all,
vw_sec_acs_grp_proj acs_grp_proj
WHERE acs_grp_proj.acs_grp_id IN
(1,
4,
42,
43,
44,
51,
52,
53,
54,
266,
366,
386,
526,
546,
547,
548,
566,
846,
946,
966,
1006,
1066,
1087
AND mv_rpt_issue_all.prts_prod_ln_id =
acs_grp_proj.prts_prod_ln_id
AND mv_rpt_issue_all.project_id =
acs_grp_proj.project_id
AND mv_rpt_issue_all.issue_type_cd =
'Current Production') vw_rpt_issue,
vw_rpt_leadtime,
vw_defntn_step defntn_step
WHERE vw_rpt_issue.issue_id = vw_rpt_leadtime.issue_id
AND vw_rpt_issue.issue_id = defntn_step.issue_id) d4,
vw_rpt_incdnt_src_three_level,
vw_rpt_warranty_labr_code,
vw_rpt_prod_ln_grp,
(SELECT t1.issue_id issue_id, t1.workflow_compnt_id workflow_compnt_id,
t1.issue_step_status_cd issue_step_status_cd,
t1.step_target_closed_dt step_target_closed_dt,
t1.step_target_submit_dt step_target_submit_dt,
t1.orig_user_full_nm orig_user_full_nm,
t1.champ_user_full_nm champ_user_full_nm,
t1.champ_org_nm champ_org_nm
FROM prts_syst.vw_rpt_issue_step_dtl_all t1
WHERE t1.current_step_flag = 'Y') t3,
vw_complaint_ctg,
root_cause_step,
vw_prob_main_cause,
Mv_RPT_CONCAT_ENGN_OPTN_ALL,
vw_rpt_vpps_lvl,
soltn_step,
vw_rpt_defntn_all vw_rpt_defntn,
vw_cust_survey_impct_dtl cust_survey_impct_dtl,
vw_cust_survey_type
WHERE d4.c46 = vw_rpt_incdnt_src_three_level.level3_incdnt_src_id(+)
Or d4.c46=vw_rpt_incdnt_src_three_level.level2_incdnt_src_id(+))
And vw_rpt_incdnt_src_three_level.level3_incdnt_src_id IS NULL
AND d4.c2 = vw_rpt_warranty_labr_code.issue_id(+)
AND d4.c1 = vw_rpt_prod_ln_grp.prts_prod_ln_id(+)
AND d4.c2 = t3.issue_id(+)
AND d4.c26 = vw_complaint_ctg.complaint_ctg_id(+)
AND d4.c2 = root_cause_step.issue_id(+)
AND root_cause_step.prob_main_cause_id = vw_prob_main_cause.prob_main_cause_id(+)
AND d4.c2 = Mv_RPT_CONCAT_ENGN_OPTN_ALL.issue_id(+)
AND d4.c75 = vw_rpt_vpps_lvl.vpps_id_nbr(+)
AND d4.c2 = soltn_step.issue_id(+)
AND d4.c2 = vw_rpt_defntn.issue_id(+)
AND d4.c2 = cust_survey_impct_dtl.issue_id(+)
AND cust_survey_impct_dtl.cust_survey_type_id = vw_cust_survey_type.cust_survey_type_id(+)
AND vw_rpt_prod_ln_grp.prod_grp_desc IN
('DB Admin', 'GM - All Vehicles', 'GMAP - DAT', 'GMAP - Holden')
AND d4.c6 IN
('Cancelled',
'Closed',
'Closed (w/o Action)',
'Closed, Supporting Process(es) Active',
'Draft',
'Open'
);

Hi,
Maestro_Vineet wrote:
This is quite strange when i used the Old way of using Outer Joins(+), i encountered the Ora-01719 error saying Outer Joins not allowed in Or and IN operator.Whereas when i use the ANSI sql i query gets executed without any error.Any idea what might be the reason..is it that i myself is making mistake.No, I don't think you're making any mistake. Some things are simply not allowed with the "+" outer-join syntax.
There are work-arounds, but they are harder to code and slower to run than simply using ANSI syntax.
I recommend always using ANSI syntax, especially for outer joins.

Similar Messages

A: oj syntax for outer join

Outer Join Escape Sequence builds the syntax for ODBC drivers using the outer join syntax in its SQL syntax.
Use Regedit on the problem client machine add following keys:
STEP 1........For Crystal Reports 9: HKEY_CURRENT_USER\Software\Crystal Decisions\9.0\Crystal Reports\Database\QueryBuilder\OuterJoinEscSeq
<<<OR>>>
...................For Crystal Reports 10:HKEY_CURRENT_USER\Software\Crystal Decisions\10.0\Crystal Reports\Database\QueryBuilder\OuterJoinEscSeq
STEP 2........"MSOuterJoinEscSeq"= "insert your ODBC driver name here": List of the drivers that support Microsoft ODBC {oj ..} join escape sequence.
"NoOuterJoinEscSeq"= "insert your ODBC driver name here": List of the drivers that do not support any join escape sequence.
For example...
MSOuterJoinEscSeq = "UVODBC"

Outer Join Escape Sequence builds the syntax for ODBC drivers using the outer join syntax in its SQL syntax.
Use Regedit on the problem client machine add following keys:
STEP 1........For Crystal Reports 9: HKEY_CURRENT_USER\Software\Crystal Decisions\9.0\Crystal Reports\Database\QueryBuilder\OuterJoinEscSeq
<<<OR>>>
...................For Crystal Reports 10:HKEY_CURRENT_USER\Software\Crystal Decisions\10.0\Crystal Reports\Database\QueryBuilder\OuterJoinEscSeq
STEP 2........"MSOuterJoinEscSeq"= "insert your ODBC driver name here": List of the drivers that support Microsoft ODBC {oj ..} join escape sequence.
"NoOuterJoinEscSeq"= "insert your ODBC driver name here": List of the drivers that do not support any join escape sequence.
For example...
MSOuterJoinEscSeq = "UVODBC"

  • I recently updated my primary email address associated with my Apple ID account. When I go to App store on my iPad it still tries to login to the App store using the old email address I had associated with the account, and naturally my password doesn

    I recently updated my primary email address associated with my Apple ID account.
    Now when I go to App store on my iPad it still tries to login to the App store using the old email address I had associated with the account, and naturally my password doesn't work. I can't figure out how to tell my iPad to login using the updated email address.
    So in effect I'm locked out of the app store and I currently have 26 updates waiting.
    I've tried disconnecting and reconnecting my IPad to iCloud with no luck.. However I cloud happens to show the correct/updated email address.
    Does anyone know how to resolve this?
    Thanks

    Did you change the email for the Apple ID or did you create a new Apple ID? A new Apple ID cannot be used with content that was bought using a different Apple ID.
    Changing the email address you use for your Apple ID -
    http://support.apple.com/kb/HT5621

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

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

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

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

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

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

  • My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    You have the Flashback trojan.
    Check out the replies in this thread for what to do;
    https://discussions.apple.com/message/18114958#18114958

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

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

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

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

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

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

  • Safari quit unexpectedly while using the RainbowSixv plugin

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

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

  • On my MacBook Pro, while using the windows side, I have no audio. Any suggestions

    On my MacBook Pro while using the Windows hard drive, I have no audio. The icon shows that I should (no mute insignia).  Any thoughts what I might do to correct?
    Thnaks.
    Tom

    Whoa, I found the answer by clicking on one of the questions in the "More Like This" box to the right.  I do  wonder how to find that box before posting my dumb question.  The answer turned out to be checking the youtube volume control.  I turned that up and it solved the problem for Comast as well.

  • I recently upgraded laptops and my new laptop asks me to authorize this one for purchases I made years ago and I don't remember the password.  Can you use the old backup discs to restore them?

    There are quite a few songs, videos, television shows, and movies I purchased years back, well before the cloud with two different user id's that I don't remember the passwords for, and when I try and get to the security questions, it says the information doesn't match.  I'm ****** because I'm sure they will have some convenient excuse for not getting me out of this mess with my new laptop, but as long as my old one works, I can still access the previous library, where EVERYTHING plays.  How can the new laptop not be recognized when I had all of the information transferred from the old laptop?  Now I have to hope my old laptop doesn't crap out for a few years longer!!

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • While dropping the old undo tablespace we get an error

    Hello friends ,
    i Cannot drop old undo tablespace. While dropping the old undo tablespace we get an error
    ERROR at line 1:
    ORA-01548: active rollback segment '_SYSSMU77$' found, terminate dropping
    tablespace
    SQL> select tablespace_name, status, segment_name from dba_rollback_segs where status != 'OFFLINE';
    TABLESPACE_NAME STATUS SEGMENT_NAME
    SYSTEM ONLINE SYSTEM
    APPS_UNDO NEEDS RECOVERY _SYSSMU77$
    Please help
    Thanks
    Edited by: Vicky C on Dec 23, 2012 9:23 AM

    Hi peter
    We not using rman backup only cold backup.. i tried using cold backup in ramn block media recovery but that recovery needs archive log
    RMAN> BLOCKRECOVER DATAFILE 158 BLOCK 48829;
    Starting blockrecover at 18-DEC-12
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=437 devtype=DISK
    channel ORA_DISK_1: restoring block(s) from datafile copy /var/undo/undo02.dbf
    starting media recovery
    media recovery failed
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of blockrecover command at 12/18/2012 16:45:11
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-00279: change 5975281035000 generated at 12/08/2012 06:00:58 needed for thread 1
    ORA-00289: suggestion : /prod/archlogs/1_465484_683651989.dbf
    ORA-00280: change 5975281035000 for thread 1 is in sequence #465484
    ORA-00278: log file '/prod/archlogs/1_465484_683651989.dbf' no longer needed for this re covery
    we did not have block media recovery needed archivelog
    Regards
    Vignesh C

  • Maybe you are looking for

    • Collection of IDoc's

      Hi I have done the Idoc collection as per Stefan's weblog "/people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm its generating a one file per each Idoc.What is the problem with this approach.Any clues on this.Under comments section

    • Want to customize Menu Bar - Where can I find explanations of the almost 200 editable items in the Properties for "ul.MenuBarHorizontal" ?

      I want to design/customize a horizontal Menu Bar. However I'm flying blind on what the meanings (parameters) of each of the almost 200 editable items are in the Properties for "ul.MenuBarHorizontal" ? Where can I find each item explained? Have looked

    • Hp laptop 15-n038sa

      well i got my hp laptop in janaury and i cant remeber when it was but i downloaded windows 8.1 as it kept coming up on laptop to do that so i did and wished i didnt as it wiped off my cd disc drive everything else worked so i restored it back to fact

    • Trying to charge my iphone but the apple logo goes ond and off

      I am trying to charge my phone, and when I plug it to the mains or my pc wont charge, the apple logo comes one for seconds and goes off, the phone just got a new battery, what can I do?

    • Bogus Object No Longer Exists error

      I have a package which is reporting the error "ORA-08103: object no longer exists" on one of the SQL statements. I cannot figure out why though, because i checked all the objects which the SQL statement references and they are all still there, so i t