DW crashes when toolbar with sub items is clicked

Any toolbar item that has the arrow to show more items if clicked instantly crashes DW.
Mac OS 10.8.3  - DW CS6  ver 12 build 6006
Example toolbar items: "Open documents", "Format Source Code", etc

Looking at the crash report that goes to Apple is aligned with what I have specified is the problem, since it is only the popup menus in the toolbar that causes this.
I get what appears to be the exact same error report if I am clicking a toolbar icon with a submenu or right clicking the toolbar - here is an excerpt - there are over 500 lines with the PopupMenuHandler menuNeedsUpdate message:
3   com.adobe.dvaui.framework   
0x03e999ed dvaui::ui::OS_NodeManager* dvacore::utility::NonOptionalDynamicCast<dvaui::ui::UI_NodeManager*, dvaui::ui::OS_NodeManager*>(dvaui::ui::UI_NodeManager*, char const*, unsigned int, int) + 61
4   com.adobe.dvaui.framework   
0x03e814dd dvaui::ui::OS_NodeManager::Get(bool) + 61
5   com.adobe.dvaui.framework   
0x03ed1776 -[DVAMacPopupMenuHandler menuNeedsUpdate:] + 38
6   com.adobe.dvaui.framework   
0x03ed179c -[DVAMacPopupMenuHandler menuNeedsUpdate:] + 76
7   com.adobe.dvaui.framework   
0x03ed179c -[DVAMacPopupMenuHandler menuNeedsUpdate:] + 76

Similar Messages

  • How do i report on BOMS when they have sub items?

    I cant see a simple way or indeed any way of extracting BOM information when i have sub items listed against main items in a BOM.
    For ease of updating i was hoping to be able to extract the current information we have loaded.
    Any suggestions
    David

    CS11 pretty much displays BOM with Sub-bom items ...
    I am not sure what ouput requirement you have on mind...most of the times i have worked with CS11...
    Thanks,
    sudhi

  • AutoCAD 2009 crashes when printing with HP Laserjet CP1525nw via wireless connection

    Printing to CP1525nw via wireless connection crashes AutoCAD 2009 on a WIndows 7 Home OS + Sony VAIO VPCL21M1E
    Works fine printing from any other application.

    I'm facing the same problem but, i'm AutoCAD 2012 and it crashes when printing with HP Laserjet CP1525n via USB or network cable

  • My new iMac with FCPX crashes when rendering complex templates and crashes when exporting with Motion 5

    My new iMac with FCPX crashes when rendering complex templates and crashes when exporting with Motion 5
    Using Motion 5.0.6 and Final Cut Pro X 10.0.7 on New iMac (December 2012)  Mountain Lion,
    Intel Core i7 quad-core a 3,4GHz, Turbo Boost fino a 3,9GHz
    32GB di SDRAM DDR3 a 1600MHz - 4 x 8GB
    Fusion Drive da 3TB
    NVIDIA GeForce GTX 680MX 2GB GDDR5
    During the rendering of complex FCPX mac crashes and I have to force a restart.
    I also happens when I try to export movies with Motion 5.
    Does anyone have the same problem with my new iMac?

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Triple-click anywhere in the line below to select it, then drag or copy it — do not type — into the Terminal window:
    find . $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Press return. The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "35." Please post it in a reply.

  • Simple BOM with sub-items (very very urgent)--1 item & 2 subitem

    Hi all,
    i am creating a BOM with sub-items using  'BAPI_MATERIAL_BOM_GROUP_CREATE'. while  creating sub-item, it is taking only one subitem. but i am giving multiple sub-items per item.
    i am giving a program where i am assigning 2 subitems to one item.
    after tha bapi call, 1 subitem is creating.
    i have tried so many times by clearing the work area & calling the bapi for each sub-item.but it is creating only one sub-item only.
    i am giving an example of my report.plz correct it if i am wrong.it is veryt very urgent.
    any idea will be highly appreaciated.
    Regards
    pabitra
    REPORT ZTEST_CHIN message-id 01.
    This code will create a material BoM for the material
    MAINMATERIAL with the components COMPON1 and COMPON2.
    Data Declaration
    DATA:
        it_bomgroup LIKE bapi1080_bgr_c OCCURS 0 WITH HEADER LINE,
        it_variants LIKE bapi1080_bom_c OCCURS 0 WITH HEADER LINE,
        it_items LIKE bapi1080_itm_c OCCURS 0 WITH HEADER LINE,
        it_matrel LIKE bapi1080_mbm_c OCCURS 0 WITH HEADER LINE,
        it_itemas LIKE bapi1080_rel_itm_bom_c OCCURS 0 WITH HEADER LINE,
        it_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE,
        it_subitems LIKE bapi1080_sui_c OCCURS 0 WITH HEADER LINE,
        it_subitemas LIKE BAPI1080_REL_SUI_ITM_C OCCURS 0 WITH HEADER LINE.
    Fill the data
    Material BoM Group Header Data
    CLEAR it_bomgroup.
    it_bomgroup-bom_group_identification = 'BAPI_SMP_COL1'.
    it_bomgroup-object_type = 'BGR'.
    it_bomgroup-object_id = 'SIMPLE1'.
    it_bomgroup-bom_usage = '1'.  " YOU COULD CHANGE THE BOM USAGE TO YOUR
    it_bomgroup-ltxt_lang = sy-langu.
    it_bomgroup-technical_type = ' '.
    it_bomgroup-bom_text = 'Simple BoM - FM'.
    APPEND it_bomgroup.
    Header Details of the different variants
    CLEAR it_variants.
    it_variants-bom_group_identification = 'BAPI_SMP_COL1'.
    it_variants-object_type = 'BOM'.
    it_variants-object_id = 'SIMPLE1'.
    it_variants-alternative_bom = '01'.
    it_variants-bom_status = '01'.
    it_variants-base_qty = '1.000'.
    it_variants-valid_from_date = sy-datum.
    it_variants-function = 'NEW'.
    APPEND it_variants.
    Details of the materials of the different variants
    CLEAR it_matrel.
    it_matrel-bom_group_identification = 'BAPI_SMP_COL1'.
    it_matrel-material = 'BAPIBOMFG1'.
    it_matrel-bom_usage = '1'.
    it_matrel-alternative_bom = '01'.
    APPEND it_matrel.
    Linking subitems to the corresponding variants
    CLEAR it_subitemas.
    it_subitemas-bom_group_identification = 'BAPI_SMP_COL1'.
    it_subitemas-sub_object_type = 'SUI'.
    it_subitemas-sub_object_id = 'SIM1'.
    it_subitemas-super_object_type = 'ITM'.
    it_subitemas-super_object_id = 'SIMPLE1'.
    APPEND it_subitemas.
    Linking items to the corresponding variants
    CLEAR it_itemas.
    it_itemas-bom_group_identification = 'BAPI_SMP_COL1'.
    it_itemas-sub_object_type = 'ITM'.
    it_itemas-sub_object_id = 'SIMPLE1'.
    it_itemas-super_object_type = 'BOM'.
    it_itemas-super_object_id = 'SIMPLE1'.
    it_itemas-valid_from_date = sy-datum.
    it_itemas-function = 'NEW'.
    APPEND it_itemas.
    Details of the items of the variants
    CLEAR it_items.
    it_items-bom_group_identification = 'BAPI_SMP_COL1'.
    it_items-object_type = 'ITM'.
    it_items-object_id = 'SIMPLE1'.
    it_items-item_no = '0010'.
    it_items-item_cat = 'L'.
    it_items-component = 'BAPIBOMRW1'.
    it_items-comp_qty = '2'.
    it_items-valid_from_date = sy-datum.
    APPEND it_items.
    CLEAR it_subitems.
    it_subitems-bom_group_identification = 'BAPI_SMP_COL1'.
    it_subitems-object_type = 'SUI'.
    it_subitems-object_id = 'SIM1'.
    it_subitems-subitem_no = '0001'.
    it_subitems-INSTALLATION_POINT = 'ab1'.
    it_subitems-subitem_qty = '1'.
    APPEND it_subitems.
    CALL FUNCTION 'BAPI_MATERIAL_BOM_GROUP_CREATE'
      EXPORTING
        all_error         = 'X'
      TABLES
        bomgroup          = it_bomgroup
        variants          = it_variants
        items             = it_items
        materialrelations = it_matrel
        itemassignments   = it_itemas
        subitems          = it_subitems
        subitemassignments = it_subitemas
        return            = it_return.
    CLEAR it_subitems.
    it_subitems-bom_group_identification = 'BAPI_SMP_COL1'.
    it_subitems-object_type = 'SUI'.
    it_subitems-object_id = 'SIM1'.
    it_subitems-subitem_no = '0002'.
    it_subitems-INSTALLATION_POINT = 'ab2'.
    it_subitems-subitem_qty = '1'.
    APPEND it_subitems.
    CALL FUNCTION 'BAPI_MATERIAL_BOM_GROUP_CREATE'
      EXPORTING
        all_error         = 'X'
      TABLES
        bomgroup          = it_bomgroup
        variants          = it_variants
        items             = it_items
        materialrelations = it_matrel
        itemassignments   = it_itemas
        subitems          = it_subitems
        subitemassignments = it_subitemas
        return            = it_return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    LOOP AT it_return.
      WRITE:/ it_return-type, it_return-id, it_return-number,
              it_return-message.
    ENDLOOP.

    Hi rich,
    Thanks. i will do the same.can u plz suggest me , where i am doing mistake in my coding to create sub-items in a BOM?
    Thanks & Regards
    pabi

  • Photoshop CS5 crashes when you choose menu items when FinderPop is installed (Mac OS)

    FYI - Knowledge Base document was created to outline this problem and provide a solution:
    Photoshop CS5 crashes when you choose menu items when FinderPop is installed (Mac OS)
    http://kb2.adobe.com/cps/891/cpsid_89140.html

    FinderPop released a new updated version today.  It can be found at the below link.  Adobe makes no promises about 3rd party software, however my limited testing does indicate that the crash on inverse selection is fixed by this latest beta drop of FinderPop.
    2.3.0.6
    http://www.fnarr.net/fp/viewforum.php?f=3

  • Firefox crashes when browsing with google

    firefox crashes when browsing with google

    The file sshnas21.dll mentioned in the crash report is a component of malware or spyware, you should immediately remove it using an antivirus and antispyware program.
    Do a malware check with some malware scan programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Addressbook crashes when syncing with webdav

    Hello!
    After Update to Yosemite my Adressbook crashes when syncing with webdav (CardDAV Account).
    This happens after adding new Contacts and sync.
    Anybody knows how to fix that?
    Thank you!!
    Here is the Log:

    LOG:
    Process:               Contacts [5263]
    Path:                  /Applications/Contacts.app/Contents/MacOS/Contacts
    Identifier:            com.apple.AddressBook
    Version:               9.0 (1499)
    Build Info:            AddressBook_executables-1499000000000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Contacts [5263]
    User ID:               501
    Date/Time:             2014-11-19 14:08:34.730 +0100
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        FEDD2BD8-00F4-2C99-5440-CF8316DD5BF2
    Sleep/Wake UUID:       B3642F04-3A9E-47FE-9E9F-819DBB7754BB
    Time Awake Since Boot: 18000 seconds
    Time Since Wake:       2900 seconds
    Crashed Thread:        6  Dispatch queue: NSOperationQueue 0x608000435420 :: NSOperation 0x61000024be80 (QOS: USER_INITIATED)
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x00006ff8afa8bec0
    VM Regions Near 0x6ff8afa8bec0:
        MALLOC_NANO            0000618000200000-0000618000e00000 [ 12.0M] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007fd8d0400000-00007fd8d0800000 [ 4096K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc_msgSend() selector name: initWithCDVScheme:user:password:host:port:path:parameterString:query:fragment:
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff82d7652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff82d7569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8ef63b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8ef62fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8ef62838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8778b43f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8778b1ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8778affb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff90fd96d1 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff90fd8e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff90fcce23 -[NSApplication run] + 594
    11  com.apple.AppKit               0x00007fff90fb82d4 NSApplicationMain + 1832
    12  libdyld.dylib                 0x00007fff8a01e5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff82d7c22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff84b47a6a _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff82d7652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff82d7569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8ef63b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8ef62fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8ef62838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff85f6ad20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8e712b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff91b1b2fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff91b1b279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff91b194b1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff82d7652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff82d7569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8ef63b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8ef62fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8ef62838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff9113c7a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff91b1b2fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff91b1b279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff91b194b1 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff82d7b3f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff91b1b2fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff91b1b279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff91b194b1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff82d7b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91b194a1 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: NSOperationQueue 0x608000435420 :: NSOperation 0x61000024be80 (QOS: USER_INITIATED)
    0   libobjc.A.dylib               0x00007fff8bf6e0dd objc_msgSend + 29
    1   com.apple.coredav             0x00007fff82915778 -[CoreDAVTask connection:willSendRequest:redirectResponse:] + 320
    2   com.apple.CFNetwork           0x00007fff86013305 ___ZL31_NSURLConnectionWillSendRequestP16_CFURLConnectionPK13_CFURLRequestP14_C FURLResponsePKv_block_invoke + 146
    3   com.apple.CFNetwork           0x00007fff8602a20d __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke + 69
    4   com.apple.CFNetwork           0x00007fff8602a1b1 -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 232
    5   com.apple.CFNetwork           0x00007fff8602a317 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 48
    6   com.apple.CFNetwork           0x00007fff8601050e _NSURLConnectionWillSendRequest(_CFURLConnection*, _CFURLRequest const*, _CFURLResponse*, void const*) + 126
    7   com.apple.CFNetwork           0x00007fff85fc45f5 ___ZN27URLConnectionClient_Classic25_delegate_willSendRequestEPK12NSURLRequestP 14_CFURLResponseU13block_pointerFvS2_E_block_invoke + 151
    8   com.apple.CFNetwork           0x00007fff85fc4283 ___ZN27URLConnectionClient_Classic18_withDelegateAsyncEPKcU13block_pointerFvP16 _CFURLConnectionPK33CFURLConnectionClientCurrent_VMaxE_block_invoke_2 + 94
    9   com.apple.CFNetwork           0x00007fff85ee63fc RunloopBlockContext::_invoke_block(void const*, void*) + 72
    10  com.apple.CoreFoundation       0x00007fff8ef3d1e4 CFArrayApplyFunction + 68
    11  com.apple.CFNetwork           0x00007fff85ee62bd RunloopBlockContext::perform() + 133
    12  com.apple.CFNetwork           0x00007fff85ee615e MultiplexerSource::perform() + 282
    13  com.apple.CFNetwork           0x00007fff85ee5f80 MultiplexerSource::_perform(void*) + 72
    14  com.apple.CoreFoundation       0x00007fff8ef71661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    15  com.apple.CoreFoundation       0x00007fff8ef637ed __CFRunLoopDoSources0 + 269
    16  com.apple.CoreFoundation       0x00007fff8ef62e1f __CFRunLoopRun + 927
    17  com.apple.CoreFoundation       0x00007fff8ef62838 CFRunLoopRunSpecific + 296
    18  com.apple.AddressBook.CardDAVPlugin 0x000000010fa9756b -[CDXController _runRunLoopUntilFinished] + 179
    19  com.apple.AddressBook.CardDAVPlugin 0x000000010fa9a965 -[CDXController _syncContainerInfos:containerActions:multiGetBatchSize:maxSimultRequestsPerFold er:usePostIfAvailable:useSyncReportIfAvailable:maxBulkImportResources:maxBulkCRU DResources:useBulkChangePrecondition:withTimeout:errors:] + 1301
    20  com.apple.AddressBook.CardDAVPlugin 0x000000010fa9abbf -[CDXController syncContainerInfos:inLocalDatabase:multiGetBatchSize:maxSimultRequestsPerFolder :maxSimultImageGets:actionsOnlyIfSuccessfulAction:useActionsAndCTag:usePostIfAva ilable:useSyncReportIfAvailable:maxBulkImportResources:maxBulkCRUDResources:useB ulkChangePrecondition:withTimeout:errors:] + 489
    21  com.apple.AddressBook.CardDAVPlugin 0x000000010fa8be5b -[PHXCardDAVSource doSyncWithServer:] + 11122
    22  com.apple.AddressBook.CardDAVPlugin 0x000000010fa8d573 -[PHXCardDAVSource startSync] + 654
    23  com.apple.CoreFoundation       0x00007fff8ef2c33c __invoking___ + 140
    24  com.apple.CoreFoundation       0x00007fff8ef2c192 -[NSInvocation invoke] + 290
    25  com.apple.Foundation           0x00007fff8e75a559 -[NSInvocationOperation main] + 34
    26  com.apple.Foundation           0x00007fff8e6b259c -[__NSOperationInternal _start:] + 653
    27  com.apple.Foundation           0x00007fff8e6b21a3 __NSOQSchedule_f + 184
    28  libdispatch.dylib             0x00007fff84b44c13 _dispatch_client_callout + 8
    29  libdispatch.dylib             0x00007fff84b48365 _dispatch_queue_drain + 1100
    30  libdispatch.dylib             0x00007fff84b49ecc _dispatch_queue_invoke + 202
    31  libdispatch.dylib             0x00007fff84b476b7 _dispatch_root_queue_drain + 463
    32  libdispatch.dylib             0x00007fff84b55fe4 _dispatch_worker_thread3 + 91
    33  libsystem_pthread.dylib       0x00007fff91b1b6cb _pthread_wqthread + 729
    34  libsystem_pthread.dylib       0x00007fff91b194a1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff82d7b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91b194a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff82d7b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91b194a1 start_wqthread + 13
    Thread 9:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib         0x00007fff82d7b486 __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff86a23e70 usleep + 54
    2   com.apple.AppKit               0x00007fff911ea063 -[NSUIHeartBeat _heartBeatThread:] + 2376
    3   com.apple.Foundation           0x00007fff8e712b7a __NSThread__main__ + 1345
    4   libsystem_pthread.dylib       0x00007fff91b1b2fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff91b1b279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff91b194b1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff82d7b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91b194a1 start_wqthread + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x000000000001bb37  rbx: 0x000060000010c180  rcx: 0x00006080004344a0  rdx: 0x0000737074746855
      rdi: 0x000060800008e740  rsi: 0x00007fff8294335f  rbp: 0x00000001108f3930  rsp: 0x00000001108f38a8
       r8: 0x0000000000000000   r9: 0x00006000006548e0  r10: 0x00007fff8294335f  r11: 0x00006ff8afa8bea8
      r12: 0x000060000067f500  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fff8bf6e0c0
      rip: 0x00007fff8bf6e0dd  rfl: 0x0000000000010202  cr2: 0x00006ff8afa8bec0
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10c1c7000 -        0x10c25cff7  com.apple.AddressBook (9.0 - 1499) <9F34781F-8B93-3A93-8C13-5CB2DDC1DE8C> /Applications/Contacts.app/Contents/MacOS/Contacts
           0x10df5e000 -        0x10df5ffff  com.apple.AddressBook.LocalSourceBundle (9.0 - 1499) <36F3EC7D-1569-36D7-8A7D-33656C5BFD02> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10fa07000 -        0x10fa0bff7  com.apple.DirectoryServicesSource (9.0 - 1499) <C37D57B0-7769-39A2-B511-94F17143D3A7> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10fa11000 -        0x10fa13fff  com.apple.addressbook.POIPlugin (9.0 - 1499) <30012F8D-659F-382E-8BF3-CA57CF73A272> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x10fa19000 -        0x10fa51fff  com.apple.ExchangeSource (9.0 - 1499) <0C2C75C8-8988-3EB3-9863-CC57F388CC13> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
           0x10fa76000 -        0x10fac3ff3  com.apple.AddressBook.CardDAVPlugin (10.9 - 434) <6D55FFA7-05B4-34CE-ACB9-85109CC2E94F> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10faf9000 -        0x10fb21ffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x110639000 -        0x110639fef +cl_kernels (???) <6C261371-8214-4551-954A-AA3DC7443666> cl_kernels
           0x110647000 -        0x110647ff5 +cl_kernels (???) <F81ED583-F02A-4D7A-ACA8-985FA7D3B25E> cl_kernels
           0x110649000 -        0x11072ffef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x110839000 -        0x11083cfff  libCGXCoreImage.A.dylib (772) <6F42EEBA-6FF4-331F-8F8D-37D6B853614D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x110860000 -        0x110860fe7 +cl_kernels (???) <93B64A96-7AFE-4AB5-BDF4-594B81F14665> cl_kernels
           0x11086c000 -        0x11086cfe5 +cl_kernels (???) <605639A6-702A-443C-A607-174EAEE64AA7> cl_kernels
           0x112752000 -        0x112752ffe +cl_kernels (???) <D41982AD-DC10-415D-9BE0-DED2773F891C> cl_kernels
           0x113348000 -        0x113348ffe +cl_kernels (???) <D41982AD-DC10-415D-9BE0-DED2773F891C> cl_kernels
           0x11334c000 -        0x11334cfef +cl_kernels (???) <6C261371-8214-4551-954A-AA3DC7443666> cl_kernels
           0x113c16000 -        0x113c16fff +com.skype.skypeabdialer (1.9) <5D86F6A8-D83C-363D-AF45-12B3CDC16AEB> /Users/USER/Library/Address Book Plug-Ins/SkypeABDialer.bundle/Contents/MacOS/SkypeABDialer
           0x113c19000 -        0x113c19fff +com.skype.skypeabsms (1.9) <94471414-96FA-32BE-96F1-F0D2AAFFD146> /Users/USER/Library/Address Book Plug-Ins/SkypeABSMS.bundle/Contents/MacOS/SkypeABSMS
           0x117b4b000 -        0x117c2bff7  unorm8_rgba.dylib (2.4.5) <A8805102-8A21-3A5E-AE22-63C0DEC8CB6F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
        0x7fff64852000 -     0x7fff64888837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff827cb000 -     0x7fff827d1fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff827d2000 -     0x7fff82802ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff82803000 -     0x7fff8280cfff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8280d000 -     0x7fff828f0fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff828f1000 -     0x7fff828f6fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff828f7000 -     0x7fff82953fff  com.apple.coredav (1.0.1 - 261) <6FDDD736-DF1C-3D2B-82D7-D6D15C67F269> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff82954000 -     0x7fff82955fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff82960000 -     0x7fff82c93ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff82c94000 -     0x7fff82ccbffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff82cfb000 -     0x7fff82d07ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff82d65000 -     0x7fff82d82fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff82dab000 -     0x7fff82dcbfff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff82e1c000 -     0x7fff82e1efff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff82e1f000 -     0x7fff82e32ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff82e33000 -     0x7fff82e74fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff82e75000 -     0x7fff82fbbfef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff82fbe000 -     0x7fff82fbeff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff82fcc000 -     0x7fff82fceff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff82fcf000 -     0x7fff82fd1fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff82fee000 -     0x7fff83034ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff83035000 -     0x7fff8303fff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8304a000 -     0x7fff830a5fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff830a6000 -     0x7fff830c2ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff830c3000 -     0x7fff830cefff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff830cf000 -     0x7fff830d7ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff830d8000 -     0x7fff83146ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff83147000 -     0x7fff831aeff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff831af000 -     0x7fff831c8ff7  com.apple.CalendarAgentLink (8.0 - 250) <0F3CCA9C-645D-3A1A-A959-F4F8D31F9B1A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff831c9000 -     0x7fff8324bfff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8324c000 -     0x7fff83278fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff83279000 -     0x7fff83293ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff832d5000 -     0x7fff832f1fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff832f2000 -     0x7fff8340affb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8340b000 -     0x7fff843afffb  com.apple.WebCore (10600 - 10600.1.25.2) <B4FEC5E3-C0A9-3E91-93F5-548C001C560E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff843b0000 -     0x7fff84428ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff84429000 -     0x7fff84436fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff84437000 -     0x7fff84439fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8443a000 -     0x7fff84447ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff84448000 -     0x7fff844c5fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff844c9000 -     0x7fff84512ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84513000 -     0x7fff84521ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84522000 -     0x7fff84a4bff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff84b43000 -     0x7fff84b6dff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff84b7a000 -     0x7fff84ca1fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff84ca2000 -     0x7fff84ee2ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff84ee3000 -     0x7fff84f81fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff84f82000 -     0x7fff84fa3fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff84fa4000 -     0x7fff84fc9fff  libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff84fca000 -     0x7fff8527eff7  com.apple.WebKit (10600 - 10600.1.25) <84496A10-D8E5-3E8C-93B1-98D5AE790922> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8527f000 -     0x7fff85286fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff85287000 -     0x7fff85399ff7  libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff853a7000 -     0x7fff853bdff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff854d7000 -     0x7fff85505fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85506000 -     0x7fff85509fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8550a000 -     0x7fff8550fffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff85851000 -     0x7fff85851fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff85852000 -     0x7fff85863ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff85864000 -     0x7fff85d50fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff85eb8000 -     0x7fff85ec9fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff85eca000 -     0x7fff860cdff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff860ce000 -     0x7fff860d2fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff860d3000 -     0x7fff860d4ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff860d5000 -     0x7fff860e3fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff860e4000 -     0x7fff86242ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff86243000 -     0x7fff86248ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff86249000 -     0x7fff862a1ff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff862a2000 -     0x7fff862a8fff  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
        0x7fff862a9000 -     0x7fff86910fff  com.apple.VectorKit (1.0 - 992.4.8) <137172AC-EA3E-3AEE-9024-36AEF6298AC0> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff86911000 -     0x7fff86985ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86986000 -     0x7fff8699bfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff8699c000 -     0x7fff869a4fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff869a5000 -     0x7fff86a31fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff86aab000 -     0x7fff86aadffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff86aae000 -     0x7fff86ac9ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff86aca000 -     0x7fff86acafff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86acb000 -     0x7fff86aefff7  com.apple.facetimeservices (10.0 - 1000) <52EE049F-36E3-35C8-9304-7878AF7AC241> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff86b58000 -     0x7fff86bb2ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff86bb3000 -     0x7fff86bcdff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86bce000 -     0x7fff86bd2ff7  libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86bd3000 -     0x7fff86db8ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff86db9000 -     0x7fff86df4fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86df7000 -     0x7fff86e1ffff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff86e20000 -     0x7fff86e35ff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff87709000 -     0x7fff87749ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8774a000 -     0x7fff87756fff  com.apple.CloudPhotoServicesConfiguration (0.9 - 201.48.0) <4EB3363D-D216-3630-AAFC-8E3136AA3734> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotoServicesConfiguration.framework/Versions/A/CloudPhotoServicesCon figuration
        0x7fff8775a000 -     0x7fff8775cff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8775d000 -     0x7fff87a5ffff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff87a60000 -     0x7fff87a74ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff87a75000 -     0x7fff87a8eff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87a8f000 -     0x7fff87a97ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff87b99000 -     0x7fff87b9affb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff87b9b000 -     0x7fff87c56ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff87c57000 -     0x7fff87c89ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff87c8a000 -     0x7fff87c8efff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87c8f000 -     0x7fff87cb2ff7  com.apple.idsfoundation (10.0 - 1000) <D0C0714F-B1B0-3D86-BAA8-DACC76121118> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff87cb3000 -     0x7fff87cbdfff  com.apple.KerberosHelper (4.0 - 1.0) <DA8D89D2-3185-3527-9E36-AA17F018B776> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff87cee000 -     0x7fff88059fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8805a000 -     0x7fff8805fff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff88060000 -     0x7fff88573ff3  com.apple.JavaScriptCore (10600 - 10600.1.17) <CE5255CC-E13F-3694-B6DD-5285356BFCC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff88574000 -     0x7fff885b6fff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff885ed000 -     0x7fff88626fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff88627000 -     0x7fff8871aff7  com.apple.MapKit (1.0 - 1464.4.13) <C63F5437-0706-37F4-8FD5-384CE592808F> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff8871b000 -     0x7fff887f8ff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff887f9000 -     0x7fff887ffff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff88881000 -     0x7fff88975ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88976000 -     0x7fff8899efff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff88c88000 -     0x7fff88c8afff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff88c8b000 -     0x7fff88cb2fff  com.apple.printingprivate.framework.PrintingPrivate (10.0 - 148) <1EFBB095-7BA4-3D4C-8532-25989C0A0279> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
        0x7fff88d21000 -     0x7fff88d90fff  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
        0x7fff88d91000 -     0x7fff88da3ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff88da4000 -     0x7fff88daaff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff88dab000 -     0x7fff88dfeffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff88dff000 -     0x7fff88e1cffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff88e1d000 -     0x7fff88e6aff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff88e6b000 -     0x7fff88e89ff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff88e8a000 -     0x7fff88e8cfff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff88e8d000 -     0x7fff88f2eff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff88f2f000 -     0x7fff88f30fff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff88f31000 -     0x7fff88f4bff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff88f4e000 -     0x7fff88fdffff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff88fe0000 -     0x7fff890d2fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff890d3000 -     0x7fff890d7fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff890d8000 -     0x7fff890f7fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff890f8000 -     0x7fff89112ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff89113000 -     0x7fff8927eff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8928f000 -     0x7fff89297fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff89298000 -     0x7fff89326ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff89327000 -     0x7fff89328ff3  com.apple.SafariServices.framework (10600 - 10600.1.25.1) <03DC1030-646D-3935-97B4-7ABDD708E190> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8935c000 -     0x7fff89380ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89381000 -     0x7fff893b9ffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff893ba000 -     0x7fff89450ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89451000 -     0x7fff89491fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff89492000 -     0x7fff895ccff7  com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff895cd000 -     0x7fff899daff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff899db000 -     0x7fff899e3fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff899e4000 -     0x7fff899fdfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff899fe000 -     0x7fff899fefff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff899ff000 -     0x7fff89c95ff7  com.apple.AOSKit (1.06 - 215) <432B31DE-50F3-3258-A462-A777C3B8184A> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89c96000 -     0x7fff89d1ffff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff89e55000 -     0x7fff89f99ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff89fa9000 -     0x7fff89fb2ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff89fb3000 -     0x7fff89fc7ff7  com.apple.MessagesKit (1.0 - 1) <E213A175-1A25-325E-87A6-1593ECB21DFB> /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit
        0x7fff89fc8000 -     0x7fff89fc8fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff89fc9000 -     0x7fff89fccff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff89fcd000 -     0x7fff8a01aff3  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
        0x7fff8a01b000 -     0x7fff8a01eff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff8a01f000 -     0x7fff8a021ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8a039000 -     0x7fff8a041fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8a042000 -     0x7fff8a07fff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8a0b0000 -     0x7fff8a115fff  com.apple.framework.internetaccounts (2.1 - 210) <DC8D9230-B7C8-3100-8B2F-399B51A4483A> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8a116000 -     0x7fff8a12aff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8a12b000 -     0x7fff8a19ffff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8a1a0000 -     0x7fff8a1a0fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8a1a1000 -     0x7fff8a25fff7  com.apple.imcore (10.0 - 1000) <70102064-F620-3DC0-BA70-1A0A7EF9F734> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8a2a2000 -     0x7fff8a2cdfff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8a2ce000 -     0x7fff8a2dfff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8a2e0000 -     0x7fff8a310fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8a311000 -     0x7fff8a315fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8a316000 -     0x7fff8a342fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8a352000 -     0x7fff8a36bfff  com.apple.ContactsUI (9.0 - 1499) <E81C1E96-B78D-34A3-B9DD-059B744A2DE1> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff8a36c000 -     0x7fff8a48eff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a637000 -     0x7fff8a7c5fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a7c6000 -     0x7fff8a7c6fff  com.apple.AOSMigrate (1.0 - 1) <6893B495-188D-3F88-81E7-8FAFDD53323D> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8a808000 -     0x7fff8a9b8ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8a9b9000 -     0x7fff8a9c9ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8a9ca000 -     0x7fff8a9cefff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8a9cf000 -     0x7fff8a9d6ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8a9d7000 -     0x7fff8ab13ffb  com.apple.WebKitLegacy (10600 - 10600.1.25) <EE3A7515-AC7B-30D3-A4DC-EB0D36E88E4B> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
        0x7fff8ab14000 -     0x7fff8ab1fff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8ab2f000 -     0x7fff8abd5fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8abd6000 -     0x7fff8ac67ff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8ac68000 -     0x7fff8ac73ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8ac7b000 -     0x7fff8af27fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8afa7000 -     0x7fff8afcbfef  libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8afcc000 -     0x7fff8afd9fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8afda000 -     0x7fff8afdefff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8afdf000 -     0x7fff8afe4ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b013000 -     0x7fff8b02fff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8b030000 -     0x7fff8b030fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <21D4673A-52C7-391D-AF7C-F77D368D34AE> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff8b031000 -     0x7fff8b163ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8b206000 -     0x7fff8b213ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8b214000 -     0x7fff8b217ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8b225000 -     0x7fff8b225ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8b226000 -     0x7fff8b251fff  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
        0x7fff8b252000 -     0x7fff8b259fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8b265000 -     0x7fff8b33bff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8b33c000 -     0x7fff8b354fff  com.apple.CalendarStore (8.0 - 1479) <42CC3B45-7916-3C2C-8F07-E40D96C9FEDB> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8b360000 -     0x7fff8b36afff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8b36b000 -     0x7fff8b49bfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8b49c000 -     0x7fff8b4cfff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8b4d0000 -     0x7fff8b7ebfcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8b817000 -     0x7fff8babeff7  com.apple.RawCamera.bundle (6.01 - 766) <A98D8BA2-EC64-36C2-8B71-CF5B8CDBFC97> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8babf000 -     0x7fff8baeaff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8baeb000 -     0x7fff8bdd2ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8be0d000 -     0x7fff8be79fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8be7a000 -     0x7fff8bf6cff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8bf6d000 -     0x7fff8c152267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8c153000 -     0x7fff8c16afff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8c18b000 -     0x7fff8c1b8fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8c1b9000 -     0x7fff8c1c4fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c1c5000 -     0x7fff8c259fff  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
        0x7fff8c25a000 -     0x7fff8c2b5fef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c2b6000 -     0x7fff8c30afff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8c39d000 -     0x7fff8c3affff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff8c402000 -     0x7fff8c40affb  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
        0x7fff8cd51000 -     0x7fff8cd8cfff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8cde9000 -     0x7fff8ce00ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8ce1d000 -     0x7fff8ce20fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8ce21000 -     0x7fff8ce21fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8ce22000 -     0x7fff8ce8cff7  com.apple.imfoundation (10.0 - 1000) <1810C42E-B06B-385B-9D17-FDB9C9D91E90> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8ce8d000 -     0x7fff8ce94fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8d12c000 -     0x7fff8d14ffff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8d155000 -     0x7fff8d1d9ff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8d1da000 -     0x7fff8d1dbff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff8d1dc000 -     0x7fff8d22afff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8d22b000 -     0x7fff8d237ff7  com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ilities
        0x7fff8d238000 -     0x7fff8d2b9ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8d2ba000 -     0x7fff8d319ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8d3ec000 -     0x7fff8d3ecfff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8d3ed000 -     0x7fff8dc26ff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8dc27000 -     0x7fff8dc2eff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8dc2f000 -     0x7fff8dca3fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8dca4000 -     0x7fff8dca6ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7f

  • Dreamweaver CC constantly crashing when working with BC

    Hi,
    Dreamweaver CC is constantly crashing when working with BC. I had lots of contact with the support, my issue is at tier2 already, I had telephone-support several times, we had lots of possible solutions. Nothing worked.
    DW CC is crashing as often as CS6 did and it only happened when working with a BC-site. Whenever uploading to BC, there is a 30% chance that DW crashes. When having stopped working with DW for a few minutes (like doing something in PS) DW crashes in every case. 100%. As this must have something to do with BC, I urgently beg to check the integration of BC into DW or check the connection-mode.
    Here are my Specs:
    - iMac with latest OS
    - Adobe CC (latest )
    - German
    -DSL 1500 b/sec-connection
    I tried saving the sites root folder on a NAS and on local harddrive. I tried with or without german Umlaute , no difference.
    Sometimes I can cancel the upload-message and redo, then its working (75%).
    As I seem to be the only one having this problem, I completely reinstalled the system and CC, but the problem still exists.
    I would really appreciate any help or support from Adobe, although I must say, they already did a lot, but unfortunately my problem is not solved.
    By the way, several dialogs with "dont show message again"-ckeckboxes simply come again, no matter whether box is checked or not.
    Writing uppercase I (shift-I) insert content of clipboard and writes an uppercase I. (weird?)

    I have had the same problem.
    Had Dreamweaver support on the phone yesterday, after receiving this email:
    Please try resetting the preferences for Dreamweaver. Follow the steps given below.
    /Users/Your User Name/Library/Preferences/Adobe Dreamweaver CC Prefs
    /Users/Your User Name/Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    /Users/Your User Name/Library/Application Support/Adobe/Dreamweaver CC
    /Users/Your User Name/Library/Application Support/Caches/ com.adobe.Dreamweaver.13.0
    Macintosh /Library/Preferences/ Application Support/Adobe/Dreamweaver CC Prefs (if any)
    Macintosh /Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    Note: Follow the help doc to access user library.
    If this does not help can you please send me details below to isolate the issue further.
    1)      Step by step workflow to reproduce the issue.
    2)      Is this happening with multiple files? Few sample files to test the issue at my end.
    3)      Complete System Information file of the computer having issues.
    4)      Were there any H/w or S/w changes applied on the computer having issues. Since when are you getting this issue?
    5)      Is the user on domain account or local user? Do they have admin rights?
    6)      You BC site details, including FTP address, Login credentials.
    After our telephone conversation:
    I deleted all sites.
    I have completely deleted all versions of Dreamweaver, deleted all preference files and reinstalled Dreamweaver CC.
    It's still happening, so I will be back to them tomorrow.
    Sorta glad it's not just me!!

  • Help! Every app crashes when interacting with plain text files

    I recently bought a 13" i7 MacBook Air. I love its design and I found OS X Lion unbelievably fast on it, yet I find myself in a very dark situation, now.
    From the Finder to iA Writer, to TextEdit, every single app crashes when working with plain text files. In Finder’s column view I don’t even have to open them: the instant one .txt is selected, Finder crashes.
    Creating a new user account seems to fix the bug for that account, but I just spent one whole day copying files from my old work MacBook (where Lion opened .txt files without a problem) to the new account and losing another entire day of work because of a stupid bug is out of question. Also, I feel it would be a very temporary fix. What if the bug presented itself again? Would I have to create a third, a fourth account, and so on?
    I didn’t use any migration tool because I wanted a very clean installation.
    On top of that, the machine is as App Store–only as one could be. The only “internet” apps I have on it are Chrome (for the occasional Flash video), Movist (I can’t work with Quicktime’s flying controls), and nvALT. I didn’t even had the time to install the Creative Suite on this one. I can’t for the life of me think this is app–related. I suspect it’s some weird OS bug.
    I work in advertising, and I do some work in Adobe’s Creative Suite but *all* my copy is stored in plain text files. I always did it that way so that my files would be future–proof. It is kind of ironic now. So please, if anyone as the slightest idea of how to fix this, please, please, help. I find myself with a brand new computer I can’t use for work.
    Alessandro

    What are the files named?
    Where are they being made? (What folder?)

  • Firefox crashes when any facebook mafiawars link is clicked, it only works if i run firefox in safe mode. Why? & How do i fix it?

    after being auto-updated to version 15, firefox crashes when any facebook mafiawars link is clicked, tried versions 3.6.12 to 15 without any change and even updated java but it only works if i run firefox in safe mode. what happened and how to i fix this major problem? the only info i found was about pogo and said to update to version 15 but thats what caused the problem in the first place...

    Hi,
    Unfortunately we had a data base error today and lost some user accounts when we had to go back to our backups. If you have started this thread, your's is one of those. Since we can not recreate your account, please sign-up for a new account here to reply to the forum messages:
    https://support.mozilla.org/users/auth
    You can use the same username and email address as before. We are very sorry for the inconvenience.

  • Purchase Order With Sub Item Component List for BOM material..??

    Hi MM Experts,
    We want to create PO with a component list that should be appears under the main item.
    The component list is a mterial BOM.
    Ex:- bom MATERIAL - CATALOG1 (Non Stock Materials)
    COMPONENT 1 :-ABCD
    COMPONENT 2 :- XYZ.
    WHEN I ENTER THE BOM MATERIAL:- CATALOG1 IN /ME21N . Higher-Level Item-
    Automatically botom line should be appear component 1 , 2 as a Sub Item.
    how to configur this issue..?? Its a standard Ponot Subcontract
    Thanks,
    NAR.

    Hi!
    If you have correctly maintained the BOM in CS01, make sure that in ME21N you enter "L" as the item category, and then, in the field "material", enter the finished product (the header material in your BOM). Then, enter all other required fields.
    When all mandatory data has been completed in ME21N, go to the "Material Data" tab. Here you will see an icon named "Components". If you click this icon, the materials in your BOM will be listed here.
    So, please, do not expect the BOM to be displayed with mother and daugther segments in the item overview of ME21N. Instead, consider that you will only be able to see the components if you click the "Components" icon under the "Material Data" tab at item detail level.
    I hope this helps!
    Esther.

  • Mac Pro keeps crashing when using with KVM. where to start my investigation

    hi guys.
    i have recently ordered ATEN CS-1762 KVM switch (2 ports model) to control my Mac and PC with a single keyboard and mouse. This KVM supports USB and DVI. the problem i have is Mac crashing when i switch from PC. I contacted mfg lately and they are unaware of this issue due to not having Mac Pro to test with this appliance. They have tested it with Mac Mini, G4 and G5 though and all was OK. based on this they put a description that this box is compatible with Mac. Anyway, being relatively new Mac user i ask for your help.
    here are my steps and some ATEN's thoughts:
    1. accroding to ATEN tech support, i should power up my second computer after the first one was started and is running. firstly i start the Mac Pro, 5 mins after that i power up my PC.
    2. When both computers are up and running (Mac is in KVM focus), i switch to PC and all seems OK. I have noticed though that if NumLock is activated during the PC session, I won't be able to switch back to Mac. However, even though NumLock is OFF i still may have troubles when switching back to Mac. So it is not the rule, but maybe the clue to start with..
    NOTES:
    1. if i start PC first, Mac won't start at all. The power led will be on, but there will be no picture on the monitor and it won't accept any keyboard/mouse inputs as well as it will be network inaccessible.
    2. I tried looking into Mac's logs but need your help in getting this clear.
    here is the log. as you will see it stops at 13:04 and then continues at 13:08 after reboot.
    i've seen some parallel's VMs but i don't have Parallels installed. i used to have it, but then it never happened to work so i deleted it from the machine. can this be the case it is still somewhere?
    pls guys, any thoughts are very welcome!!!
    PS: i can cause Mac to crash the same way if necessary or if log looks inclomplete. the thing forgot to mention is: when Mac crashes and i reboot it, it will not necessarily boot up completely. i've noticed that i would have to reset the KVM switch prior to Mac's successful start up. so maybe i copied the wrong log (not the one immediately after the crash). pls advise here
    Alex
    EDIT: specs for machines are:
    Mac Pro dual 2.6GHz, 1GB (+1GB aftermarket added half a year back, works perfectly), HDD 260GB, Nvidia 7300 256Mb.
    PC - Supermicro dual xeon 1.6GHz, 4GB Ram, 4 x 36GB SCSI, Nvidia 5200 256 MB with Windows 2000 Server.
    Apr 18 13:03:38 localhost kernel[0]: hi mem tramps at 0xffe00000
    Apr 18 13:03:38 localhost kernel[0]: PAE enabled
    Apr 18 13:03:38 localhost kernel[0]: 64 bit mode enabled
    Apr 18 13:03:38 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Apr 18 13:03:38 localhost kernel[0]: vmpagebootstrap: 512109 free pages
    Apr 18 13:03:38 localhost kernel[0]: migtable_maxdispl = 71
    Apr 18 13:03:38 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Apr 18 13:03:38 localhost kernel[0]: 77 prelinked modules
    Apr 18 13:03:38 localhost kernel[0]: ACPI CA 20060421
    Apr 18 13:03:38 localhost kernel[0]: AppleIntelCPUPowerManagement: ready
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=2 LocalApicId=7 Enabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=3 LocalApicId=6 Enabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=4 LocalApicId=0 Disabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=5 LocalApicId=0 Disabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=6 LocalApicId=0 Disabled
    Apr 18 13:03:38 localhost kernel[0]: AppleACPICPU: ProcessorApicId=7 LocalApicId=0 Disabled
    Apr 18 13:03:38 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Apr 18 13:03:38 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Apr 18 13:03:38 localhost kernel[0]: using 10485 buffer headers and 4096 cluster IO buffer headers
    Apr 18 13:03:38 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Apr 18 13:03:38 localhost kernel[0]: Started CPU 01
    Apr 18 13:03:38 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Apr 18 13:03:38 localhost kernel[0]: Started CPU 02
    Apr 18 13:03:38 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Apr 18 13:03:38 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Apr 18 13:03:38 localhost kernel[0]: Started CPU 03
    Apr 18 13:03:38 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Apr 18 13:03:38 localhost kernel[0]: Security auditing service present
    Apr 18 13:03:38 localhost kernel[0]: BSM auditing present
    Apr 18 13:03:38 localhost kernel[0]: disabled
    Apr 18 13:03:38 localhost kernel[0]: rooting via boot-uuid from /chosen: BE5A00F3-0C3D-4125-9DE4-3F2193D3DAA8
    Apr 18 13:03:38 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Apr 18 13:03:38 localhost kernel[0]: USB caused wake event (EHCI)
    Apr 18 13:03:38 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0016cbfffe6cfb5c; max speed s800.
    Apr 18 13:03:38 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST3160812AS P Media/IOGUIDPartitionScheme/Customer@2
    Apr 18 13:03:38 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Apr 18 13:03:38 localhost kernel[0]: jnl: replay_journal: from: 3560448 to: 7934976 (joffset 0x48b341000)
    Apr 18 13:03:38 localhost kernel[0]: HFS: Removed 9 orphaned unlinked files
    Apr 18 13:03:38 localhost kernel[0]: Jettisoning kernel linker.
    Apr 18 13:03:38 localhost kernel[0]: Resetting IOCatalogue.
    Apr 18 13:03:38 localhost kernel[0]: PXS1: family specific matching fails
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 1
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 2
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 2
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 2
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 2
    Apr 18 13:03:38 localhost kernel[0]: Matching service count = 2
    Apr 18 13:03:38 localhost kernel[0]: NVDANV40HAL loaded and registered.
    Apr 18 13:03:38 localhost kernel[0]: PXS1: family specific matching fails
    Apr 18 13:03:38 localhost kernel[0]: Previous Shutdown Cause: 3
    Apr 18 13:03:38 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Apr 18 13:03:38 localhost mDNSResponder-108.4 (Jan 8 2007 20: 39:46)[30]: starting
    Apr 18 13:03:38 localhost memberd[38]: memberd starting up
    Apr 18 13:03:38 localhost DirectoryService[42]: Launched version 2.1 (v353.6)
    Apr 18 13:03:39 localhost lookupd[44]: lookupd (version 369.6) starting - Wed Apr 18 13:03:39 2007
    Apr 18 13:03:39 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:01:63:16
    Apr 18 13:03:39 localhost configd[34]: No AirPort Driver found.
    Apr 18 13:03:39 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:01:63:17
    Apr 18 13:03:39 localhost diskarbitrationd[37]: disk0s2 hfs FDAB59BA-2B84-3AD5-AF66-4BD8CFA20261 Macintosh HD /
    Apr 18 13:03:40 localhost lookupd[55]: lookupd (version 369.6) starting - Wed Apr 18 13:03:40 2007
    Apr 18 13:03:42 localhost kernel[0]: Intel8254x -- Link Up -- 00:17:f2:01:63:16 -- called by interruptOccurred() --
    Apr 18 13:03:42 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Apr 18 13:03:42 localhost kernel[0]: -- Auto-Neg Advertise Reg (04d) = 0xde1, Link Partner Ability Reg (05d) = 0x41e1, Gig Advertise Reg (09d) = 0xe00, Gig Link Partner Ability Reg (10d) = 0x4000
    Apr 18 13:03:42 localhost mDNSResponder: Adding browse domain local.
    Apr 18 13:03:43 localhost loginwindow[62]: Login Window Started Security Agent
    Apr 18 13:03:46 localhost kernel[0]: Intel8254x -- Link down -- 00:17:f2:01:63:17 -- called by enableHardware() --
    Apr 18 13:03:46 localhost kernel[0]: -- Auto-Neg Advertise Reg (04d) = 0xde1, Link Partner Ability Reg (05d) = 0x0, Gig Advertise Reg (09d) = 0xe00, Gig Link Partner Ability Reg (10d) = 0x4000
    Apr 18 13:03:46 Alexs-Computer configd[34]: setting hostname to "Alexs-Computer.local"
    Apr 18 13:03:46 Alexs-Computer TabletDriver[71]: RunApplication called while eRelaunching
    Apr 18 13:03:52 Alexs-Computer configd[34]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Apr 18 13:03:52 Alexs-Computer configd[34]: posting notification com.apple.system.config.network_change
    Apr 18 13:03:52 Alexs-Computer lookupd[82]: lookupd (version 369.6) starting - Wed Apr 18 13:03:52 2007
    Apr 18 13:03:52 Alexs-Computer ntpdate[94]: can't find host time.euro.apple.com\n
    Apr 18 13:03:52 Alexs-Computer ntpdate[94]: no servers can be used, exiting
    Apr 18 13:03:55 Alexs-Computer configd[34]: target=enable-network: disabled
    Apr 18 13:04:15 Alexs-Computer configd[34]: posting notification com.apple.system.config.network_change
    Apr 18 13:04:15 Alexs-Computer lookupd[148]: lookupd (version 369.6) starting - Wed Apr 18 13:04:15 2007
    Apr 18 13:04:15 Alexs-Computer SystemStarter[41]: "/Library/StartupItems/Tablet" failed security check: permissions
    Apr 18 13:04:17 Alexs-Computer kernel[0]: Parallels Workstation Hypervisor started.
    Apr 18 13:04:17 Alexs-Computer kernel[0]: Parallels Workstation VMM Main driver started.
    Apr 18 13:04:18 Alexs-Computer kernel[0]: comparallels_kextPvsvnic: Ethernet address 00:01:23:45:67:89
    Apr 18 13:04:19 Alexs-Computer SystemStarter[41]: Parallels VirtualMachine drivers (149) did not complete successfully
    Apr 18 13:08:25 localhost kernel[0]: hi mem tramps at 0xffe00000
    Apr 18 13:08:25 localhost kernel[0]: PAE enabled
    Apr 18 13:08:25 localhost kernel[0]: 64 bit mode enabled
    here couple more logs right at the moment of crash (found in paic.log). hopefully then can shed som elight on the troubles:
    pls advise
    Wed Apr 18 13:04:16 2007
    panic(cpu 0 caller 0x001A429B): Unresolved kernel trap (CPU 0, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x00004000, CR3: 0x01019000, CR4: 0x000006e0
    EAX: 0x23a3d578, EBX: 0x00000000, ECX: 0x00001000, EDX: 0x00004000
    CR2: 0x00004000, EBP: 0x2544bc18, ESI: 0x23a3d578, EDI: 0x00004000
    EFL: 0x00010206, EIP: 0x0019637c, CS: 0x00000008, DS: 0x00000010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x2544b9d8 : 0x128d08 (0x3cb134 0x2544b9fc 0x131de5 0x0)
    0x2544ba18 : 0x1a429b (0x3d0e4c 0x0 0xe 0x3d0670)
    0x2544bb28 : 0x19ada4 (0x2544bb40 0x23a39578 0x2544bb98 0x84ae50)
    0x2544bc18 : 0x84b148 (0x23a39000 0x2 0x2544bc68 0x1a1738)
    0x2544bc38 : 0x8393d4 (0x2544bddc 0x0 0x2544bc68 0x4b0000)
    0x2544bd18 : 0x6ca33a (0x23a39000 0x2544bdaa 0x2544bdaa 0x84)
    0x2544bd78 : 0x6be697 (0x3c34000 0x2544bdaa 0x2544bdaa 0x84)
    0x2544bdf8 : 0x6a72e3 (0x3c34000 0x1 0x2544be48 0x1a1738)
    0x2544be18 : 0x6aee4a (0x553f8000 0x0 0x3ff96a27 0x3d87)
    0x2544be78 : 0x546b55 (0x3c34000 0x2544beac 0x1 0x1a26ce)
    0x2544bec8 : 0x54a1d0 (0x3a21e00 0x3 0x3f60ddf8 0x3d87)
    0x2544bee8 : 0x54bc8d (0x3a21e00 0x7abf 0x5cbd220 0x5cbd160)
    0x2544bf28 : 0x39c536 (0x3a21e00 0x3a40280 0x8 0x2)
    0x2544bf78 : 0x13d7d9 (0x3a40280 0x3a87e78 0x0 0x0)
    0x2544bfc8 : 0x19ac1c (0x0 0x0 0x19e0b5 0x397fcec) Backtrace terminated-invalid frame pointer 0x0
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.NVDAResman(4.5.2)@0x6c9000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    dependency: com.apple.iokit.IONDRVSupport(1.4.5)@0x6ba000
    com.apple.iokit.IONDRVSupport(1.4.5)@0x6ba000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    com.apple.iokit.IOHIDFamily(1.4.10)@0x531000
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386
    Wed Apr 18 17:06:26 2007
    panic(cpu 1 caller 0x001A429B): Unresolved kernel trap (CPU 1, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x00004000, CR3: 0x01019000, CR4: 0x000006e0
    EAX: 0x23a4d578, EBX: 0x00000000, ECX: 0x00001000, EDX: 0x00004000
    CR2: 0x00004000, EBP: 0x25443c18, ESI: 0x23a4d578, EDI: 0x00004000
    EFL: 0x00010206, EIP: 0x0019637c, CS: 0x00000008, DS: 0x04080010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x254439d8 : 0x128d08 (0x3cb134 0x254439fc 0x131de5 0x0)
    0x25443a18 : 0x1a429b (0x3d0e4c 0x1 0xe 0x3d0670)
    0x25443b28 : 0x19ada4 (0x25443b40 0x23a49578 0x1 0x4065004)
    0x25443c18 : 0x84b148 (0x23a49000 0x2 0x25443c48 0x713bbf)
    0x25443c38 : 0x8393d4 (0x25443ddc 0x0 0x25443c68 0x7116c2)
    0x25443d18 : 0x6ca33a (0x23a49000 0x25443daa 0x25443daa 0x84)
    0x25443d78 : 0x6be697 (0x3c61c00 0x25443daa 0x25443daa 0x84)
    0x25443df8 : 0x6a72e3 (0x3c61c00 0x2 0x25443e28 0x1e)
    0x25443e18 : 0x6aee4a (0x523e0000 0x0 0xfd8e30e2 0xc93)
    0x25443e78 : 0x546b55 (0x3c61c00 0x25443eac 0x2 0x1a26ce)
    0x25443ec8 : 0x54a1d0 (0x3a21e00 0x3 0xfcf5a332 0xc93)
    0x25443ee8 : 0x54bc8d (0x3a21e00 0x1917 0x4336be0 0x4336b20)
    0x25443f28 : 0x39c536 (0x3a21e00 0x3a40280 0x8 0x2)
    0x25443f78 : 0x13d7d9 (0x3a40280 0x3a39ff8 0x0 0x3303)
    0x25443fc8 : 0x19ac1c (0x0 0x0 0x19e0b5 0x5cb2144) Backtrace terminated-invalid frame pointer 0x0
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.NVDAResman(4.5.2)@0x6c9000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    dependency: com.apple.iokit.IONDRVSupport(1.4.5)@0x6ba000
    com.apple.iokit.IONDRVSupport(1.4.5)@0x6ba000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    com.apple.iokit.IOGraphicsFamily(1.4.5)@0x69f000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x5e0000
    com.apple.iokit.IOHIDFamily(1.4.10)@0x531000
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386

    ok so i experimented a little with the hardware and here what i have to the moment:
    1. i thought that the usb kb could be the case for mac os to crash so i disconnected the cable from the KVM and plugged normal apple kb to the mac.
    2. however when i tried switching back to mac, the machine crashed again.
    from what i noticed for the last few days 'working' with this kvm switch was the screen resolution changing while i was switching. meaning the screen flickered for couple of times prior to showing 1280x1024 that was set up in the system. during flickering the resoution became 1024x768. i 've seen it pretty clearly, just it was for half of a second.
    also when powering up both machines, they were starting with 1024x768 and not 1280x1024 as was set up. i had to manually change the screen resolution on both machines (pc and mac) every time after successful start up.
    so by far my understanding is that kvm switch forces monitor for 1024x768 during switches and on start up. it also causes the OSes (win2K and MacOSX) to lose 1280x1024 and accept 1024x768 as if the monitor was changed and couldn't operate at a higher resolution.
    having said that i uploaded this info to kvm mfg (ATEN) and couple more mac forums so that this info may help someone else when ordering a kvm for mac. at the same time i am still open for any thoughts, advices and crazy ideas to get round this bug.
    alex

  • Itunes 10.6.1.7 keeps crashing when syncing with the new Ipad

    Glad to find this forum!
    It's been a disappointing and frustrating week for me as I have tried to sync my new ipad with itunes 10.6.1.7. Itunes keeps crashing without reasons when syncing either apps, music or videos. Btw, I am using Windows XP SP3.
    So far, I have not been able to play any videos because Itunes always crashes.
    I have tried to re-install Itunes for more than 5 times [with fresh install] but the problem still occurs. I have also tried to downgrade to Itunes 10.5.3 as suggested in the other threads but Itunes still crashes. This only happens when syncing with the new Ipad.
    I have an Ipod Nano which works great on both version of Itunes.
    I am really disappointed because I can't watch movies and/or listen to music on my new ipad because it keeps crashing.
    My wish is just simple. I just want to be able to watch movies and listen to my music on my new ipad. Sadly, this is not possible yet.
    Can anyone help?

    I get the exactly the same problem with win 7, i rang apple support who suggested i try another machine/or create another account on my machine???? why should i, stupid ipad 3rd gen is now sitting here un syncable, apple support ....tut tut very poor support, its a shame im out of the 7 day period otherwise this ipad would be going straight back, older versions of itunes worked fine, some one must know a fix for this??

  • Iphone5 crash when syncing with itunes

    My iTunes (11) crashes every time when syncing with my iPhone 5 though it's never happened before.

    I had done all of that to no avail.  I did call Apple Tech Support and after he suggested I try a USB port in the rear of the Win 7 computer, things starting working again.  I had tried switching the USB port at the front of the machine but that had not helped.  Everything is good to go again.  thanks for  your reply

Maybe you are looking for

  • Blackberry desktop manager 5.0 won't sync windows address book/mail

    Hi, before I upgrade my laptop to win7 64 bit with DM 5.0, I had Vista 64 bit with DM 5.0 and I was able to sync windows address book. Now on my win7, I can't select it anymore. I install the same software what I use on vista to win7. I use a blackbe

  • The memo field in forms won't display text?

    I am using Firefox 33.1.1 on a WindowsXP Pro system and have been using FireFox for quite some time . . . Recently, I must have done something, I just don't know, but I can't seem to remedy the problem. I create and use a lot of forms. Standard <form

  • Recorded Video Playback - iPhone

    Hi All - I'm having some issues with the playback of videos recorded with my iPhone 3GS. It seems to all be related to the 'layout' during playback. Videos recorded in portrait are being played back in landscape (in everything other than Quicktime),

  • ITunes won't recognise ipad

    ITunes won't recognise my ipad, I have reinstalled iTunes, used different USB ports and restarted ipad and computer.  Any ideas

  • Adobe Flash 12 for windows 7 : Seems infected by a Virus or Trojan

    Adobe 12 seems infected with a virus.   After installing Adobe Flash 12 my computer is controlled by some program that tries to immediately connect to the internet and play VERY IRRITATING sounds that sound like someone is changing a radio station co