BOM to PDF

Hi,
I am playing with Adboe to see if there is a way to autocreate a BOM (Bill of Materials) parts structure complete with 2D drawings.  This is a typical Engineering application i.e., you have a Bill of Materials with assemblies and parts, the parts are part of the assemblies, I can manually use bookmarks to create the same structure once I have converted the drawings into a PDF document, I want to try and figure out a way to do similar but automatically by importing the bookmark structure and having it recognise the PDF docs, thus assigning destinations to the BOM structure.
If this can be done it will be a fabulous feature for use on tablet devices

I don't know why this is happening.  All I can offer is a download of the 10.1.x installer: http://get.adobe.com/reader/enterprise/

Similar Messages

  • Issues using the "Find" feature in version 11.0.06

    I am trying to search a BOM in pdf form from my EE and it has 1000's of component identifiers. When I try to "Find" U28 it takes me to I12, when I search for I12 it takes me to C218...
    I tried searching the same document in version 10.1.9 on another system in the office and it worked fine...
    Maybe it's my magnetic personality?
    Any ideas?????????????????????????????

    I don't know why this is happening.  All I can offer is a download of the 10.1.x installer: http://get.adobe.com/reader/enterprise/

  • Gerar PDF com código de barras a partir de um SAPScript

    Bom Dia Senhores!
    Estou tendo problemas na geração de um arquivo PDF a partir de um SAPScript com código de barras.
    Tenho um formulário SAPScript que contém código de barras, este, é gerado pela F110.
    O programa precisa que este arquivo PDF gerado seja enviado por email, porém ao gerarmos um arquivo PDF deste SAPScript, o código de barras contido nele é meramente ilustrativo, ou seja, não sai com as informações certas do boleto, sai como imagem.
    É de meu conhecimento que se este formulário fosse um SmartForm sairia tudo perfeito já que a transformação do SmartForm em PDF mantém o código de barras de forma correta.
    Porém, se formos na SP01 e mandamos imprimir este SAPScript com a saída 'PDF Creator' ele gera o código de barras corretamente.
    Minha pergunta é se alguem conhece alguma função de transformação de SAPScript para PDF que funcione corretamente, algo similar ao funcionamento do PDFCreator.
    Obrigado;
    Daniel Salerno de Arruda

    Boa Tarde Daniel Salerno,
    Tenho o mesmo problema que você tinha.
    Gero um arquivo em PDF com Boleto de pagamento para enviar mas o código de barras neste arquivo é meramente ilustrativo e não consigo enviar o código para leitura.
    Este formulário está em SAPScript,
    Será que você pode me ajudar ?
    Obrigada.
    Solange Guimarães.

  • Creating a link to a Multibyte file with PDF 1.4

    I am trying to create a link to a file that contains multibyte characters (specifically Japanese) - unfortunately, I need to conform to the PDF 1.4 standard (I can make things work fine using PDF 1.7 and /UF).
    The 1.7 standard says that as of PDF 1.2, a file specification can contain multibyte character codes if you represent them in hexadecimal format. I cannot get this to work, and wonder if someone has any insight into why this might be.
    My multibyte file spec is UTF-8 encoded, and this is how I write it (in hex) to the document (without thr UTF-8 BOM). When I later click on that link, I get an error that the specified document does not exist - the part of the filespec that is English characters are displayed correctly, but the Japanese characters show up incorrectly.
    Does Acrobat expect these characters to be UTF-8 encoded, or otherwise? I've tried prepended the UTF-8 BOM, but that didn't make a difference. Do I need to UTF-16BE encode them (like with /UF)?
    Additional info: I've tried using Acrobat 5 to create a new PDF and inserted a link to a file whose name contains Japanese characters - when clicking on the link in this, I also get the 'file does not exist' error. Also, looking in the PDF, the filespec is NOT hex encoded, and the Japanese characters have been replaced by ???.

    Hmm... so, what does it mean when the 1.7 spec says 'In PDF 1.2 or higher, a file specification may contain multiple-byte character
    codes, represented in hexadecimal form between angle brackets (< and >).'? If Acrobat 5 supports PDF 1.4, I would have thought this would mean that Acrobat 5 would support multibyte character codes...
    I would guess that this puts the final nail in the coffin of creating links to filenames with non Roman characters from Acrobat 5.
    Just so I can report this upwards, I see that you are an Adobe employee - are you a support person?

  • How to save classical report as pdf file

    hi all,
    i have created a classical report and now the requirement is to save that report as a pdf .
    is there any FM or any other method to do so?
    regards
    vijay

    Hi Vijay,
    Here is what I did for the same requirement:
    Calling for the PDF File name and path to save the file
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = 'Quote Bom PDF File'
          default_file_name    = l_file_name
          initial_directory    = l_fullpath
          prompt_on_overwrite  = 'X'
        CHANGING
          filename             = l_file
          path                 = l_path
          fullpath             = g_path
          user_action          = l_user
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      IF l_user = 0.
    Please follow the following order for the subroutines which is creating the Spool Number, writing the* 
    statements on to the screen and then create the PDF file*
        PERFORM get_spool_created.
        PERFORM write_lines.
        NEW-PAGE PRINT OFF.
        g_spool_no = sy-spono.
        PERFORM download_as_pdf.
    Spool Number is getting created in this routine*
    FORM get_spool_created .
      DATA: pripar TYPE pri_params,
              arcpar TYPE arc_params,
              lay    TYPE pri_params-paart,
              lines  TYPE pri_params-linct,
              rows   TYPE pri_params-linsz.
      DATA: val(1), val1(1).
      DATA: dest TYPE pri_params-pdest VALUE 'LP01'.
      DATA: name TYPE pri_params-plist VALUE 'Testing'.
      DATA: i_pdf TYPE STANDARD TABLE OF tline.
      DATA: spono TYPE tsp01-rqident.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          destination              = dest
          no_dialog                = 'X'
          immediately              = ' '
        IMPORTING
          out_archive_parameters   = arcpar
          out_parameters           = pripar
          valid                    = val
          valid_for_spool_creation = val1
        EXCEPTIONS
          archive_info_not_found   = 1
          invalid_print_params     = 2
          invalid_archive_params   = 3
          OTHERS                   = 4.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      pripar-linsz = '132'.
      pripar-paart = 'X_65_132'.
      pripar-prdsn = 'LP01'.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          in_archive_parameters    = arcpar
          in_parameters            = pripar
          no_dialog                = 'X'
          list_name                = name
        IMPORTING
          out_archive_parameters   = arcpar
          out_parameters           = pripar
          valid                    = val
          valid_for_spool_creation = val1
        EXCEPTIONS
          archive_info_not_found   = 1
          invalid_print_params     = 2
          invalid_archive_params   = 3
          OTHERS                   = 4.
      IF sy-subrc EQ 0.
        NEW-PAGE NO-TITLE NO-HEADING PRINT ON
        NEW-SECTION
        PARAMETERS pripar
        ARCHIVE PARAMETERS arcpar
        NO DIALOG.
      ELSE.
        WRITE:/ 'Unable to create spool'.
        EXIT.
      ENDIF.
    ENDFORM.                    " GET_SPOOL_CREATED
    Write all your statements in this routine*
    *&      Form  WRITE_LINES
          text
    -->  p1        text
    <--  p2        text
    FORM write_lines .
    CALL THE ROUTINE WHICH WRITES ALL LINES TO THE SCREEN
    ENDFORM.                    " WRITE_LINES
    *Download the file as PDF
    *&      Form  DOWNLOAD_AS_PDF
          text
    -->  p1        text
    <--  p2        text
    FORM download_as_pdf .
      DATA:
              l_no_of_bytes TYPE i,
              l_pdf_spoolid LIKE tsp01-rqident,
              l_jobname     LIKE tbtcjob-jobname,
              l_jobcount    LIKE tbtcjob-jobcount,
              i_pdf         TYPE TABLE OF tline,
              i_cpdf        TYPE TABLE OF tline,
              l_spono       TYPE tsp01_sp0r-rqid_char,
              l_fullpath    TYPE string.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = g_spool_no
          no_dialog                = ' '
        IMPORTING
          pdf_bytecount            = l_no_of_bytes
          pdf_spoolid              = l_pdf_spoolid
          btc_jobname              = l_jobname
          btc_jobcount             = l_jobcount
        TABLES
          pdf                      = i_pdf
        EXCEPTIONS
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      l_spono = g_spool_no.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
        EXPORTING
          spoolid = l_spono.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize            = l_no_of_bytes
          filename                = g_path
          filetype                = 'BIN'
        TABLES
          data_tab                = i_pdf
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6.
    ENDFORM.                    " DOWNLOAD_AS_PDF
    Thanks.
    Respond if you need any more help.

  • XML Publisher errors with pdf template workd perfectly with rtf template

    Hi there,
    I hope you are well.
    I am having a problem with pdf templates in XML publisher. I have a report which outputs XML, this works very well with an rtf template. However I am trying to create a pdf xml publisher template (using the concurrent process which generates the same xml data source) and use this as the basis for the xml publisher report. The process is failing with the error ‘No output file exists for request xxxx’
    I am currently working with a very simplified example, the concurrent program generates 5 fields in the xml output including ASSIGNMENT_NUMBER and NI_NUMBER.
    Text fields with the same names are inserted into the pdf corresponding to all fields.
    Any advice on this would be very greatly appreciated.
    Many Thanks
    Kev

    Hi there,
    I have enabled debug mode and run the report as a 2 step process.
    The debug file is attached. Although it says pdf file created successfully no pdf is created and the output file is 0 bytes in size.
    Any help would be greatly appreciated.
    Kev
    XML Publisher: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 13-MAY-2010 11:22:25
    Oracle XML Publisher 5.6.3
    Request ID: 2429757
    All Parameters: ReportRequestID=2429756:TemplateApplication=801:ReportTemplate=RCBC_Payslip_def2_temp2o:TemplateLocale=en:DebugFlag=Y:ReportTemplateType=PDF:OutputFormat=PDF
    Report Template: RCBC_Payslip_def2_temp2o
    Report Req ID: 2429756
    Template Application: PAY
    Template Locale: en
    Debug Flag: Y
    Output Format: PDF
    parseLocale
    Updating request description
    Updated description
    Output type: PDF
    Waiting for XML request
    lPhase: Completed
    lStatus: Warning
    lDevPhase: COMPLETE
    lDevStatus: WARNING
    lMessage: Normal completion
    lError: null
    lRetVal: Successful
    Retrieving XML request information
    Node Name:RC-ORADB-1
    Preparing parameters
    PDF output =/u13/RCDEV1/rcdev1comn/admin/out/RCDEV1_rc-oradb-1/o2429757.out
    inputfilename =/u13/RCDEV1/rcdev1comn/admin/out/RCDEV1_rc-oradb-1/o2429756.out
    Apps Short: PAY
    Templ Code: RCBC_Payslip_def2_temp2o
    Templ Lang: en
    Templ Terr: 00
    Process template
    [051310_112230737][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [051310_112230738][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [051310_112230739][][EXCEPTION] [DEBUG] [IA_TOP]:[u13/RCDEV1/rcdev1appl/ia/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [051310_112230739][][EXCEPTION] [DEBUG] [PA_TOP]:[u13/RCDEV1/rcdev1appl/pa/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [CONTEXT_NAME]:[RCDEV1_rc-oradb-1]
    [051310_112230739][][EXCEPTION] [DEBUG] [PLATFORM]:[SUN_OS5]
    [051310_112230739][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [051310_112230739][][EXCEPTION] [DEBUG] [CUE_TOP]:[u13/RCDEV1/rcdev1appl/cue/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [CSI_TOP]:[u13/RCDEV1/rcdev1appl/csi/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [EDR_TOP]:[u13/RCDEV1/rcdev1appl/edr/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [QRM_TOP]:[u13/RCDEV1/rcdev1appl/qrm/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [NLS_SORT]:[binary]
    [051310_112230740][][EXCEPTION] [DEBUG] [PO_TOP]:[u13/RCDEV1/rcdev1appl/po/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [APPLUSR]:[usrxit]
    [051310_112230740][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [051310_112230740][][EXCEPTION] [DEBUG] [ASF_TOP]:[u13/RCDEV1/rcdev1appl/asf/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [AFJCPARG]:[-client]
    [051310_112230740][][EXCEPTION] [DEBUG] [CUS_TOP]:[u13/RCDEV1/rcdev1appl/cus/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [FORMS60_RTI_DIR]:[u13/RCDEV1/rcdev1comn/admin/log/RCDEV1_rc-oradb-1]
    [051310_112230740][][EXCEPTION] [DEBUG] [PSB_TOP]:[u13/RCDEV1/rcdev1appl/psb/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [CHMOD]:[chmod]
    [051310_112230741][][EXCEPTION] [DEBUG] [ADJVAPRG]:[usr/jdk1.6.0_04/bin/java]
    [051310_112230741][][EXCEPTION] [DEBUG] [ORAPLSQLLOADPATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/graphs]
    [051310_112230741][][EXCEPTION] [DEBUG] [PCCFLAGS]:[include=$(PCCINC) ireclen=161 sqlcheck=none dbms=v6]
    [051310_112230741][][EXCEPTION] [DEBUG] [GMF_TOP]:[u13/RCDEV1/rcdev1appl/gmf/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=rc-oradb-1.redclev.net)(PORT=1528)))(CONNECT_DATA=(SID=RCDEV1)))]
    [051310_112230741][][EXCEPTION] [DEBUG] [BEN_TOP]:[u13/RCDEV1/rcdev1appl/ben/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [IEO_TOP]:[u13/RCDEV1/rcdev1appl/ieo/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [APPLMSG]:[mesg]
    [051310_112230741][][EXCEPTION] [DEBUG] [AST_TOP]:[u13/RCDEV1/rcdev1appl/ast/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [ORACLE_HOME]:[u13/RCDEV1/rcdev1ora/8.0.6]
    [051310_112230742][][EXCEPTION] [DEBUG] [FPT_TOP]:[u13/RCDEV1/rcdev1appl/fpt/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [OTA_TOP]:[u13/RCDEV1/rcdev1appl/ota/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [PSP_TOP]:[u13/RCDEV1/rcdev1appl/psp/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [OKE_TOP]:[u13/RCDEV1/rcdev1appl/oke/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [IBU_TOP]:[u13/RCDEV1/rcdev1appl/ibu/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [FORMS60_CATCHTERM]:[1]
    [051310_112230742][][EXCEPTION] [DEBUG] [DT_TOP]:[u13/RCDEV1/rcdev1appl/dt/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [JL_TOP]:[u13/RCDEV1/rcdev1appl/jl/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [051310_112230742][][EXCEPTION] [DEBUG] [OPI_TOP]:[u13/RCDEV1/rcdev1appl/opi/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [IAS_CONFIG_HOME]:[u13/RCDEV1/rcdev1ora/iAS]
    [051310_112230743][][EXCEPTION] [DEBUG] [PN_TOP]:[u13/RCDEV1/rcdev1appl/pn/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [AZ_TOP]:[u13/RCDEV1/rcdev1appl/az/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [APPLPTMP]:[usr/tmp/RCDEV1]
    [051310_112230743][][EXCEPTION] [DEBUG] [GSM_FLAG]:[ON]
    [051310_112230743][][EXCEPTION] [DEBUG] [FORMS60_PATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/resource:/u13/RCDEV1/rcdev1appl/au/11.5.0/resource/stub]
    [051310_112230743][][EXCEPTION] [DEBUG] [OKS_TOP]:[u13/RCDEV1/rcdev1appl/oks/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [PSA_TOP]:[u13/RCDEV1/rcdev1appl/psa/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [FORMS60_TIMEOUT]:[5]
    [051310_112230743][][EXCEPTION] [DEBUG] [TK_PRINT_STATUS]:[echo %n is valid]
    [051310_112230744][][EXCEPTION] [DEBUG] [FA_TOP]:[u13/RCDEV1/rcdev1appl/fa/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [ZFA_TOP]:[u13/RCDEV1/rcdev1appl/zfa/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [OA_MEDIA]:[u13/RCDEV1/rcdev1comn/java/oracle/apps/media]
    [051310_112230744][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [051310_112230744][][EXCEPTION] [DEBUG] [EC_TOP]:[u13/RCDEV1/rcdev1appl/ec/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [HXT_TOP]:[u13/RCDEV1/rcdev1appl/hxt/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [OA_HTML]:[u13/RCDEV1/rcdev1comn/html]
    [051310_112230744][][EXCEPTION] [DEBUG] [GME_TOP]:[u13/RCDEV1/rcdev1appl/gme/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [051310_112230744][][EXCEPTION] [DEBUG] [AK_TOP]:[u13/RCDEV1/rcdev1appl/ak/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [RESP_ID]:[50236]
    [051310_112230745][][EXCEPTION] [DEBUG] [ME_TOP]:[u13/RCDEV1/rcdev1appl/me/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [JTF_TOP]:[u13/RCDEV1/rcdev1appl/jtf/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [COMMON_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230745][][EXCEPTION] [DEBUG] [BIS_TOP]:[u13/RCDEV1/rcdev1appl/bis/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [FORMS60_APPSLIBS]:[APPCORE FNDSQF APPDAYPK APPFLDR GLCORE HR_GEN HR_SPEC ARXCOVER]
    [051310_112230745][][EXCEPTION] [DEBUG] [MFG_TOP]:[u13/RCDEV1/rcdev1appl/mfg/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [FND_TOP]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [GMS_TOP]:[u13/RCDEV1/rcdev1appl/gms/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [SSP_TOP]:[u13/RCDEV1/rcdev1appl/ssp/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [LD_LIBRARY_PATH]:[u13/RCDEV1/rcdev1ora/8.0.6/network/jre11/lib/sparc/native_threads:/u13/RCDEV1/rcdev1appl/cz/11.5.0/bin:/u13/RCDEV1/rcdev1ora/8.0.6/lib:/usr/dt/lib:/usr/openwin/lib]
    [051310_112230746][][EXCEPTION] [DEBUG] [FORMS60_RESTRICT_ENTER_QUERY]:[TRUE]
    [051310_112230746][][EXCEPTION] [DEBUG] [CP]:[cp]
    [051310_112230746][][EXCEPTION] [DEBUG] [OKR_TOP]:[u13/RCDEV1/rcdev1appl/okr/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [ADJREOPTS]:[-Xmx512M]
    [051310_112230746][][EXCEPTION] [DEBUG] [IBE_TOP]:[u13/RCDEV1/rcdev1appl/ibe/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [OZP_TOP]:[u13/RCDEV1/rcdev1appl/ozp/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [FORMS60_LOV_MINIMUM]:[1000]
    [051310_112230746][][EXCEPTION] [DEBUG] [TWO_TASK]:[RCDEV1]
    [051310_112230746][][EXCEPTION] [DEBUG] [GRAPHICS60_PATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/graphs]
    [051310_112230747][][EXCEPTION] [DEBUG] [CC]:[opt/SUNWspro/bin/cc]
    [051310_112230747][][EXCEPTION] [DEBUG] [FORMS60_OUTPUT]:[u13/RCDEV1/rcdev1comn/temp]
    [051310_112230747][][EXCEPTION] [DEBUG] [MYAPPSORA]:[u13/RCDEV1/rcdev1appl/APPSRCDEV1_rc-oradb-1.env]
    [051310_112230747][][EXCEPTION] [DEBUG] [IGI_TOP]:[u13/RCDEV1/rcdev1appl/igi/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [GMD_TOP]:[u13/RCDEV1/rcdev1appl/gmd/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [OA_DOC]:[u13/RCDEV1/rcdev1comn/doc]
    [051310_112230747][][EXCEPTION] [DEBUG] [IEM_TOP]:[u13/RCDEV1/rcdev1appl/iem/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_FREE_MEM]:[TRUE]
    [051310_112230747][][EXCEPTION] [DEBUG] [DOM_TOP]:[u13/RCDEV1/rcdev1appl/dom/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [GL_TOP]:[u13/RCDEV1/rcdev1appl/gl/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [OKC_TOP]:[u13/RCDEV1/rcdev1appl/okc/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [PRP_TOP]:[u13/RCDEV1/rcdev1appl/prp/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [ENI_TOP]:[u13/RCDEV1/rcdev1appl/eni/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [CNTL_BREAK]:[ON]
    [051310_112230748][][EXCEPTION] [DEBUG] [CSF_TOP]:[u13/RCDEV1/rcdev1appl/csf/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [XML_REPORTS_XENVIRONMENT]:[u13/RCDEV1/rcdev1ora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb]
    [051310_112230748][][EXCEPTION] [DEBUG] [FORMS60_OAM_FRD]:[OFF]
    [051310_112230748][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [051310_112230748][][EXCEPTION] [DEBUG] [IGW_TOP]:[u13/RCDEV1/rcdev1appl/igw/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [AX_TOP]:[u13/RCDEV1/rcdev1appl/ax/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [XNS_TOP]:[u13/RCDEV1/rcdev1appl/xns/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [PCCINC]:[. include=$(FND_TOP)/include include=$(ORACLE_HOME)/precomp/public]
    [051310_112230748][][EXCEPTION] [DEBUG] [APPLBIN]:[bin]
    [051310_112230748][][EXCEPTION] [DEBUG] [ORACLE_LOCALPREFERENCE]:[u13/RCDEV1/rcdev1ora/8.0.6/tools/admin]
    [051310_112230748][][EXCEPTION] [DEBUG] [DB_HOST]:[rc-oradb-1.redclev.net]
    [051310_112230748][][EXCEPTION] [DEBUG] [CUP_TOP]:[u13/RCDEV1/rcdev1appl/cup/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [JTS_TOP]:[u13/RCDEV1/rcdev1appl/jts/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [HOME]:[u01/appldev1]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLFENV]:[RCDEV1_rc-oradb-1.env]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLSAV]:[save]
    [051310_112230749][][EXCEPTION] [DEBUG] [BIC_TOP]:[u13/RCDEV1/rcdev1appl/bic/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [FORMS60_LOV_WEIGHT]:[16]
    [051310_112230749][][EXCEPTION] [DEBUG] [FORMS60_BLOCKING_LONGLIST]:[FALSE]
    [051310_112230749][][EXCEPTION] [DEBUG] [IPD_TOP]:[u13/RCDEV1/rcdev1appl/ipd/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [WIP_TOP]:[u13/RCDEV1/rcdev1appl/wip/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [CE_TOP]:[u13/RCDEV1/rcdev1appl/ce/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [ZSA_TOP]:[u13/RCDEV1/rcdev1appl/zsa/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLRGT]:[regress]
    [051310_112230749][][EXCEPTION] [DEBUG] [FRM_TOP]:[u13/RCDEV1/rcdev1appl/frm/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [VEA_TOP]:[u13/RCDEV1/rcdev1appl/vea/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [RHX_TOP]:[u13/RCDEV1/rcdev1appl/rhx/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPL_CPLEX_LICDIR]:[u13/RCDEV1/rcdev1appl/admin/cplex]
    [051310_112230750][][EXCEPTION] [DEBUG] [OKB_TOP]:[u13/RCDEV1/rcdev1appl/okb/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPLINC]:[include]
    [051310_112230750][][EXCEPTION] [DEBUG] [CUA_TOP]:[u13/RCDEV1/rcdev1appl/cua/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPLRGF]:[u13/RCDEV1/rcdev1comn/rgf/RCDEV1_rc-oradb-1]
    [051310_112230750][][EXCEPTION] [DEBUG] [OAH_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230750][][EXCEPTION] [DEBUG] [CSE_TOP]:[u13/RCDEV1/rcdev1appl/cse/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [ORACLE_TERM]:[vt220]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[76E884AC9C460C4DE04400144F44F83A40176233932359814365370657522266]
    [051310_112230750][][EXCEPTION] [DEBUG] [RLA_TOP]:[u13/RCDEV1/rcdev1appl/rla/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [RG_TOP]:[u13/RCDEV1/rcdev1appl/rg/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CS_TOP]:[u13/RCDEV1/rcdev1appl/cs/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CFLAGS]:[-Xc -xstrconst -xcg92 $(INCLUDE_FLAGS) -O -DSUN_OS5 -DNLS_ASIA -DAFSTUBS]
    [051310_112230751][][EXCEPTION] [DEBUG] [HXC_TOP]:[u13/RCDEV1/rcdev1appl/hxc/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[800]
    [051310_112230751][][EXCEPTION] [DEBUG] [INV_TOP]:[u13/RCDEV1/rcdev1appl/inv/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [INCLUDE_FLAGS]:[-I. -I$(FND_TOP)/include -I$(ORACLE_HOME)/precomp/public -I$(ORACLE_HOME)/rdbms/demo]
    [051310_112230751][][EXCEPTION] [DEBUG] [FORMS60_TRACE_PATH]:[u13/RCDEV1/rcdev1comn/admin/log/RCDEV1_rc-oradb-1]
    [051310_112230751][][EXCEPTION] [DEBUG] [AF_CLASSPATH]:[usr/jdk1.6.0_04/jre/lib/rt.jar:/usr/jdk1.6.0_04/lib/dt.jar:/usr/jdk1.6.0_04/lib/tools.jar:/usr/jdk1.6.0_04/jre/lib/charsets.jar:/u13/RCDEV1/rcdev1comn/java/appsborg2.zip:/u13/RCDEV1/rcdev1ora/8.0.6/forms60/java:/u13/RCDEV1/rcdev1comn/java]
    [051310_112230751][][EXCEPTION] [DEBUG] [APPLIMG]:[images]
    [051310_112230751][][EXCEPTION] [DEBUG] [IBC_TOP]:[u13/RCDEV1/rcdev1appl/ibc/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CSS_TOP]:[u13/RCDEV1/rcdev1appl/css/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [ASP_TOP]:[u13/RCDEV1/rcdev1appl/asp/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [FORMS60_MODULE_PATH]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/forms]
    [051310_112230751][][EXCEPTION] [DEBUG] [AF_JRE_TOP]:[usr/jdk1.6.0_04]
    [051310_112230752][][EXCEPTION] [DEBUG] [XNC_TOP]:[u13/RCDEV1/rcdev1appl/xnc/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [WSM_TOP]:[u13/RCDEV1/rcdev1appl/wsm/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [APPLREP]:[reports]
    [051310_112230752][][EXCEPTION] [DEBUG] [ENG_TOP]:[u13/RCDEV1/rcdev1appl/eng/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [PQP_TOP]:[u13/RCDEV1/rcdev1appl/pqp/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [CSD_TOP]:[u13/RCDEV1/rcdev1appl/csd/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [WPS_TOP]:[u13/RCDEV1/rcdev1appl/wps/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [APPLREG]:[regress]
    [051310_112230752][][EXCEPTION] [DEBUG] [GMP_TOP]:[u13/RCDEV1/rcdev1appl/gmp/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [051310_112230752][][EXCEPTION] [DEBUG] [FPA_TOP]:[u13/RCDEV1/rcdev1appl/fpa/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [OKO_TOP]:[u13/RCDEV1/rcdev1appl/oko/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [CUN_TOP]:[u13/RCDEV1/rcdev1appl/cun/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [DDD_TOP]:[u13/RCDEV1/rcdev1appl/ddd/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [CSR_TOP]:[u13/RCDEV1/rcdev1appl/csr/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [PRINTER]:[noprint]
    [051310_112230753][][EXCEPTION] [DEBUG] [IGF_TOP]:[u13/RCDEV1/rcdev1appl/igf/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [GMA_TOP]:[u13/RCDEV1/rcdev1appl/gma/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [APPL_TOP]:[u13/RCDEV1/rcdev1appl]
    [051310_112230753][][EXCEPTION] [DEBUG] [BNE_TOP]:[u13/RCDEV1/rcdev1appl/bne/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [AMW_TOP]:[u13/RCDEV1/rcdev1appl/amw/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [MST_TOP]:[u13/RCDEV1/rcdev1appl/mst/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [PMI_TOP]:[u13/RCDEV1/rcdev1appl/pmi/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [ASO_TOP]:[u13/RCDEV1/rcdev1appl/aso/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [XNB_TOP]:[u13/RCDEV1/rcdev1appl/xnb/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [FND_OLD_ORA_NET2_DESC]:[14,17]
    [051310_112230753][][EXCEPTION] [DEBUG] [IBP_TOP]:[u13/RCDEV1/rcdev1appl/ibp/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [051310_112230754][][EXCEPTION] [DEBUG] [CSC_TOP]:[u13/RCDEV1/rcdev1appl/csc/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [JG_TOP]:[u13/RCDEV1/rcdev1appl/jg/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [LUSRPRG]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/prglib.o /u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/prgcat.o /u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/EXPROG.o]
    [051310_112230754][][EXCEPTION] [DEBUG] [POS_TOP]:[u13/RCDEV1/rcdev1appl/pos/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [AU_TOP]:[u13/RCDEV1/rcdev1appl/au/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [IEX_TOP]:[u13/RCDEV1/rcdev1appl/iex/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [SHT_TOP]:[u13/RCDEV1/rcdev1appl/sht/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [XNP_TOP]:[u13/RCDEV1/rcdev1appl/xnp/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [ORA_NET2_DESC]:[14,17]
    [051310_112230754][][EXCEPTION] [DEBUG] [AFJSMARG]:[-server]
    [051310_112230754][][EXCEPTION] [DEBUG] [REQUEST_ID]:[2429757]
    [051310_112230754][][EXCEPTION] [DEBUG] [REPORTS60_POST]:[&5556]
    [051310_112230754][][EXCEPTION] [DEBUG] [MWA_TOP]:[u13/RCDEV1/rcdev1appl/mwa/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [XTR_TOP]:[u13/RCDEV1/rcdev1appl/xtr/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [IBA_TOP]:[u13/RCDEV1/rcdev1appl/iba/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [APPLOUT]:[out/RCDEV1_rc-oradb-1]
    [051310_112230755][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [051310_112230755][][EXCEPTION] [DEBUG] [RLM_TOP]:[u13/RCDEV1/rcdev1appl/rlm/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [IPA_TOP]:[u13/RCDEV1/rcdev1appl/ipa/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [TZ]:[GB]
    [051310_112230755][][EXCEPTION] [DEBUG] [AMV_TOP]:[u13/RCDEV1/rcdev1appl/amv/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [APPLLOG]:[log/RCDEV1_rc-oradb-1]
    [051310_112230755][][EXCEPTION] [DEBUG] [ASN_TOP]:[u13/RCDEV1/rcdev1appl/asn/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [AFCPDNR]:[disabled]
    [051310_112230755][][EXCEPTION] [DEBUG] [ITG_TOP]:[u13/RCDEV1/rcdev1appl/itg/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [051310_112230755][][EXCEPTION] [DEBUG] [XLE_TOP]:[u13/RCDEV1/rcdev1appl/xle/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [051310_112230755][][EXCEPTION] [DEBUG] [PERL5LIB]:[u13/RCDEV1/rcdev1ora/iAS/Apache/perl/lib/5.00503:/u13/RCDEV1/rcdev1ora/iAS/Apache/perl/lib/site_perl/5.005:/u13/RCDEV1/rcdev1appl/au/11.5.0/perl]
    [051310_112230755][][EXCEPTION] [DEBUG] [IGS_TOP]:[u13/RCDEV1/rcdev1appl/igs/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [APPLDOC]:[docs]
    [051310_112230755][][EXCEPTION] [DEBUG] [MSD_TOP]:[u13/RCDEV1/rcdev1appl/msd/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [FII_TOP]:[u13/RCDEV1/rcdev1appl/fii/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [APPLTMP]:[u13/RCDEV1/rcdev1comn/temp]
    [051310_112230756][][EXCEPTION] [DEBUG] [CCT_TOP]:[u13/RCDEV1/rcdev1appl/cct/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [CSP_TOP]:[u13/RCDEV1/rcdev1appl/csp/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FTE_TOP]:[u13/RCDEV1/rcdev1appl/fte/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [JAVA_TOP]:[u13/RCDEV1/rcdev1comn/java]
    [051310_112230756][][EXCEPTION] [DEBUG] [FORMS60_MAPPING]:[http://rc-orapp-2.redclev.net:8007/OA_TEMP]
    [051310_112230756][][EXCEPTION] [DEBUG] [AFJVAPRG]:[usr/jdk1.6.0_04/bin/java]
    [051310_112230756][][EXCEPTION] [DEBUG] [PV_TOP]:[u13/RCDEV1/rcdev1appl/pv/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FND_GSMSTARTED]:[1]
    [051310_112230756][][EXCEPTION] [DEBUG] [MSR_TOP]:[u13/RCDEV1/rcdev1appl/msr/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FORMS60_FORCE_MENU_MNEMONICS]:[0]
    [051310_112230756][][EXCEPTION] [DEBUG] [TNS_ADMIN]:[u13/RCDEV1/rcdev1ora/8.0.6/network/admin/RCDEV1_rc-oradb-1]
    [051310_112230756][][EXCEPTION] [DEBUG] [DB_PORT]:[1528]
    [051310_112230756][][EXCEPTION] [DEBUG] [PJM_TOP]:[u13/RCDEV1/rcdev1appl/pjm/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [BIM_TOP]:[u13/RCDEV1/rcdev1appl/bim/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [OAD_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230757][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [051310_112230757][][EXCEPTION] [DEBUG] [RM]:[rm -f]
    [051310_112230757][][EXCEPTION] [DEBUG] [JE_TOP]:[u13/RCDEV1/rcdev1appl/je/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLPLS]:[plsql]
    [051310_112230757][][EXCEPTION] [DEBUG] [OA_JRE_TOP]:[usr/jdk1.6.0_04]
    [051310_112230757][][EXCEPTION] [DEBUG] [AS_TOP]:[u13/RCDEV1/rcdev1appl/as/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [GCS_TOP]:[u13/RCDEV1/rcdev1appl/gcs/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [IMT_TOP]:[u13/RCDEV1/rcdev1appl/imt/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [OA_SECURE]:[u13/RCDEV1/rcdev1comn/secure]
    [051310_112230757][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [051310_112230757][][EXCEPTION] [DEBUG] [AMF_TOP]:[u13/RCDEV1/rcdev1appl/amf/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [MSC_TOP]:[u13/RCDEV1/rcdev1appl/msc/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [OKL_TOP]:[u13/RCDEV1/rcdev1appl/okl/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLMAIL]:[NONE]
    [051310_112230757][][EXCEPTION] [DEBUG] [LNS_TOP]:[u13/RCDEV1/rcdev1appl/lns/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLCSF]:[u13/RCDEV1/rcdev1comn/admin]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLORC]:[ar60run]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLORB]:[ar60runb]
    [051310_112230758][][EXCEPTION] [DEBUG] [IGC_TOP]:[u13/RCDEV1/rcdev1appl/igc/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ONT_TOP]:[u13/RCDEV1/rcdev1appl/ont/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [AD_TOP]:[u13/RCDEV1/rcdev1appl/ad/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [EAA_TOP]:[u13/RCDEV1/rcdev1appl/eaa/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ASL_TOP]:[u13/RCDEV1/rcdev1appl/asl/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ORG_ID]:[82]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLSQL]:[sql]
    [051310_112230758][][EXCEPTION] [DEBUG] [ZPB_TOP]:[u13/RCDEV1/rcdev1appl/zpb/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [NLS_LANG]:[American_America.WE8ISO8859P1]
    [051310_112230758][][EXCEPTION] [DEBUG] [BIL_TOP]:[u13/RCDEV1/rcdev1appl/bil/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [CN_TOP]:[u13/RCDEV1/rcdev1appl/cn/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [GML_TOP]:[u13/RCDEV1/rcdev1appl/gml/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [AR_TOP]:[u13/RCDEV1/rcdev1appl/ar/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [IEU_TOP]:[u13/RCDEV1/rcdev1appl/ieu/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [LUSRSRW]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/xirusr.o]
    [051310_112230759][][EXCEPTION] [DEBUG] [XNM_TOP]:[u13/RCDEV1/rcdev1appl/xnm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FV_TOP]:[u13/RCDEV1/rcdev1appl/fv/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [ABM_TOP]:[u13/RCDEV1/rcdev1appl/abm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [CLN_TOP]:[u13/RCDEV1/rcdev1appl/cln/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FORMS60_SESSION]:[TRUE]
    [051310_112230759][][EXCEPTION] [DEBUG] [JTM_TOP]:[u13/RCDEV1/rcdev1appl/jtm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FORMS60_OVERRIDE_ENV]:[NLS_LANG,NLS_NUMERIC_CHARACTERS,NLS_SORT,NLS_DATE_LANGUAGE,NLS_DATE_FORMAT,FORMS60_USER_DATE_FORMAT,FORMS60_USER_DATETIME_FORMAT,FORMS60_OUTPUT_DATE_FORMAT,FORMS60_OUTPUT_DATETIME_FORMAT,FORMS60_ERROR_DATE_FORMAT,FORMS60_ERROR_DATETIME_FORMAT,FORMS60_TZFILE,FORMS60_DATETIME_SERVER_TZ,FORMS60_DATETIME_LOCAL_TZ,FORMS60_USER_CALENDAR]
    [051310_112230759][][EXCEPTION] [DEBUG] [FNDSM_SCRIPT]:[u13/RCDEV1/rcdev1comn/admin/scripts/RCDEV1_rc-oradb-1/gsmstart.sh]
    [051310_112230759][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [051310_112230759][][EXCEPTION] [DEBUG] [APPLGRAF]:[graphs]
    [051310_112230759][][EXCEPTION] [DEBUG] [CRP_TOP]:[u13/RCDEV1/rcdev1appl/crp/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [POA_TOP]:[u13/RCDEV1/rcdev1appl/poa/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [CHV_TOP]:[u13/RCDEV1/rcdev1appl/chv/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [SPCCHANL]:[ ]
    [051310_112230759][][EXCEPTION] [DEBUG] [AMS_TOP]:[u13/RCDEV1/rcdev1appl/ams/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [AF_LD_LIBRARY_PATH]:[u13/RCDEV1/rcdev1ora/iAS/lib:/u13/RCDEV1/rcdev1ora/8.0.6/network/jre11/lib/sparc/native_threads:/u13/RCDEV1/rcdev1appl/cz/11.5.0/bin:/u13/RCDEV1/rcdev1ora/8.0.6/lib:/usr/dt/lib:/usr/openwin/lib]
    [051310_112230760][][EXCEPTION] [DEBUG] [IAS_ORACLE_HOME]:[u13/RCDEV1/rcdev1ora/iAS]
    [051310_112230760][][EXCEPTION] [DEBUG] [MCS]:[echo mcs]
    [051310_112230760][][EXCEPTION] [DEBUG] [WSH_TOP]:[u13/RCDEV1/rcdev1appl/wsh/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [REPORTS60_PRE]:[&5555]
    [051310_112230760][][EXCEPTION] [DEBUG] [PAY_TOP]:[u13/RCDEV1/rcdev1appl/pay/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [FORMS60_LOV_INITIAL]:[5000]
    [051310_112230760][][EXCEPTION] [DEBUG] [BOM_TOP]:[u13/RCDEV1/rcdev1appl/bom/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [FNDREVIVERPID]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/log/reviver.sh_RCDEV1_rc-oradb-1.pid]
    [051310_112230760][][EXCEPTION] [DEBUG] [DB_ID]:[rc-oradb-1_rcdev1]
    [051310_112230760][][EXCEPTION] [DEBUG] [FORMS60_DISABLE_UNPAD_LOV]:[FALSE]
    [051310_112230760][][EXCEPTION] [DEBUG] [ICX_TOP]:[u13/RCDEV1/rcdev1appl/icx/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [APPCPNAM]:[REQID]
    [051310_112230760][][EXCEPTION] [DEBUG] [APPLLIB]:[lib]
    [051310_112230760][][EXCEPTION] [DEBUG] [CUI_TOP]:[u13/RCDEV1/rcdev1appl/cui/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [HRI_TOP]:[u13/RCDEV1/rcdev1appl/hri/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [CSM_TOP]:[u13/RCDEV1/rcdev1appl/csm/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [CONTEXT_FILE]:[u13/RCDEV1/rcdev1appl/admin/RCDEV1_rc-oradb-1.xml]
    [051310_112230760][][EXCEPTION] [DEBUG] [XXBTC_TOP]:[u13/RCDEV1/rcdev1appl/xxbtc/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [051310_112230761][][EXCEPTION] [DEBUG] [ECX_TOP]:[u13/RCDEV1/rcdev1appl/ecx/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [RCM_TOP]:[u13/RCDEV1/rcdev1appl/rcm/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/secure/rc-oradb-1_rcdev1.dbc]
    [051310_112230761][][EXCEPTION] [DEBUG] [FORMS60_NONBLOCKING_SLEEP]:[100]
    [051310_112230761][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [051310_112230761][][EXCEPTION] [DEBUG] [MSO_TOP]:[u13/RCDEV1/rcdev1appl/mso/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [IMC_TOP]:[u13/RCDEV1/rcdev1appl/imc/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [OKX_TOP]:[u13/RCDEV1/rcdev1appl/okx/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FF_TOP]:[u13/RCDEV1/rcdev1appl/ff/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [XLA_TOP]:[u13/RCDEV1/rcdev1appl/xla/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [REPORTS60_NO_DUMMY_PRINTER]:[YES]
    [051310_112230761][][EXCEPTION] [DEBUG] [FUN_TOP]:[u13/RCDEV1/rcdev1appl/fun/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [PATH]:[u13/RCDEV1/rcdev1ora/iAS/Apache/perl/bin:/u13/RCDEV1/rcdev1ora/8.0.6/bin:/u13/RCDEV1/rcdev1appl/fnd/11.5.0/bin:/u13/RCDEV1/rcdev1appl/ad/11.5.0/bin:/usr/jdk1.6.0_04/bin:/u13/RCDEV1/rcdev1comn/util/unzip/unzip::/u13/RCDEV1/rcdev1ora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/usr/ccs/bin:/bin]
    [051310_112230761][][EXCEPTION] [DEBUG] [PON_TOP]:[u13/RCDEV1/rcdev1appl/pon/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FORMS60_REJECT_GO_DISABLED_ITEM]:[0]
    [051310_112230761][][EXCEPTION] [DEBUG] [AP_TOP]:[u13/RCDEV1/rcdev1appl/ap/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [IES_TOP]:[u13/RCDEV1/rcdev1appl/ies/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [EAM_TOP]:[u13/RCDEV1/rcdev1appl/eam/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [WMS_TOP]:[u13/RCDEV1/rcdev1appl/wms/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [VEH_TOP]:[u13/RCDEV1/rcdev1appl/veh/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [GR_TOP]:[u13/RCDEV1/rcdev1appl/gr/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [EGO_TOP]:[u13/RCDEV1/rcdev1appl/ego/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [OKI_TOP]:[u13/RCDEV1/rcdev1appl/oki/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [IBY_TOP]:[u13/RCDEV1/rcdev1appl/iby/11.5.0]

  • Acrobat XI (11.0.6) Crashes after opening read only PDFs

    I have a CD with PDF files that, when opened, crashes the application after a few seconds.
    Process:         AdobeAcrobat [76098]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         11.0.06 (11.0.06)
    Code Type:       X86 (Native)
    Parent Process:  launchd [534]
    Responsible:     AdobeAcrobat [76098]
    User ID:         501
    Date/Time:       2014-02-19 10:15:25.979 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  AC662F76-C19A-648F-67AA-26EF8DF3EFF2
    Sleep/Wake UUID: 0473016C-23C4-444A-B051-A177C99B6235
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        VM_ALLOCATE            0000000000001000-0000000000080000 [  508K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x915f5785 strlcpy + 53
    1   com.apple.CoreServices.CarbonCore          0x906a4901 UTF8ToFSSpecName + 50
    2   com.apple.CoreServices.CarbonCore          0x9064306d FSRefCreate + 423
    3   com.apple.CoreServices.CarbonCore          0x90643510 PBGetCatalogInfoSync + 1025
    4   com.apple.CoreServices.CarbonCore          0x90643107 FSGetCatalogInfo + 53
    5   com.apple.CoreFoundation                0x956c6b5e filePathToHFSPath + 526
    6   com.apple.CoreFoundation                0x956c5a27 URLPathToHFSPath + 151
    7   com.apple.CoreFoundation                0x95598e3d CFURLCreateStringWithFileSystemPath + 477
    8   com.apple.CoreFoundation                0x9559550a CFURLCopyFileSystemPath + 426
    9   com.adobe.Acrobat.framework             0x0143e6a7 0x87000 + 20674215
    10  com.adobe.Acrobat.framework             0x0144053b 0x87000 + 20682043
    11  com.adobe.Acrobat.framework             0x0144188b 0x87000 + 20686987
    12  com.adobe.Acrobat.framework             0x01482438 0x87000 + 20952120
    13  com.adobe.Acrobat.framework             0x006de1fc 0x87000 + 6648316
    14  com.adobe.Acrobat.framework             0x006fe660 0x87000 + 6780512
    15  com.adobe.Acrobat.framework             0x006e7e94 0x87000 + 6688404
    16  com.adobe.Acrobat.framework             0x00235659 0x87000 + 1762905
    17  com.adobe.Acrobat.framework             0x00235271 0x87000 + 1761905
    18  com.adobe.Acrobat.framework             0x003d1c84 0x87000 + 3452036
    19  com.apple.Foundation                    0x966a429c __NSFireDelayedPerform + 422
    20  com.apple.CoreFoundation                0x9563a186 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    21  com.apple.CoreFoundation                0x95639b43 __CFRunLoopDoTimer + 1395
    22  com.apple.CoreFoundation                0x956b42ad __CFRunLoopDoTimers + 349
    23  com.apple.CoreFoundation                0x955f16c3 __CFRunLoopRun + 1779
    24  com.apple.CoreFoundation                0x955f0d5a CFRunLoopRunSpecific + 394
    25  com.apple.CoreFoundation                0x955f0bbb CFRunLoopRunInMode + 123
    26  com.apple.HIToolbox                     0x98a3ae2d RunCurrentEventLoopInMode + 259
    27  com.apple.HIToolbox                     0x98a3abb2 ReceiveNextEventCommon + 526
    28  com.apple.HIToolbox                     0x98a3a98d _BlockUntilNextEventMatchingListInModeWithFilter + 92
    29  com.apple.AppKit                        0x930185a9 _DPSNextEvent + 1602
    30  com.apple.AppKit                        0x93017ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    31  com.apple.AppKit                        0x9300a35c -[NSApplication run] + 727
    32  com.adobe.Acrobat.framework             0x000901e2 0x87000 + 37346
    33  com.adobe.Acrobat.framework             0x0008e95f RunAcrobat + 307
    34  com.adobe.Acrobat.Pro                   0x00080ed5 main + 91
    35  com.adobe.Acrobat.Pro                   0x00080e71 start + 53
    Thread 1:
    0   libsystem_kernel.dylib                  0x923bf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x900aedcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x900b2cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x923bf992 kevent64 + 10
    1   libdispatch.dylib                       0x92ec88bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x92ec8556 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x923bf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x900aedcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x900b2cce start_wqthread + 30
    Thread 4:: Dispatch queue: NSOperationQueue 0x786b6f20
    0   libsystem_kernel.dylib                  0x923beb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9167005b nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x966d4641 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00e884c1 0x87000 + 14685377
    4   com.apple.Foundation                    0x96641fec -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x96641d21 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x96641c48 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x92ecae21 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x92ec63a6 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x92ec8467 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x92ec9732 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x900aedab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x900b2cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x906fa922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x906fab46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x906c6f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021cd4dc 0x21cb000 + 9436
    7   com.adobe.ACE                           0x021cd441 0x21cb000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x906c756e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x906fa922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x906fab46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x906c6f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021cd4dc 0x21cb000 + 9436
    7   com.adobe.ACE                           0x021cd441 0x21cb000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x906c756e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x906fa922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x906fab46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x906c6f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021cd4dc 0x21cb000 + 9436
    7   com.adobe.ACE                           0x021cd441 0x21cb000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x906c756e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02336f67 0x232b000 + 48999
    4   com.adobe.AGM                           0x02336ea6 0x232b000 + 48806
    5   com.adobe.AGM                           0x02336e44 0x232b000 + 48708
    6   com.adobe.AGM                           0x02336ae4 0x232b000 + 47844
    7   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02336f67 0x232b000 + 48999
    4   com.adobe.AGM                           0x02336ea6 0x232b000 + 48806
    5   com.adobe.AGM                           0x02336e44 0x232b000 + 48708
    6   com.adobe.AGM                           0x02336ae4 0x232b000 + 47844
    7   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x923be7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x900afd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x900b1bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02336f67 0x232b000 + 48999
    4   com.adobe.AGM                           0x02336ea6 0x232b000 + 48806
    5   com.adobe.AGM                           0x02336e44 0x232b000 + 48708
    6   com.adobe.AGM                           0x02336ae4 0x232b000 + 47844
    7   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x923bf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x900aedcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x900b2cce start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x923b9f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x923b916c mach_msg + 68
    2   com.apple.CoreFoundation                0x955f1f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x955f1541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x955f0d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x955f0bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x931c1f18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x923bf976 kevent + 10
    1   com.adobe.Acrobat.framework             0x0149bcd1 0x87000 + 21056721
    2   com.adobe.Acrobat.framework             0x013fad6f 0x87000 + 20397423
    3   com.adobe.Acrobat.framework             0x013f77e5 0x87000 + 20383717
    4   libsystem_pthread.dylib                 0x900ad5fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x900ad485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x900b2cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xe1eb0721  ebx: 0x00000000  ecx: 0x00000400  edx: 0x00000005
      edi: 0xbff7b3e8  esi: 0x00000000  ebp: 0xbff7b7f8  esp: 0xbff7b3c0
       ss: 0x00000023  efl: 0x00010216  eip: 0x915f5785   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0x80000 -    0x80fff +com.adobe.Acrobat.Pro (11.0.06 - 11.0.06) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x87000 -  0x2030fe7 +com.adobe.Acrobat.framework (11.0.06 - 11.0.06) <AC8EA313-1D4C-344E-9595-6F9F4633FE66> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x21cb000 -  0x231dfe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x232b000 -  0x2900ff7 +com.adobe.AGM (AdobeAGM 4.28.134.1 - 4.28.134.1) <4EE50823-6517-3CEE-8154-05D8AE487BE8> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x296d000 -  0x298bff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2992000 -  0x2c8fffb +com.adobe.CoolType (AdobeCoolType 5.11.135.1 - 5.11.135.1) <36BDB79D-825C-3144-88D5-D9A26F756621> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2cc0000 -  0x2cd8ff7  com.apple.ScriptingBridge (1.3.1 - 63) <6A12D8A2-A60D-3304-B3A8-DFE3901CC94A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x45c1000 -  0x45e6ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x45fb000 -  0x4606ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x4902000 -  0x496affa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x7789000 -  0x87d8feb +com.adobe.AcrobatPlugin.AcroForm (11.0.06 - 11.0.06) <A2795535-C494-3FA0-8747-47C7EC6B926B> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x8af9000 -  0x8cc1fff +com.adobe.AcrobatPlugin.DigSig (11.0.06 - 11.0.06) <EE3D1FAA-E170-3AB6-AADD-1C3672EE99BC> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/DigSig.acroplugin/Contents/MacOS/DigSig
    0x8cd1000 -  0x9781ff7 +com.adobe.AcrobatPlugin.PPKLite (11.0.06 - 11.0.06) <268404DF-852C-331C-B4D9-93DBA8935E77> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x97ea000 -  0x9810ffb +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <DE33E3BF-669D-3851-8C16-CA1CFCDA315A> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x8fe89000 - 0x8febb417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90033000 - 0x90035ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x90036000 - 0x9009ffff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x900a0000 - 0x900abfff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x900ac000 - 0x900b3ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x900b4000 - 0x9019aff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9019b000 - 0x901eafff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x901f9000 - 0x90207ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x90208000 - 0x9027dffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9027e000 - 0x90297fff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x90298000 - 0x902f9ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9032b000 - 0x90334ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90335000 - 0x90336ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x90337000 - 0x90338ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x90339000 - 0x903beffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x903bf000 - 0x9041dffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x9041e000 - 0x90436ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x9043e000 - 0x904a9ff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x904aa000 - 0x904aafff  libffi.dylib (18.1) <7A14A976-B202-3074-8B0D-FB718DF172DA> /usr/lib/libffi.dylib
    0x904ab000 - 0x904adfff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x9062d000 - 0x9063aff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9063b000 - 0x9093cff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9093d000 - 0x90bb9ff7  com.apple.QuickTime (7.7.3 - 2826.0.1) <42542002-DCFF-3675-B919-440EC5057D56> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90bba000 - 0x90bcaff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x91529000 - 0x91554ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x91555000 - 0x91570ff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91571000 - 0x915b0ff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x915b1000 - 0x915f3fff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x915f4000 - 0x91686ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x91689000 - 0x9168dfff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9168e000 - 0x916f5ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x916f6000 - 0x91787fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x91f49000 - 0x91ff5ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x92027000 - 0x92197fff  com.apple.QTKit (7.7.3 - 2826.0.1) <2C936219-2C31-3912-8CD3-42A16844AFE2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92198000 - 0x921e0fff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9228d000 - 0x92350ff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x92351000 - 0x923a6fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x923a7000 - 0x923c4ff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x923c5000 - 0x924a8ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x9250c000 - 0x92511ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x92512000 - 0x92562ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x92563000 - 0x92564fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x92565000 - 0x9259dff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9259e000 - 0x925c2fff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x925c3000 - 0x925c7ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x925c8000 - 0x925d0fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x925d6000 - 0x925d6ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x925da000 - 0x92602ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92603000 - 0x92606ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x92607000 - 0x9260ffff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x92610000 - 0x929d5ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x929d6000 - 0x92c54ff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x92c55000 - 0x92c55fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92c56000 - 0x92c79ff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x92c7a000 - 0x92cedfff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x92cee000 - 0x92dbefef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92dbf000 - 0x92dc4ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x92dc5000 - 0x92eb9fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x92eba000 - 0x92ec4ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x92ec5000 - 0x92eddffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x92ede000 - 0x92ff0ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x92ff1000 - 0x93c0cff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c0d000 - 0x93c10ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x93c11000 - 0x93cfdff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x93e07000 - 0x93e39ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x93e3a000 - 0x93e6aff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x93e6b000 - 0x93e7dfff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x93ea3000 - 0x93ef7fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93ef8000 - 0x93f00ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x93f01000 - 0x9446efff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x9446f000 - 0x944cbffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x948b8000 - 0x948d0fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x948d1000 - 0x948d4ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x948d5000 - 0x948dfff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x948e0000 - 0x94911ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94912000 - 0x94912fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x94913000 - 0x9497cfff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x94986000 - 0x94a61ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x94a62000 - 0x94b6ffe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x94b70000 - 0x94c08ff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x94c09000 - 0x94c4ffff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x94c50000 - 0x94c7cff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x94c7d000 - 0x94dd3ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x94dd4000 - 0x94e6bff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x94e6c000 - 0x94f99ff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x94f9a000 - 0x94fa6ffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x94fa7000 - 0x94fb5ff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94fb6000 - 0x952dcffd  com.apple.JavaScriptCore (9537 - 9537.73.10) <B5331B86-DEBC-387A-8F3E-5B9FC28E8055> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x952e6000 - 0x95339ff3  com.apple.CoreMediaIO (401.0 - 4544) <867D01AF-3326-39CB-A136-48AFE4BE9802> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9533a000 - 0x95471ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x95472000 - 0x954e8ff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x954e9000 - 0x954eaffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x954eb000 - 0x954f7ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x954f8000 - 0x954fcffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x954fd000 - 0x95521fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9554c000 - 0x9557aff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9557b000 - 0x9577dff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9577e000 - 0x95ac4ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x95ac5000 - 0x95b9eff6  com.apple.QuickLookUIFramework (5.0 - 622.3) <41D10880-AD68-3DE3-94F0-4CA9F44EBD5B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x95c4b000 - 0x95c57ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95c58000 - 0x95dbaff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x95dbb000 - 0x95ea6ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x95ea7000 - 0x95ea7fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x95eaa000 - 0x95ee2fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95ee3000 - 0x95efeff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x95f07000 - 0x95f0ffff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x95f5f000 - 0x95f90ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x9622a000 - 0x9622afff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9622b000 - 0x96234fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9623d000 - 0x96257ff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x96258000 - 0x9625fff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96428000 - 0x96437fff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96438000 - 0x965feffb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x965ff000 - 0x96627fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x96628000 - 0x96628fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96629000 - 0x96639ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9663a000 - 0x96965ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96966000 - 0x96966fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9696d000 - 0x9696efff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9696f000 - 0x9780affb  com.apple.WebCore (9537 - 9537.73.13) <85E27D26-9FA4-3CB0-9355-DDD7E3BBFBD7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x9780b000 - 0x9780cfff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x9780d000 - 0x9782affb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x9782b000 - 0x97860ffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x97861000 - 0x97874fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x97875000 - 0x978abfff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x97961000 - 0x9796fff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x97970000 - 0x97a0cfff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x97a0d000 - 0x97ad4ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x983fc000 - 0x983fcfff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9848b000 - 0x9848dfff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x9848e000 - 0x9852cff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x9852d000 - 0x98925ff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98926000 - 0x98928fff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x98929000 - 0x98934ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x98935000 - 0x98981ff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0x989af000 - 0x98a04ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98a05000 - 0x98a0efff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98a0f000 - 0x98d84ff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x98d85000 - 0x98d8efff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x98d8f000 - 0x98f01ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f02000 - 0x9900efff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9900f000 - 0x99019ff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9901a000 - 0x9902fff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x99030000 - 0x994d7fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x994d8000 - 0x994e0ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x994e1000 - 0x994ecfff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x994ed000 - 0x994edfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9955d000 - 0x99599ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9959a000 - 0x995e8ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x995e9000 - 0x9963eff7  com.apple.QuickLookFramework (5.0 - 622.3) <3C6ADC02-2C67-361B-B042-47DDCC0EDA5F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9963f000 - 0x996deff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x996df000 - 0x997ddfff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x997de000 - 0x997fdff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x997fe000 - 0x99af0ff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x99af1000 - 0x99c08ffb  com.apple.WebKit (9537 - 9537.73.11) <74634980-1AC4-3874-9BC2-72E1ED8FB534> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x99c09000 - 0x99c7eff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x99c7f000 - 0x99c82ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99c83000 - 0x99c8effb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x99c8f000 - 0x99c90fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x99c91000 - 0x99ce6ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x99d4e000 - 0x99dacff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x99dad000 - 0x9a097fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9a0ca000 - 0x9a11dfff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9a11e000 - 0x9a12cfff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9a12d000 - 0x9a186ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9a187000 - 0x9a18bffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x9a18c000 - 0x9a18fff3  com.apple.AppleSystemInfo (3.0 - 3.0) <99A923AE-121B-307D-AC1C-968976FBA225> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9a19b000 - 0x9a3fffff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a400000 - 0x9a405ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x9a406000 - 0x9a48ffff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x9a729000 - 0x9a72bff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x9a72c000 - 0x9a756ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x9a757000 - 0x9a795ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x9a842000 - 0x9a9ea4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9a9eb000 - 0x9a9f2fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x9a9f3000 - 0x9aa0aff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9aaac000 - 0x9aabefff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x9aabf000 - 0x9aac9fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9aaca000 - 0x9aaf9fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <05E81260-7DC7-3546-B45D-15B3E5DF056D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x9aafa000 - 0x9ab4bffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9ab4c000 - 0x9af71fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9af72000 - 0x9afafffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9afb0000 - 0x9afdbff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9afdc000 - 0x9afe1fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x9b173000 - 0x9b176fff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x9b183000 - 0x9b197ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x9b198000 - 0x9b1e9ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x9b1ea000 - 0x9b1eaffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x9b1eb000 - 0x9b216ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x9b232000 - 0x9b235ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9b295000 - 0x9b362ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9b363000 - 0x9b367ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9b368000 - 0x9b375fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x9b376000 - 0x9b378fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9b379000 - 0x9b7adff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x9bab0000 - 0x9badafff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9badb000 - 0x9bb45ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9bb46000 - 0x9bb46fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x9bbec000 - 0x9bbf2ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x9bbf3000 - 0x9bbf9ff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x9bbfa000 - 0x9bc16fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9bc17000 - 0x9bc3cff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9bc3d000 - 0x9bc41ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9bc42000 - 0x9bc46fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x9bc47000 - 0x9beb4ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9beb5000 - 0x9beb7ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9beb8000 - 0x9bed1fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9bed2000 - 0x9c07eff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9c07f000 - 0x9c0c5ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x9c0c6000 - 0x9c0cffff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x9c0d0000 - 0x9c0ecff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9c0ed000 - 0x9c143ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9c144000 - 0x9c1c4ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9c1c5000 - 0x9c1c9ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x9c1ca000 - 0x9c1d4ff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9c1d5000 - 0x9c212ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x9c213000 - 0x9c214fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9c215000 - 0x9c23cfff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9c23d000 - 0x9c32dffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x9c35e000 - 0x9c365ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 92086
        thread_create: 2
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=258.4M resident=133.4M(52%) swapped_out_or_unallocated=124.9M(48%)
    Writable regions: Total=90.6M written=10.7M(12%) resident=47.3M(52%) swapped_out=32K(0%) unallocated=43.4M(48%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  6932K
    CG image                            284K
    CG raster data                       24K
    CG shared images                    180K
    Kernel Alloc Once                     4K
    MALLOC                             51.5M
    MALLOC (admin)                       48K
    Memory Tag 242                       12K
    Stack                              70.7M
    VM_ALLOCATE                        17.0M
    __DATA                             21.1M
    __IMAGE                             528K
    __LINKEDIT                         43.8M
    __OBJC                             3256K
    __PAGEZERO                            4K
    __TEXT                            214.5M
    __UNICODE                           544K
    mapped file                       109.2M
    shared memory                         4K
    ===========                      =======
    TOTAL                             539.3M
    Model: MacBookPro6,2, BootROM MBP61

    Hey Zia,
    Please check whether the scanner works fine with other applications or not.
    On your Windows machine, please navigate to "C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat" and move ACE.dll file to desktop.
    Now, repair Adobe Acrobat from Control Panel and then try scanning PDF files.
    If the issue still persists, then you might need to update your scanner drivers and then check.
    Let me know if this helps.
    Regards,
    Anubha

  • CS6 | Adobe Acrobat Pro v10.1.4 | Crashes when running Recognize Text on large PDF document

    Dear Adobe Friends,
    I really need some help here. I am working on a project for graduate school and am having a big problem with Acrobat Pro X.
    I am running CS6 with Acrobat Pro X on my iMac (specs below). Ordinarily, I have no problems running Acrobat Pro X for refining PDFs and doing OCR. However, on larger documents (1000+ pages), the app just plain crashes after approximately 200 pages. I'm really in a bind here so I'm hoping someone can help me out.
    I've run Acrobat on PDFs between 600-800 pages without a problem but this is really perplexing, it doesn't give me any reason except that Acrobat has unexpectedly quit.
    iMac 2.66Ghz Core 2 Duo
    4GB RAM / 320GB HDD (150GB Free)
    Mountain Lion 10.8.2
    PS: I have included a copy of my crash log. There are several of them, this is one of the more recent ones.
    ____Crash Log Here_____
    Process:         AdobeAcrobat [27695]
    Path:            /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         10.1.4 (10.1.4)
    Code Type:       X86 (Native)
    Parent Process:  launchd [258]
    User ID:         503
    Date/Time:       2012-11-02 19:11:57.561 -0700
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          337900 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  7029 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      8429C03D-A823-F1EC-6DB3-C96F2003ABCD
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000028
    VM Regions Near 0x28:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        __TEXT                 0000000000001000-0000000000002000 [    4K] r-x/rwx SM=COW  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobeAGM                                0x0239533b AGMTerminate + 2600856
    1   AdobeAGM                                0x020f66c9 AGMInitialize + 345079
    2   AdobeAGM                                0x020db2ea AGMInitialize + 233496
    3   com.adobe.Acrobat.framework             0x0018b4cb RunAcrobat + 1557286
    4   com.adobe.Acrobat.framework             0x0018b419 RunAcrobat + 1557108
    5   com.adobe.Acrobat.framework             0x010636e2 AcroSecurityBailOutImpl + 13087778
    6   com.adobe.Acrobat.framework             0x01064d8d AcroSecurityBailOutImpl + 13093581
    7   com.adobe.Acrobat.framework             0x01065ba3 AcroSecurityBailOutImpl + 13097187
    8   com.adobe.AcrobatPlugin.PaperCapture          0x0d4fba27 AcroPluginMain + 21337
    9   com.adobe.AcrobatPlugin.PaperCapture          0x0d4fc34e AcroPluginMain + 23680
    10  com.adobe.AcrobatPlugin.PaperCapture          0x0d51292a AcroPluginMain + 115292
    11  com.adobe.ocrlibrary                    0x0de122e7 0xde02000 + 66279
    12  com.adobe.ocrlibrary                    0x0de10d91 0xde02000 + 60817
    13  com.adobe.ocrlibrary                    0x0de4436d RecognizeFile + 76
    14  com.adobe.AcrobatPlugin.PaperCapture          0x0d50c864 AcroPluginMain + 90518
    15  com.adobe.AcrobatPlugin.PaperCapture          0x0d50f435 AcroPluginMain + 101735
    16  com.adobe.AcrobatPlugin.PaperCapture          0x0d510bf2 AcroPluginMain + 107812
    17  com.adobe.AcrobatPlugin.PaperCapture          0x0d511271 AcroPluginMain + 109475
    18  com.adobe.Acrobat.framework             0x009c1dc9 AcroSecurityBailOutImpl + 6134537
    19  com.adobe.Acrobat.framework             0x00911939 AcroSecurityBailOutImpl + 5412473
    20  com.adobe.Acrobat.framework             0x00654238 AcroSecurityBailOutImpl + 2539384
    21  com.adobe.Acrobat.framework             0x0065437e AcroSecurityBailOutImpl + 2539710
    22  com.adobe.Acrobat.framework             0x00ba06d6 AcroSecurityBailOutImpl + 8094742
    23  com.adobe.Acrobat.framework             0x00ba03fa AcroSecurityBailOutImpl + 8094010
    24  com.adobe.Acrobat.framework             0x00bb9b45 AcroSecurityBailOutImpl + 8198277
    25  com.adobe.Acrobat.framework             0x00bbc9d4 AcroSecurityBailOutImpl + 8210196
    26  com.adobe.Acrobat.framework             0x006705ea AcroSecurityBailOutImpl + 2655018
    27  com.adobe.Acrobat.framework             0x00670937 AcroSecurityBailOutImpl + 2655863
    28  com.adobe.Acrobat.framework             0x008120bb AcroSecurityBailOutImpl + 4365819
    29  com.adobe.Acrobat.framework             0x00810847 AcroSecurityBailOutImpl + 4359559
    30  com.apple.AppKit                        0x91d9da21 -[NSWindow sendEvent:] + 6968
    31  com.apple.AppKit                        0x91d98a0f -[NSApplication sendEvent:] + 4278
    32  com.apple.AppKit                        0x91cb272c -[NSApplication run] + 951
    33  com.adobe.Acrobat.framework             0x00010c87 RunAcrobat + 6882
    34  com.adobe.Acrobat.framework             0x0000f2e1 RunAcrobat + 316
    35  com.adobe.Acrobat.Pro                   0x00001e92 main + 94
    36  com.adobe.Acrobat.Pro                   0x00001e16 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9873f9ae kevent + 10
    1   libdispatch.dylib                       0x982ccc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x982cc7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959080a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x99827492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9982768e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x99773b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01f5d737 ACEInitialize + 3741
    7   AdobeACE                                0x01f5d6ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x997faa7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    10  libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959080a1 pthread_cond_wait$UNIX2003 + 71
    3   AdobeAGM                                0x020aa6bc AGMInitialize + 33770
    4   AdobeAGM                                0x020aa5f6 AGMInitialize + 33572
    5   AdobeAGM                                0x020aa151 AGMInitialize + 32383
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x95882512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x998276ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x99773b9b MPWaitOnQueue + 261
    5   com.adobe.Acrobat.framework             0x00069165 RunAcrobat + 368576
    6   com.adobe.Acrobat.framework             0x00068e77 RunAcrobat + 367826
    7   com.apple.CoreServices.CarbonCore          0x997faa7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    9   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9873f9ae kevent + 10
    1   com.adobe.Acrobat.framework             0x01330b1a AcroSecurityBailOutImpl + 16025690
    2   com.adobe.Acrobat.framework             0x012857eb AcroSecurityBailOutImpl + 15324459
    3   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    4   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9590fafc pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0cc26f2c C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x0cc1fe78 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x0cc26f92 C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x9873ec72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x95907a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9590792a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x91ea1d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x92ea61d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x92ea615b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9873f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9588004c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9587fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x95867cca start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x9873f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9588004c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9587fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x95867cca start_wqthread + 30
    Thread 10:
    Thread 11:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x02395332  ecx: 0x04e22ce8  edx: 0x00000000
      edi: 0x00000000  esi: 0x04e22cec  ebp: 0xbfffd928  esp: 0xbfffd8d0
       ss: 0x00000023  efl: 0x00010282  eip: 0x0239533b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000028
    Logical CPU: 1
    Binary Images:
        0x1000 -     0x1fff +com.adobe.Acrobat.Pro (10.1.4 - 10.1.4) <5F536BF4-9871-0FF5-45E8-24D1686ABCEF> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        0x6000 -  0x1cd0ff7 +com.adobe.Acrobat.framework (10.1.4 - 10.1.4) <D3555537-0E24-FED8-A37D-1954E50ACD0D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x1f5b000 -  0x207cfff +AdobeACE (1) <B885D217-C2F6-8496-12D0-FCA0E620635B> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x209f000 -  0x2663ffb +AdobeAGM (1) <B09E932D-3C51-EFEF-A21C-C1747B36BDB5> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2716000 -  0x2733ff7 +AdobeBIB (1) <7C894693-F5AC-A9BF-E72A-097BDF33C329> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x273a000 -  0x2a5dff3 +com.adobe.CoolType (AdobeCoolType 5.08.115.1 - 5.08.115.1) <DA458D39-A0A9-163E-F13E-BA9333B413DD> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2aaf000 -  0x2bcdff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2c7e000 -  0x390dff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x4601000 -  0x460eff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x891b000 -  0x8b13ff7 +com.adobe.Acrobat.adm (10.1.4 - 10.1.4) <34359758-168B-1E60-A3E4-2E4745649195> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xab24000 -  0xab4affb +AdobeBIBUtils (1) <B9888BEE-A939-50E3-1CD3-3313AC14A073> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0xbc7f000 -  0xbc87fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbd13000 -  0xbd72fe7 +AcroSQLite (1) <33E9D2E6-ACE5-0905-A40C-D1079751F9DF> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0xbd92000 -  0xbde8ffb +com.adobe.AcrobatPlugin.WebLink (10.1.4 - 10.1.4) <D2A319BC-6B9F-7490-3097-ACEB27D02F96> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Weblink.acroplugin/Contents/MacOS/WebLink
    0xbf00000 -  0xc10afeb +com.adobe.AcrobatPlugin.EScript (10.1.4 - 10.1.4) <831F6996-BCA1-3C75-B643-0355401D3B4C> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0xc458000 -  0xc516ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xc65a000 -  0xc6cafeb +com.adobe.adobe_caps (adobe_caps 3.5.4.0 - 3.5.4.0) <36D53A2C-0DAB-34C6-48C7-49D2ECF52D0D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xca8f000 -  0xcafcffb +com.adobe.amtlib (amtlib 3.5.0.34 - 3.5.0.34) <8C1EBC9E-DDFF-660B-03FB-196CE8A4CED8> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0xcb13000 -  0xcbbefff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xcc02000 -  0xcc69fe7 +com.adobe.amt.services (AMTServices 3.5.0.34 [BuildVersion: 3.5; BuildDate: Tue Sep 14 2010 21:49:00] - 3.5.0.34) <F56D7855-B0F7-4E7E-1997-D4FC2F5ACB2D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xd4b0000 -  0xd4e7fef +com.adobe.AcrobatPlugin.Updater (10.1.4 - 10.1.4) <1E8139A5-93D8-AF1E-07B4-06AB8970C796> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0xd4f1000 -  0xd528ff7 +com.adobe.AcrobatPlugin.PaperCapture (10.1.4 - 10.1.4) <3040067C-A6B9-93A4-F13C-98B560EC7C17> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0xd8f4000 -  0xd971ff7 +com.irislink.iDRS14_5 (14.5 - 14.5.4.1) <A30459C2-B559-CF82-60DC-19FE9758BECB> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS14_5.framework/Versions/A/iDRS14_5
    0xde02000 -  0xdf42fe3 +com.adobe.ocrlibrary (1.0 - 1.0) <09A69F4C-66CB-3A11-0C55-2043C45E9BC0> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/OCRLibrary
    0xdfb6000 -  0xe05eff3 +com.adobe.AcrobatPlugin.PDDom (10.1.4 - 10.1.4) <78A19A3C-8A42-2B3F-1190-570AC990B2C9> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PDDom.acroplugin/Contents/MacOS/PDDom
    0xf108000 -  0xf165fff +AdobeXMP (0) <E3A59E8C-A514-8A4A-F965-E9C043C7AC96> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xf5a1000 -  0xf8fcff7 +com.irislink.mac.DRS_iDRS (14.0 - 1127) <CE17CFCF-9CEF-3E67-D455-5F89B5F4BB47> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS14_5.framework/Resources/DRS_iDRS.framework/DRS_iDRS
    0x40000000 - 0x400c9fe7 +AdobeJP2K (0) <627B0577-73CB-FAD6-4728-DE97200D9099> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fefb000 - 0x8ff2de57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9000c000 - 0x90031ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x90032000 - 0x90068ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9009a000 - 0x900b3fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x900b4000 - 0x900bcfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x900bd000 - 0x9010dff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9010e000 - 0x9010ffff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x90110000 - 0x90114fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90126000 - 0x90175ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90176000 - 0x90195ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x90196000 - 0x903adfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x903ae000 - 0x90414fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90526000 - 0x90538fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x90539000 - 0x9053cffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90e52000 - 0x90e77ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90e78000 - 0x91060ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91061000 - 0x9147efff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9147f000 - 0x91862ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x91863000 - 0x91878fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x91879000 - 0x91b1cffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x91b1d000 - 0x91b41fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b44000 - 0x91b50ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x91b51000 - 0x91b58fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x91b59000 - 0x92715ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92716000 - 0x9279bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9279c000 - 0x927a0ffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927a1000 - 0x927fbfff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x927ff000 - 0x92874ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x92875000 - 0x928baff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x928bb000 - 0x92b7bfff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92b7c000 - 0x92e07ff3  com.apple.RawCamera.bundle (4.00 - 658) <53F1DB23-B58B-3EAF-9D1E-95C34E669DDB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92e08000 - 0x93125ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93126000 - 0x93174ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x93175000 - 0x931d0fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9329a000 - 0x934cafff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x934cb000 - 0x9350cff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9350d000 - 0x9350efff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x9350f000 - 0x93627ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x93628000 - 0x936d7ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x93710000 - 0x93718fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93719000 - 0x9380affc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93817000 - 0x9384aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9384b000 - 0x93851fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x93892000 - 0x9389cfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x9389d000 - 0x938cefff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x938cf000 - 0x938d3fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x938d4000 - 0x93913ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93914000 - 0x93917ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x93918000 - 0x93921ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x939da000 - 0x939edff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x939ee000 - 0x939f2fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x939f3000 - 0x93a01ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x93a02000 - 0x93a02fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93a03000 - 0x93aa3ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x93df7000 - 0x93df7fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93df8000 - 0x93e08ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x93e3f000 - 0x93e47fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x93e48000 - 0x93f06ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9401b000 - 0x943d3ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x943d4000 - 0x944dfff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x944e0000 - 0x94568fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x94569000 - 0x945c4ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x953ed000 - 0x95403fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x95404000 - 0x95406fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x95409000 - 0x95471fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x95472000 - 0x954bbff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x954bc000 - 0x95513ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x95517000 - 0x95518fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x95523000 - 0x95630ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9563f000 - 0x956a7ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x956a8000 - 0x956c6ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x956c7000 - 0x956d5ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x956d6000 - 0x956daff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x956db000 - 0x956e4ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x956e5000 - 0x95701ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95706000 - 0x9576afff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9576b000 - 0x95863ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x95864000 - 0x95866ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95867000 - 0x95924feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x95925000 - 0x95932fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9593a000 - 0x95951fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x95952000 - 0x9597bff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9597c000 - 0x95a7aff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x95a7b000 - 0x95ab6fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x95ab7000 - 0x95af9ffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x95afa000 - 0x95afbfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x95afc000 - 0x95b48fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x95b49000 - 0x95b55ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95b56000 - 0x95b83ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x95bc7000 - 0x95f5affb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x95f5b000 - 0x961c8fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x961c9000 - 0x961c9fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x961ca000 - 0x96227fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96228000 - 0x96281fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x962a8000 - 0x962abffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x962ac000 - 0x962b2fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x962b3000 - 0x962b3ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x962bc000 - 0x963a5ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x963a6000 - 0x963aaffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x963ab000 - 0x963aeff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x964ac000 - 0x964cefff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x964cf000 - 0x965edff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x965ee000 - 0x965efffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x965f0000 - 0x96631ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x96632000 - 0x966ccfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x966d4000 - 0x966f4ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x966f5000 - 0x967a9fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x967aa000 - 0x967adff

    Using Acrobat Pro extract pages (each file no more than 500 pages).
    OCR each.
    Use Acrobat's 'Combine Files' feature to develop a single PDF containing all pages (and the OCR).
    Be well...

  • Adobe Acrobat XI crashing when opening PDFs in Yosemite

    I am having a problem with Acrobat XI Pro continually crashing when I open PDF files stored on my hard drive.  The documents will then open, and Acrobat will behave normally for a bit, and then, the next time I try to open a PDF, the program crashes.  One of the crash logs is pasted below.  Does anyone have any solutions for this?  It is VERY annoying after a while.  Thanks in advance.
    Process:               AdobeAcrobat [3671]
    Path:                  /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:            com.adobe.Acrobat.Pro
    Version:               11.0.10 (11.0.10)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           AdobeAcrobat [3671]
    User ID:               501
    Date/Time:             2014-12-20 11:56:49.192 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        B94631FC-4881-B3BD-6DCD-EF2D8388D588
    Sleep/Wake UUID:       11333F74-8758-4449-98A9-D62E5440BEF8
    Time Awake Since Boot: 99000 seconds
    Time Since Wake:       9400 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x000000006f7265d1
    VM Regions Near 0x6f7265d1:
        __LINKEDIT             00000000495d5000-0000000049634000 [  380K] r--/rwx SM=COW  /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
    -->
        MALLOC_TINY            000000007ae00000-000000007b000000 [ 2048K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Acrobat.framework   0x001d4bf9 RunAcrobat + 1380573
    1   com.adobe.Acrobat.framework   0x0131347b AcroSecurityBailOutImpl + 15689117
    2   com.adobe.Acrobat.framework   0x00e25ea2 AcroSecurityBailOutImpl + 10522564
    3   com.adobe.Acrobat.framework   0x0023b2da RunAcrobat + 1800126
    4   com.adobe.Acrobat.framework   0x00104f2e RunAcrobat + 529426
    5   com.adobe.Acrobat.framework   0x000ff1eb RunAcrobat + 505551
    6   com.adobe.Acrobat.framework   0x000fee86 RunAcrobat + 504682
    7   com.adobe.Acrobat.framework   0x000fec7e RunAcrobat + 504162
    8   com.adobe.Acrobat.framework   0x000fe2bc RunAcrobat + 501664
    9   com.adobe.Acrobat.framework   0x000fdf21 RunAcrobat + 500741
    10  com.apple.AppKit               0x93164d57 -[NSView _drawRect:clip:] + 4221
    11  com.apple.AppKit               0x93163582 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2071
    12  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    13  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    14  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    15  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    16  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    17  com.apple.AppKit               0x9316153a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 876
    18  com.apple.AppKit               0x931627f4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5670
    19  com.apple.AppKit               0x931627f4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5670
    20  com.apple.AppKit               0x93160d14 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 311
    21  com.apple.AppKit               0x9315da78 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2942
    22  com.apple.AppKit               0x9313af51 -[NSView displayIfNeeded] + 1629
    23  com.apple.AppKit               0x9315975c -[NSWindow displayIfNeeded] + 324
    24  com.adobe.Acrobat.framework   0x000f542d RunAcrobat + 465169
    25  com.apple.AppKit               0x93198570 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 1262
    26  com.apple.AppKit               0x9380365b __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1560 + 58
    27  com.apple.CoreFoundation       0x97c4aa2d _runLoopObserverWithBlockContext + 29
    28  com.apple.CoreFoundation       0x97c4a40e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    29  com.apple.CoreFoundation       0x97c4a350 __CFRunLoopDoObservers + 400
    30  com.apple.CoreFoundation       0x97c3bcb2 __CFRunLoopRun + 946
    31  com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    32  com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    33  com.apple.HIToolbox           0x9be46178 RunCurrentEventLoopInMode + 262
    34  com.apple.HIToolbox           0x9be45d83 ReceiveNextEventCommon + 192
    35  com.apple.HIToolbox           0x9be45cac _BlockUntilNextEventMatchingListInModeWithFilter + 99
    36  com.apple.AppKit               0x93028d99 _DPSNextEvent + 734
    37  com.apple.AppKit               0x930285e1 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 186
    38  com.apple.AppKit               0x9301adac -[NSApplication run] + 907
    39  com.adobe.Acrobat.framework   0x000854d2 RunAcrobat + 6582
    40  com.adobe.Acrobat.framework   0x00083c4f RunAcrobat + 307
    41  com.adobe.Acrobat.Pro         0x00076ed5 main + 91
    42  com.adobe.Acrobat.Pro         0x00076e71 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x9827e8d2 kevent64 + 10
    1   libdispatch.dylib             0x950a373f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x950a33a2 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: NSOperationQueue 0x7c267b60 :: NSOperation 0x7c267de0 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x9827d8fa __semwait_signal + 10
    1   libsystem_c.dylib             0x90693c16 nanosleep$UNIX2003 + 218
    2   com.apple.Foundation           0x99d7ce71 +[NSThread sleepForTimeInterval:] + 169
    3   com.adobe.Acrobat.framework   0x00edc25a AcroSecurityBailOutImpl + 11268988
    4   com.apple.Foundation           0x99ce8eae -[__NSOperationInternal _start:] + 770
    5   com.apple.Foundation           0x99ce8ba1 -[NSOperation start] + 71
    6   com.apple.Foundation           0x99ce89eb __NSOQSchedule_f + 213
    7   libdispatch.dylib             0x950a0130 _dispatch_client_callout + 50
    8   libdispatch.dylib             0x950a3d05 _dispatch_queue_drain + 1017
    9   libdispatch.dylib             0x950a599d _dispatch_queue_invoke + 186
    10  libdispatch.dylib             0x950a2f89 _dispatch_root_queue_drain + 395
    11  libdispatch.dylib             0x950b263d _dispatch_worker_thread3 + 97
    12  libsystem_pthread.dylib       0x9c1f8296 _pthread_wqthread + 724
    13  libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x9827d516 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9c1f8b06 _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x9c1fc1d1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x95bea0fa TSWaitOnCondition + 133
    4   com.apple.CoreServices.CarbonCore 0x95bea332 TSWaitOnConditionTimedRelative + 195
    5   com.apple.CoreServices.CarbonCore 0x95bb5dff MPWaitOnQueue + 199
    6   com.adobe.ACE                 0x0238f4dc 0x238d000 + 9436
    7   com.adobe.ACE                 0x0238f441 0x238d000 + 9281
    8   com.apple.CoreServices.CarbonCore 0x95bb645a PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x9827d516 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9c1f8b06 _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x9c1fc1d1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                 0x024f8e07 0x24ed000 + 48647
    4   com.adobe.AGM                 0x024f8d46 0x24ed000 + 48454
    5   com.adobe.AGM                 0x024f8ce4 0x24ed000 + 48356
    6   com.adobe.AGM                 0x024f8984 0x24ed000 + 47492
    7   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    8   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    9   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x9319c6b4 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    8   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    9   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib         0x9827e8b6 kevent + 10
    1   com.adobe.Acrobat.framework   0x01555b69 AcroSecurityBailOutImpl + 18058379
    2   com.adobe.Acrobat.framework   0x014b16f1 AcroSecurityBailOutImpl + 17385491
    3   com.adobe.Acrobat.framework   0x014ad7d1 AcroSecurityBailOutImpl + 17369331
    4   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    5   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    6   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.EFS   0x08050876 0x8039000 + 96374
    7   com.apple.Foundation           0x99d4fdcf -[NSThread main] + 45
    8   com.apple.Foundation           0x99d4fd21 __NSThread__main__ + 1538
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.QuartzCore           0x90d0bd5f CA::Render::Server::server_thread(void*) + 236
    3   com.apple.QuartzCore           0x90d0bc6a thread_fun + 29
    4   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    5   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    6   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.apple.CFNetwork           0x910fd8df +[NSURLConnection(Loader) _resourceLoadLoop:] + 717
    7   com.apple.Foundation           0x99d4fdcf -[NSThread main] + 45
    8   com.apple.Foundation           0x99d4fd21 __NSThread__main__ + 1538
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x9827d852 __select + 10
    1   com.apple.CoreFoundation       0x97c8b63a __CFSocketManager + 906
    2   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    3   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    4   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x6f726341  ebx: 0x013132d6  ecx: 0x8fe3e9e2  edx: 0x7ea4f600
      edi: 0x7be2bd14  esi: 0xa0396038  ebp: 0xbff86ee8  esp: 0xbff86ed0
       ss: 0x00000023  efl: 0x00010282  eip: 0x001d4bf9   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x6f7265d1
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0x76000 -    0x76fff +com.adobe.Acrobat.Pro (11.0.10 - 11.0.10) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x7c000 -  0x21e5ff3 +com.adobe.Acrobat.framework (11.0.10 - 11.0.10) <70EEEAC3-C9F9-3C0E-A6CE-21221D5A7AAB> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x238d000 -  0x24dffe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x24ed000 -  0x2ac3ff7 +com.adobe.AGM (AdobeAGM 4.28.141.1 - 4.28.141.1) <336CD7B1-DC51-3AE3-B85C-2AE91B5E7337> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2b2d000 -  0x2b4bff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2b50000 -  0x2e4dffb +com.adobe.CoolType (AdobeCoolType 5.11.137.1 - 5.11.137.1) <E1F9A02C-FECB-329D-8408-9615CA5B6C86> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2e80000 -  0x2edfffb  com.apple.QuickLookFramework (5.0 - 675) <56D079F9-5BA5-3C34-A074-E61A003CBA41> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x2f17000 -  0x2f30ff7  com.apple.ScriptingBridge (1.3.2 - 66) <479A4C55-AA2E-38CD-BAB5-346AB3915797> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x2f40000 -  0x2f40fff  com.apple.quartzframework (1.5 - 1.5) <6D85B29E-D684-3DDE-8F02-D292D86A014F> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x2f44000 -  0x34b7ff7  com.apple.QuartzComposer (5.1 - 325) <BBF0AE36-52FB-36FC-AF41-493A2ECA0A9E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x3721000 -  0x37cbff7  com.apple.PDFKit (3.0 - 3.0) <951B630D-691F-33C0-A8CB-1B4FC86C0128> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x381e000 -  0x3844ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <5712F712-4A1C-35BF-AE1D-F55DA1D9877D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x3863000 -  0x3aeefff  com.apple.imageKit (2.6 - 838) <F8830E45-BD83-3E23-BB81-376F7DBC49D7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x3c97000 -  0x3d7efff  com.apple.QuickLookUIFramework (5.0 - 675) <B85FDA00-F7AD-31A9-955D-67F70B3E2066> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x3e01000 -  0x3e04fff  com.apple.AppleSystemInfo (3.0 - 3.0) <1530F7BC-4F0A-3827-B113-EA6A1899CE4A> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x3e0a000 -  0x3e94ff3  com.apple.CorePDF (4.0 - 4) <DA26FFBC-901A-3EF5-AF2F-9699683CB185> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x3ed8000 -  0x3ee2fff  com.apple.DisplayServicesFW (2.9 - 372.1) <01C3D99D-7F75-3401-95E8-5175E028EE21> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x3eef000 -  0x3f47ff3  com.apple.ImageCaptureCore (6.0 - 6.0) <C44A39AC-CE81-3447-A860-DD01B13AA8BB> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x6949000 -  0x698bff3  com.apple.CloudDocs (1.0 - 280.1.2) <0F6DAB87-5A29-38A4-9D39-EA299E06BA13> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    0x7fb8000 -  0x8030ff7 +com.adobe.AcrobatPlugin.Search (11.0.10 - 11.0.10) <AEC209CF-6403-38A4-952E-0477EAE34D36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Search.acroplugin/Contents/MacOS/Search
    0x8039000 -  0x805efff +com.adobe.AcrobatPlugin.EFS (11.0.10 - 11.0.10) <900CF1F2-6DCA-3A2F-AAEA-4763FA978723> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EFS.acroplugin/Contents/MacOS/EFS
    0x8217000 -  0x8218ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <7C476EF7-CC52-316E-85F5-3D707DE5B71B> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x821e000 -  0x821eff7  libodfde.dylib (22) <A0BC85E8-EA17-32ED-AA45-8E7F0ABA2943> /usr/lib/libodfde.dylib
    0x8260000 -  0x8286ffb +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <DE33E3BF-669D-3851-8C16-CA1CFCDA315A> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x82dc000 -  0x82fdff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.21186 - 3.7.101.21186) <D65C0C81-572E-3DCB-A1CF-BC5BF2D59500> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0x8b50000 -  0x8b9bfff +com.adobe.AcrobatPlugin.WebLink (11.0.10 - 11.0.10) <8ECACD36-B02A-3B70-AE19-BEE9A15EE4C1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/WebLink.acroplugin/Contents/MacOS/WebLink
    0x8ba3000 -  0x8dddff3 +com.adobe.AcrobatPlugin.EScript (11.0.10 - 11.0.10) <C9FC4978-0620-399C-BBFA-F380551CD3C6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x8e2d000 -  0x9602ffb +com.adobe.AcrobatPlugin.Comments (11.0.10 - 11.0.10) <ED6908F0-4BAE-3861-B49C-BA7C275DCB59> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0xb0ae000 -  0xb0aeff9 +cl_kernels (???) <BB56E556-D981-4CC3-B744-6BB6C18F1C3E> cl_kernels
    0xb0b0000 -  0xb19bff7  unorm8_bgra.dylib (2.4.5) <92A32497-932A-3966-91AD-DEA4CA456A5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xb1c9000 -  0xb1c9ffb +cl_kernels (???) <C4F613A6-10C3-454B-BFEA-31ADD4FFE1B6> cl_kernels
    0xd6d7000 -  0xd6e2fff  com.apple.IntlPreferences (2.0 - 150.1) <F505EE85-2D0B-30B7-9ECA-741D9241F501> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0xd6eb000 -  0xd6effff  com.apple.LoginUICore (3.0 - 3.0) <9D1B9F88-89B4-3A1B-8ADF-0A790CB38E51> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0xd728000 -  0xd72fff3  com.apple.phonenumbers (1.1.1 - 105) <19A59F22-DD76-345E-AF7B-96405D71DB5A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0xd78a000 -  0xd7e0ffb +com.adobe.AdobeXMPCore (Adobe XMP Core 5.4 -c 5 - 78.147326) <82EFE343-F643-34AD-94FA-293E338F1F9C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xdadc000 -  0xdbb7ff3 +com.adobe.AcrobatPlugin.Web2PDF (11.0.10 - 11.0.10) <137E6479-87C3-3D83-AA83-3D0CBF153750> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Web2PDF.acroplugin/Contents/MacOS/Web2PDF
    0xdbc4000 -  0xdbcefff  com.apple.DirectoryService.Framework (10.10 - 187) <CD98D0B6-9642-3221-92B1-66297916B820> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0xdbd7000 -  0xdbdafff  com.apple.FileProvider (1.0 - 1) <6ADBEF63-59C5-3A54-9CC0-9F7BE2B08AD6> /System/Library/PrivateFrameworks/FileProvider.framework/FileProvider
    0xe130000 -  0xe160ff7 +com.adobe.AcrobatPlugin.Updater (11.0.10 - 11.0.10) <EC03D862-E720-39CC-9749-604B2F203CDB> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0xe190000 -  0xe19efff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <8A98BE48-A2A1-3E55-A75A-C9CA0A85B3C1> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0xe1af000 -  0xe1baff7  com.apple.AppleFSCompression (68.1.1 - 1.0) <51462B36-AAE0-3AF3-B882-5D74B0B61651> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xe1d1000 -  0xe1f1ffb  com.apple.addressbook.vCard (9.0 - 1499) <D4D6BC84-6BCC-3659-A102-118BDA8D125D> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0xe212000 -  0xe2e3ffc +com.lextek.onix (3.9.7.23 - Build 08/02/09) <115917DA-DD0D-3C40-17AA-3717B7C0DA23> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Onix.framework/Onix
    0xe31a000 -  0xe336ff7  com.apple.aps.framework (4.0 - 4.0) <CA48B496-1C08-36B7-BF46-1F53BF4E59B2> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0xe35d000 -  0xe3c5ffa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x158ac000 - 0x15991ff7 +com.adobe.amtlib (amtlib 6.2.0.42 - 6.2.0.42) <979ED254-104A-0377-8FC4-E878DA48F523> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0x15f54000 - 0x16285fff  com.apple.FinderKit (1.3.1 - 1.3.1) <90949541-97D7-340C-B6CE-95FE4967EB2B> /System/Library/PrivateFrameworks/FinderKit.framework/FinderKit
    0x16478000 - 0x164d6ffb  com.apple.Suggestions (4.0 - 165) <06A8826C-CE3E-3BDC-884A-463ACE91639C> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x1650a000 - 0x1654cff7  com.apple.bom (14.0 - 193.6) <8A66E20C-4275-3861-9C2D-F2F804105FBB> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x1655e000 - 0x1658eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <00146784-3C0A-379F-AC70-D9285073D45C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x165ae000 - 0x16815ff3  com.apple.AddressBook.framework (9.0 - 1499) <D5BA1270-FE8E-38CE-8B74-9EA046D90B65> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x169c8000 - 0x169f9ffb  com.apple.securityinterface (10.0 - 55058) <95726911-E181-3115-8451-EE1FA35A2937> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x16a94000 - 0x172b2ffb  libclh.dylib (4.0.3 - 4.0.3) <B14E74E7-5A76-303E-B8D0-75BE87556638> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
    0x1733b000 - 0x17348ff3  libGPUSupport.dylib (11.0.7) <09EA0A63-EF6C-3909-9CFE-5A475A2F51E2> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x179c6000 - 0x17aacff7  unorm8_rgba.dylib (2.4.5) <53C2DC36-5D81-361F-8F42-048875F5BEDD> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0x17ad8000 - 0x17ca0ffb +com.adobe.AcrobatPlugin.DigSig (11.0.10 - 11.0.10) <D573638E-26AD-3245-B16D-15C7F508F8C6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/DigSig.acroplugin/Contents/MacOS/DigSig
    0x17e90000 - 0x17eabff7  com.apple.security.csparser (3.0 - 57031.1.35) <26E8C07B-7875-3D39-8377-E5DE7389771B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x18198000 - 0x18198ff0 +cl_kernels (???) <7B2DED61-E760-4859-98C1-4CBF1E5AA386> cl_kernels
    0x182af000 - 0x182afffb +cl_kernels (???) <C4F613A6-10C3-454B-BFEA-31ADD4FFE1B6> cl_kernels
    0x182be000 - 0x182beff0 +cl_kernels (???) <7B2DED61-E760-4859-98C1-4CBF1E5AA386> cl_kernels
    0x1972b000 - 0x1a1e1ff7 +com.adobe.AcrobatPlugin.PPKLite (11.0.10 - 11.0.10) <3B98FF2B-96FB-3E51-AAEE-4420FF0F6FFA> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x1aba8000 - 0x1bc0affb +com.adobe.AcrobatPlugin.AcroForm (11.0.10 - 11.0.10) <311CE251-982E-382C-ADFF-EBF971632D63> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x48000000 - 0x488f0fff  com.apple.GeForceTeslaGLDriver (10.0.19 - 10.0.0) <151074BF-3DA4-3022-A2A3-286CACFC1A25> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
    0x8fe06000 - 0x8fe39e03  dyld (353.2.1) <EBFF7998-58E8-32F5-BF0D-9690278EC792> /usr/lib/dyld
    0x90008000 - 0x90015fff  com.apple.OpenDirectory (10.10 - 187) <94A3ED17-CD64-3D4A-8470-69C937CABF50> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90016000 - 0x90019fff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x9001e000 - 0x90020ffb  libCGXType.A.dylib (772) <9F0C0190-2E25-361D-9713-33C3DDADE8F3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x90021000 - 0x90060fff  com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90061000 - 0x90177ff3  com.apple.desktopservices (1.9 - 1.9) <01A07F2E-9F9A-3847-AB11-C550827B3778> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90178000 - 0x901a1fff  libRIP.A.dylib (772) <0B645C55-5450-320B-BF84-408B66A29364> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x901a2000 - 0x901d5fe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x901d6000 - 0x90558ff7  com.apple.VideoToolbox (1.0 - 1562.19) <0DF7B33E-B8BE-385E-931A-B7E7ECF16B7B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90559000 - 0x90559fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <180BFBE5-2218-3A6F-A1B2-CCA1C92B66F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9055a000 - 0x9058dfff  com.apple.CoreServicesInternal (221.1 - 221.1) <045D0E8B-6935-3A11-B56B-45FF9A5474FF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9058e000 - 0x9060bff3  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <C3A9E799-0B67-3292-AF44-43CCA846C169> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9060c000 - 0x90614fff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x90615000 - 0x906aaff3  libsystem_c.dylib (1044.1.2) <819FD4E2-3B29-38F0-AC5C-BEE865489F5F> /usr/lib/system/libsystem_c.dylib
    0x906ab000 - 0x906adfff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    0x906ae000 - 0x906bdff3  com.apple.opengl (11.0.7 - 11.0.7) <C4738E5F-C178-3A01-B941-C638E6A14D7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x906be000 - 0x906fefff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x906ff000 - 0x908adffb  GLEngine (11.0.7) <80C15A08-641F-3957-94B4-6CCCA9061F3F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
    0x908ae000 - 0x909c4ff7  com.apple.CoreText (352.0 - 454.1) <02F310BE-E185-328C-A461-6D6B762D4A6D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x90a67000 - 0x90a6efff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90bac000 - 0x90c3efff  com.apple.CoreSymbolication (3.1 - 56072) <BADFFEF1-5CD8-37BC-B8FD-7C955EF0D0A1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90c3f000 - 0x90c40fff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x90c41000 - 0x90c6dffb  libsandbox.1.dylib (358.1.1) <A62AE9BC-7FF4-33D1-AB30-7497832770E7> /usr/lib/libsandbox.1.dylib
    0x90c6e000 - 0x90ce2fff  com.apple.Heimdal (4.0 - 2.0) <5D2BE254-CFCD-3A15-9A89-1CBBDE0FF265> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x90ce3000 - 0x90ea7ff3  com.apple.QuartzCore (1.10 - 361.11) <9CED60CF-9B7F-3288-A7E9-3AE087F9E076> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90ea8000 - 0x90fb4fe3  libvDSP.dylib (512) <54403134-29AE-3806-89D7-2CBA7B455736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90fb5000 - 0x91052fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91053000 - 0x91257ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <8485A7F6-5217-355E-8501-385C557A97EA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x91258000 - 0x91344fe7  libvMisc.dylib (512) <56B7DE45-36B1-32BE-B823-DB14F315EEB9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91347000 - 0x91782feb  com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91783000 - 0x91a75ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x91a76000 - 0x91a91ff7  com.apple.CFOpenDirectory (10.10 - 187) <12F3D599-88CE-3952-8987-7F6CEA2A809A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91a9f000 - 0x91d50ffb  com.apple.RawCamera.bundle (6.02 - 768) <AC4CE950-8A51-32E6-BB8A-44C1E5250355> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91d51000 - 0x91d5dff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x91d5e000 - 0x91ed3ff7  com.apple.QTKit (7.7.3 - 2890) <16C43187-DFFE-3BB3-AA2C-741FBEBB5585> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91ed4000 - 0x91ee2ff3  libxar.1.dylib (254) <D7C4FDEB-61AA-3FC1-8B7B-0AE3A3A64492> /usr/lib/libxar.1.dylib
    0x91f06000 - 0x92091ffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <44BCEAB8-306D-307F-92C8-6656F3578220> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92092000 - 0x92092fff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92093000 - 0x92093fff  com.apple.Carbon (154 - 157) <5A078967-8437-3721-A6B1-70CC00461D7B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92094000 - 0x92099ff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x9209a000 - 0x9209dfff  com.apple.xpc.ServiceManagement (1.0 - 1) <942B9491-B97C-36DB-A9F0-3EA3273FCD2C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9209e000 - 0x920abff7  com.apple.HelpData (2.1.4 - 90) <6B37B1E4-9DC1-3AE9-A31B-8B282CD76FFC> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x920ac000 - 0x920c3ff3  com.apple.AppContainer (4.0 - 238) <6D233F8C-F8D1-365F-B678-E0B75A6E6C15> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x920c4000 - 0x921bbfff  libFontParser.dylib (134) <95F8F2D1-B28D-3687-95A9-45033FEE0504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x921bc000 - 0x921c4ff7  libCGCMS.A.dylib (772) <C556A973-97EF-353D-AA9A-82483BDB481C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x921c5000 - 0x925adff7  libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x925ae000 - 0x926f2fff  com.apple.ImageIO.framework (3.3.0 - 1038) <98EC2248-5270-3CB5-84FD-CD225A9875D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x93001000 - 0x93bedfff  com.apple.AppKit (6.9 - 1343.16) <FC30E524-3BC6-3220-BBB5-1512A4ED5E7B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93bee000 - 0x93bf0fff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x93bf1000 - 0x93c5dffb  com.apple.datadetectorscore (6.0 - 396.1) <77C29022-34D1-3556-95F6-FDBE4576CAF9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93c5e000 - 0x93edaff3  com.apple.security (7.0 - 57031.1.35) <4721C22E-D6C2-3202-B80D-5E67169466D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93edb000 - 0x93ee8ff7  com.apple.ProtocolBuffer (1 - 225.1) <E5744DE6-B3FC-3289-9E71-98E88DECE545> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x93ee9000 - 0x93f89fff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93f8a000 - 0x93fcdfff  libGLU.dylib (11.0.7) <3519CD46-386A-3702-A5EE-AE59923C5AA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93fce000 - 0x94029fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x94033000 - 0x940b2fff  com.apple.SystemConfiguration (1.14 - 1.14) <89A67A1E-850F-3ED1-AB7D-9057A5B0FF0D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x940b3000 - 0x940b4fff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x940b5000 - 0x940effff  com.apple.AirPlaySupport (2.0 - 215.10) <BA87CB33-2E42-389A-AFC1-0ABEE42C3E38> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x940f0000 - 0x9411afff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x9411b000 - 0x94138fff  libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib
    0x94139000 - 0x94152fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x94153000 - 0x94266fff  com.apple.MediaControlSender (2.0 - 215.10) <9A59F1DE-E9B6-3A56-84A1-F3F9DC66189B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x94267000 - 0x942b5ff7  libcurl.4.dylib (83.1.2) <F5D7DC22-1308-34FD-8A4E-A4DC3F8351E4> /usr/lib/libcurl.4.dylib
    0x942b6000 - 0x9460efff  libmecabra.dylib (666.1) <540C2537-35BD-3909-B98D-66783A3FB334> /usr/lib/libmecabra.dylib
    0x9460f000 - 0x9460ffff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <96675103-6E3D-326A-83C0-82D3A34C3A1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94610000 - 0x9473dff7  com.apple.coreui (2.1 - 305) <8D2978A1-8152-32CB-B265-4C923FDF3017> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9473e000 - 0x94747fff  com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x94748000 - 0x94777fff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94778000 - 0x94928ff7  libGLProgrammability.dylib (11.0.7) <CE02B596-76E3-3034-9E63-67FF6FF706A4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94929000 - 0x94933ffb  com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94934000 - 0x9493ffff  com.apple.AppSandbox (4.0 - 238) <D05DB10E-06C7-3220-B63A-FDD1AFCAA30B> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x94940000 - 0x94947fff  com.apple.XPCService (2.0 - 1) <9A59D63D-446A-33A4-BB21-56E42417DA93> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x94948000 - 0x94b242ef  libobjc.A.dylib (646) <EF789AF0-508F-3D49-A988-376CE2E1107C> /usr/lib/libobjc.A.dylib
    0x94b25000 - 0x94b26fff  libSystem.B.dylib (1213) <77FA0B3F-4412-31F6-A798-21D068AE16C3> /usr/lib/libSystem.B.dylib
    0x94b27000 - 0x94b27fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x94b28000 - 0x94b4effb  libPng.dylib (1231) <A9ACFC7E-9F25-3F15-AFAB-C74C3DAA1D06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94b4f000 - 0x94b56fff  libMatch.1.dylib (24) <428CD037-5261-39A6-83EE-A7D9ABF446EB> /usr/lib/libMatch.1.dylib
    0x94b57000 - 0x94f4dff3  com.apple.CoreGraphics (1.600.0 - 772) <0D322365-219E-3D67-96BB-2B2416ACB4F5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x94f4e000 - 0x94f56ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <A0C38380-8B46-39CF-A0A1-27ABDAD1D574> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x94f57000 - 0x95048ffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x95049000 - 0x9509eff7  com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9509f000 - 0x950c6fff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x950c7000 - 0x950caff7  com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x950cb000 - 0x950d1ff7  libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib
    0x950d2000 - 0x950e0ff7  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <637E7AB2-1077-319C-A6A2-D0D0F01951BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x950e1000 - 0x9511eff7  libsystem_network.dylib (411) <4D5BCDE3-5155-3D97-84C5-778D56A5122A> /usr/lib/system/libsystem_network.dylib
    0x9511f000 - 0x95132fff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x95133000 - 0x95173ffb  libGLImage.dylib (11.0.7) <1F2F2EFE-1EFA-398F-80D6-8AC6EA5160DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95174000 - 0x95184ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95185000 - 0x95211ff3  com.apple.PerformanceAnalysis (1.0 - 1) <CB175B15-8AA3-3ECA-88ED-E561D7722DFB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x95212000 - 0x9523efff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9523f000 - 0x956e5ff7  com.apple.JavaScriptCore (10600 - 10600.1.17) <51DEC6FC-6F6F-39F2-A286-CCAA88285016> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x956e6000 - 0x95700ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x95701000 - 0x95788fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <8DD52AC8-238C-3E5C-ADBB-ABDA770D708A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95789000 - 0x95918ff3  libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib
    0x95919000 - 0x9596afff  com.apple.opencl (2.4.2 - 2.4.2) <33B19D84-C463-3762-B1AB-C5CB8F7DC87F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9596b000 - 0x95a61ff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x95a62000 - 0x95ad8fff  com.apple.securityfoundation (6.0 - 55126) <64E4CE02-8BE6-3408-99A5-23E5CF7545BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95ad9000 - 0x95b2cfff  com.apple.CoreMediaIO (601.0 - 4749) <96E6B0EE-1251-39BA-A186-0D2DA82CB69C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x95b2d000 - 0x95e2bff7  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <C18EC809-6E67-3D9C-82D5-34170A81254C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e2c000 - 0x95e85ffb  libAVFAudio.dylib (118.3) <65762748-F772-3959-8D14-197AFB778132> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x95e86000 - 0x95e8afff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95e8b000 - 0x95eb1ff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x95eb2000 - 0x95f64fff  libCoreStorage.dylib (471) <3E1DA770-7958-3243-B0D3-126E71E36BAA> /usr/lib/libCoreStorage.dylib
    0x95f65000 - 0x95f6bff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x95f6c000 - 0x96011fff  com.apple.Metadata (10.7.0 - 916.1) <C1EAE5EA-C25B-337C-A0DD-82F694FDD140> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96012000 - 0x96016ffb  libGIF.dylib (1231) <9DE811E6-6151-32B2-8C89-AD97EC7815B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96017000 - 0x96149ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x9614a000 - 0x961a0fff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x961a1000 - 0x961a6fff  com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x961a7000 - 0x961a8fff  libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib
    0x961f9000 - 0x9621fff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x96220000 - 0x9633cffb  com.apple.WebKitLegacy (10600 - 10600.1.25) <DEB98A5A-3404-31C6-9AB5-3A1D4DF0AF8F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
    0x9633d000 - 0x96343ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x96347000 - 0x96350fff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x9660a000 - 0x966d5fff  com.apple.DiscRecording (9.0 - 9000.4.1) <490CDFC5-B1BF-36CA-AB7E-FEAF99BF272A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x966d6000 - 0x966fcffb  libxpc.dylib (559.1.22) <CB6B442F-8BE4-37B6-9A00-4753BC1C368C> /usr/lib/system/libxpc.dylib
    0x966fd000 - 0x966fffff  libsystem_configuration.dylib (699.1.5) <CDD8D1DA-3414-3A19-B340-EA116D52EA21> /usr/lib/system/libsystem_configuration.dylib
    0x96700000 - 0x9670dff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <DD10F01B-45E7-31A0-A19B-2AEEB689C6C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9670e000 - 0x96716ffb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96717000 - 0x96c72ffb  com.apple.MediaToolbox (1.0 - 1562.19) <6BAB878B-526B-314F-824B-95D9D2FED1D2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x96c73000 - 0x96c9cff3  com.apple.shortcut (2.12 - 2.12) <C7682A91-4105-3C52-A15D-19749E9BEA3D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96c9d000 - 0x96cb2ffb  com.apple.MultitouchSupport.framework (260.30 - 260.30) <2E28AF1C-AC6C-364F-B181-C5926A7F5A4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96cb3000 - 0x96cb5fff  com.apple.securityhi (9.0 - 55006) <E278B0FD-7303-381A-BDBC-C590C71EE86E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96cb6000 - 0x96da6ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <2C988912-3B5E-3E13-A172-01221AAC91E6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x96da7000 - 0x96dbafff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x96dbb000 - 0x96de4ff7  libsystem_info.dylib (459) <4F7A7111-7F0D-3891-9DC9-41F5D79949FE> /usr/lib/system/libsystem_info.dylib
    0x96de5000 - 0x96df7fff  com.apple.Sharing (328.3 - 328.3) <460DD833-B33A-369E-A5EF-B21D5AA231EF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x96f07000 - 0x96f09ff3  com.apple.EFILogin (2.0 - 2) <414F4023-49B5-3FB8-8778-55D4025EB6E8> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x96f0a000 - 0x96f0cfff  libCVMSPluginSupport.dylib (11.0.7) <A87C589A-DA64-3D62-8BDE-065784993B1A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x96f0d000 - 0x96f56ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96f57000 - 0x96f72ff3  com.apple.openscripting (1.4 - 162) <EB1D1BA6-C0B0-3D3B-AE54-676324FFF3E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96f73000 - 0x96f7eff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x96f7f000 - 0x96f83fff  com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96f84000 - 0x96fd7fff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x96fd8000 - 0x96feaff7  libsasl2.2.dylib (193) <B5813595-A89D-39D4-BB06-F6013D3BD98C> /usr/lib/libsasl2.2.dylib
    0x96feb000 - 0x970efff7  libJP2.dylib (1231) <77B25D2E-F9DE-3565-894A-970DE207B0EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x970f0000 - 0x97259ff7  com.apple.avfoundation (2.0 - 889.10) <BC1712A8-FBDC-35A4-997C-2A0CA4296E8E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9725a000 - 0x9728dfff  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <103A5EA0-9B75-3B23-BE72-C4DD52744A6A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9728e000 - 0x97291fff  libextension.dylib (55.1) <6FF35E52-648C-3F90-932C-5EB9FFEEEB49> /usr/lib/libextension.dylib
    0x97292000 - 0x972a3ff3  libsystem_coretls.dylib (35.1.2) <87AE2CBB-A397-3392-A152-02AEA6D194D6> /usr/lib/system/libsystem_coretls.dylib
    0x972a4000 - 0x97537ff7  com.apple.CoreData (110 - 526) <C2C79A0B-70B1-3D88-951D-1C19D35B78E1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97538000 - 0x97589fff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x9758a000 - 0x9758cfff  com.apple.loginsupport (1.0 - 1) <47A71885-BB14-3DB8-AE19-F74ABA120290> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x9758d000 - 0x9759aff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x9759b000 - 0x975cdff7  com.apple.GSS (4.0 - 2.0) <36CBBD76-19AC-333E-AB52-A93800ABC89A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x975ce000 - 0x97645fff  com.apple.CoreUtils (1.0 - 101.1) <7169E4D1-0771-36AD-85C8-60CF37FFF16E> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x97646000 - 0x97646fff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x97647000 - 0x9764bffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9764c000 - 0x97655fff  libGFXShared.dylib (11.0.7) <AFC7CCD1-D935-3968-8CE3-303C13354F2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97656000 - 0x97690fff  com.apple.MediaKit (16 - 757) <430EC569-B083-3608-B91F-3EC6B6065519> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x97691000 - 0x976fcff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x976fd000 - 0x97714fff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    0x97715000 - 0x9799fffb  com.apple.WebKit (10600 - 10600.1.25) <DCD91A86-737E-352F-921A-5A029DCAD0D7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x979a0000 - 0x979cfff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x979d0000 - 0x97a23ff7  com.apple.HIServices (1.22 - 519) <5B54AB76-C487-367B-ACD5-2AF6BC85E1B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x97a24000 - 0x97a25fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x97a26000 - 0x97a26fff  libffi.dylib (18.1) <C15EF590-C1CD-3F0A-8988-25491841F043> /usr/lib/libffi.dylib
    0x97a27000 - 0x97a2ffff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x97a30000 - 0x97a39fff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97a3a000 - 0x97a9eff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97a9f000 - 0x97b19fff  com.apple.ApplicationServices.ATS (360 - 375) <7E075657-314E-3130-97A7-AFD826000C7B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97b1a000 - 0x97b1afff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97b1b000 - 0x97bc3ff7  com.apple.CoreMedia (1.0 - 1562.19) <ECB3338A-318A-3612-BBC1-11E0E99DB595> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x97bc4000 - 0x97f77fff  com.apple.CoreFoundation (6.9 - 1151.16) <2F4FE1E8-D09B-3C62-B884-7A41111F4FBB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97f78000 - 0x98012fff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9809c000 - 0x9820dffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9820e000 - 0x98263ff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98264000 - 0x98283fff  libsystem_kernel.dylib (2782.1.97) <9F86CA37-93FC-31F0-8ACC-53D244AF9EC2> /usr/lib/system/libsystem_kernel.dylib
    0x98284000 - 0x98297fff  com.apple.ProtectedCloudStorage (1.0 - 1) <0A330FB7-44EE-359F-BAB7-48351AACD305> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x98298000 - 0x9829bfff  libdyld.dylib (353.2.1) <6533C0BC-6FE5-3E43-A44D-EF2193978EC0> /usr/lib/system/libdyld.dylib
    0x9829c000 - 0x9829dfff  com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9829e000 - 0x98494fff  libicucore.A.dylib (531.30) <BD09E200-FF42-3E9D-814C-0BC8F2C0EAC9> /usr/lib/libicucore.A.dylib
    0x9849b000 - 0x98565fff  com.apple.backup.framework (1.6.1 - 1.6.1) <82A5ADA6-6434-3801-AE63-4C56ADC93B28> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98566000 - 0x99507fff  com.apple.WebCore (10600 - 10600.1.25.2) <5185C771-B437-317C-BDAD-3EE7274B50FB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x99508000 - 0x995f1fff  libcrypto.0.9.8.dylib (52) <8BA9026A-18DA-3F45-9850-85DF4378F284> /usr/lib/libcrypto.0.9.8.dylib
    0x995f2000 - 0x99609ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x9960a000 - 0x9960effb  com.apple.TCC (1.0 - 1) <BFA66EA1-2839-3648-80F6-96AE136A6838> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9960f000 - 0x99620fff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x99621000 - 0x996d0ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <5BCD60EC-DAD3-369F-B836-49086A6A6D39> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x996d1000 - 0x996dfff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x996e0000 - 0x996f0fff  libGL.dylib (11.0.7) <2AF64D8C-3447-3C85-B4A1-77F03456E402> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x996f1000 - 0x9970effb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9970f000 - 0x99714ff7 

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • Urgent help needed with iPhoto/pdf preview for book order - mysterious pixelated areas show on PDF but not in iPhoto

    Hello. I ordered an iPhoto book last week to give to my parents for their 50th wedding anniversary. Tonight, I just checked on the order status and found that my book is cancelled. I received no notification about it, and all I could do was fill out the online form, so customer service will get back to me on Monday via email (if I'm lucky...). There is no telephone number for me to call about this. I decided I'd best do some searching to try to figure out what had happened.
    I had thought that the preview I saw in iPhoto was the preview of the book. I found out I was wrong. So I created a PDF preview of the book and found some craziness that I don't understand. In iPhoto (and any other program, i.e. PhotoShop), my photos are fine. They are mostly TIFF format and high resolution with a few high res JPEGs. However, when I view the PDF, there is a band of black and white pixelation about 1/2-inch across the bottom of some pages - not all. The photos in that area are messed up in that band zone. The other photos are totally unaffected. This affects both TIFF and JPEG photos, and both black and white and color.
    Has anyone else had this problem, and what was your solution? I would be extremely grateful to anyone for advice or information about this! The anniversary party is less than a week away and I'm beyond my limit of stress right now...

    Launch iPhoto with the Option key held down and create a new library.  Import enough photos for a book (use some of those in the current book) create a new book and preview as a PDF.  If you don't see the problem then it's limited to your library which may be damaged.  If that's the case make a temporary, duplicate copy of the library and try the two fixes below in order as needed:
    Fix #1
    1 - delete  the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    2 - delete iPhoto's cache file, Cache.db, that is located in your Home/Library/Caches/com.apple.iPhoto folder. 
    3 - reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key.  You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library.
    Select the options identified in the screenshot and the option to rebuild the small thumbnails.
    Click to view full size
    If you get the same problem in the test library then log into another user account on your Mac, create a test library and try it there.  If the problem shows up there a reinstall of iPhoto is indicated.  To do so you'll have to delete the current application and all files with "iPhoto" in the file name with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder,
    Click to view full size
    If you don't encounter the problem in the other user account then it's something in your account that's the culprit. Post back with the results.
    OT

  • Trying to create a pdf with jasper - Content is not allowed in prolog

    hi all,
    Im trying to create a pdf file with jasper reports but i get this error message:
    29/11/2007 16:52:03 org.apache.commons.digester.Digester fatalError
    SEVERE: Parse Fatal Error at line 1 column 1: Content is not allowed in prolog.
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:236)
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:215)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:386)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:316)
         at com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(XMLScanner.java:1438)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDispatcher.dispatch(XMLDocumentScannerImpl.java:899)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at net.sf.jasperreports.engine.xml.JRPrintXmlLoader.loadXML(JRPrintXmlLoader.java:151)
         at net.sf.jasperreports.engine.xml.JRPrintXmlLoader.load(JRPrintXmlLoader.java:103)
         at net.sf.jasperreports.view.JRViewer.loadReport(JRViewer.java:1376)
         at net.sf.jasperreports.view.JRViewer.<init>(JRViewer.java:243)
         at net.sf.jasperreports.view.JRViewer.<init>(JRViewer.java:214)
         at net.sf.jasperreports.view.JasperViewer.<init>(JasperViewer.java:140)
         at net.sf.jasperreports.view.JasperViewer.viewReport(JasperViewer.java:397)
         at net.sf.jasperreports.view.JasperViewer.viewReport(JasperViewer.java:328)
         at br.com.abril.contratos.Gerar.geraRelatorio(Gerar.java:38)
         at br.com.abril.contratos.Gerar.main(Gerar.java:47)

    cause of the error:
    After some extensive research on the web, it is found that that you are using an UTF-8 encoded file with byte-order mark (BOM). Java doesn't handle BOMs on UTF-8 files properly, making the three header bytes appear as being part of the document. UTF-8 files with BOMs are commonly generated by tools such as Window's Notepad. This is a known bug in Java, but it still needs fixing after almost 8 years...
    There are some hexadecimal character at the begining of the file, which is giving error"content not allowed in prolog". No solution is provided for this till now.
    Example: suppose your file start with <?xml version="1.0" encoding="utf-8"?>. you will see this in a editor. But if you open this file with any hexadecimal editor you will find some junk character in the start of the file.that is causing the problem
    solution:
    1) convert your file into a string and then read the file from the forst character that in my case the first character will be "<".so the junk character will not be there in the string and then again convert it into a file.
    2) some people are able to solve this problem by changing the "utf-8" to "utf-16". remember only in some case. some times this problem also exits in "utf-16" file.
    3) some are able to solve this problem by changing the LANG to US.en.
    4) If the first three bytes of the file have hexadecimal values EF BB BF then the file contains a BOM.so you can also handle by your own.
    5)Download a hexadecimal editor and remove the BOM.
    6) In case you are not able to think furthe then please to more research in internet may be you find some other solution to this problem. But These solution are some type of hack not exactly a solution.

  • Safari crashing when printing a PDF document

    We have a bunch of Macs running 10.3.9 with Adobe Reader installed.
    Almost all of the eMacs exhibiting the problem are crashing when trying to print a PDF ducument the second time.
    The process is, I click on a link in Safari for a PDF file, there is a pause as the Reader plug-in loads then the PDF file displays. I click the print icon that's part of the PDF plug-in and the first file prints. I then go to a second file, click on the link, the file loads in the browser, I click on the print icon, there is a pause and then spinning beach ball. Then Safari crashes. Every time. On every machine. On every account.
    Not sure what gives or how to remedy. HELP!!!
    Crash log is as follows:
    Host Name: eMac15.local
    Date/Time: 2006-02-16 19:45:40 -0500
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Version: 1.3.2 (312.5)
    PID: 509
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x901c2b10 CFArrayGetCount + 0x34
    1 ...p.print.pde.arm236.Advanced 0x04ea03d8 FindPPDKeyPairsMatch + 0x24
    2 ...p.print.pde.arm236.Advanced 0x04e9e930 Sync + 0x418
    3 ...p.print.pde.arm236.Advanced 0x04e9dea4 Initialize + 0xc68
    4 ...apple.print.framework.Print 0x919a5954 _ZN8PDEPanel10InitializeEP20OpaquePMPrintSessionP16OpaqueControlRef + 0xe0
    5 ...apple.print.framework.Print 0x919a23fc ZN21PJCPrintingDialogBase14AddPanelToMenuEP8PJCPanelPK10_CFStringP20OpaquePMPrintSession + 0xe4
    6 ...apple.print.framework.Print 0x9199b9b8 _ZN15PJCPrintDialogs14AddPMPDEToMenuEP8PJCPanelP20OpaquePMPrintSession + 0x9c
    7 ...apple.print.framework.Print 0x919a28bc _ZN21PJCPrintingDialogBase15UpdatePanelMenuEP20OpaquePMPrintSession + 0x310
    8 ...apple.print.framework.Print 0x91975a40 _ZN21PJCPrintingDialogBase10LoadPanelsEP20OpaquePMPrintSession + 0x10c
    9 ...apple.print.framework.Print 0x91978fb0 _ZN15PJCPrintDialogs10LoadPanelsEP20OpaquePMPrintSession + 0x20
    10 ...apple.print.framework.Print 0x919725c8 _ZN15PJCPrintDialogs13DoPrintDialogEP20OpaquePMPrintSessionP21OpaquePMPrintSett ingsP18OpaquePMPageFormat + 0x2e0
    11 ...apple.print.framework.Print 0x91985590 PJCPrintDialog + 0xa0
    12 ...apple.print.framework.Print 0x919873fc PMSessionPrintDialog + 0xcc
    13 com.adobe.Acrobat.framework 0x25291674 CopiesPagesPDE_Terminate + 0x44c4
    14 com.adobe.Acrobat.framework 0x2528aec0 0x25000000 + 0x28aec0
    15 com.adobe.Acrobat.framework 0x2528b3e4 0x25000000 + 0x28b3e4
    16 com.adobe.Acrobat.framework 0x2528b9f0 0x25000000 + 0x28b9f0
    17 com.adobe.Acrobat.framework 0x250368bc 0x25000000 + 0x368bc
    18 com.adobe.AcrobatPlugin.eBook 0x2bb2492c main + 0x61504
    19 com.adobe.Acrobat.framework 0x250362e8 0x25000000 + 0x362e8
    20 com.adobe.Acrobat.framework 0x25036368 0x25000000 + 0x36368
    21 com.adobe.Acrobat.framework 0x2503e3f4 0x25000000 + 0x3e3f4
    22 com.adobe.Acrobat.framework 0x25099a5c 0x25000000 + 0x99a5c
    23 com.adobe.Acrobat.framework 0x252b2160 CopiesPagesPDE_Terminate + 0x24fb0
    24 com.adobe.Acrobat.framework 0x252b1270 CopiesPagesPDE_Terminate + 0x240c0
    25 com.adobe.Acrobat.framework 0x25172b24 0x25000000 + 0x172b24
    26 com.adobe.Acrobat.framework 0x25241bfc 0x25000000 + 0x241bfc
    27 com.adobe.Acrobat.framework 0x250c72a8 0x25000000 + 0xc72a8
    28 com.adobe.Acrobat.framework 0x250c7198 0x25000000 + 0xc7198
    29 com.adobe.Acrobat.framework 0x2514ecdc 0x25000000 + 0x14ecdc
    30 com.adobe.Acrobat.framework 0x2514f954 0x25000000 + 0x14f954
    31 com.adobe.Acrobat.framework 0x2514fbcc 0x25000000 + 0x14fbcc
    32 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    33 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    34 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    35 com.apple.HIToolbox 0x9294bcfc _ZN6HIView5ClickEP14OpaqueEventRef + 0x10c
    36 com.apple.HIToolbox 0x9299a280 HIViewClick + 0x38
    37 com.apple.HIToolbox 0x92967960 HandleClickAsHIView + 0x9c
    38 com.apple.HIToolbox 0x929a59cc HandleClickInContent + 0x150
    39 com.apple.HIToolbox 0x928b11a0 HandleWindowEvent + 0x638
    40 com.apple.HIToolbox 0x928d8c04 StandardWindowEventHandler + 0xb4
    41 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    42 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    43 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    44 com.apple.AppKit 0x93038444 SendEventFromMouseDown + 0x284
    45 com.apple.AppKit 0x93038150 -[NSCarbonWindow handleMouseDownEvent:at:inPart:withMods:] + 0x3d4
    46 com.apple.AppKit 0x93037b28 NSCarbonWindowHandleEvent + 0xd0
    47 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    48 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    49 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    50 com.apple.HIToolbox 0x928a3cd4 _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 0x144
    51 com.apple.HIToolbox 0x928995f0 _Z16HandleMouseEventP14OpaqueEventRef + 0x170
    52 com.apple.HIToolbox 0x92893ad0 _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefP v + 0x1e8
    53 com.apple.HIToolbox 0x92882f0c DispatchEventToHandlers + 0x20c
    54 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    55 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    56 com.apple.AppKit 0x93037cd4 -[NSCarbonWindow sendEvent:] + 0x84
    57 com.apple.AppKit 0x92ea4ca0 -[NSApplication sendEvent:] + 0xebc
    58 com.apple.Safari 0x0001d4ac 0x1000 + 0x1c4ac
    59 com.apple.AppKit 0x92ead0d0 -[NSApplication run] + 0x240
    60 com.apple.AppKit 0x92f697bc NSApplicationMain + 0x1d0
    61 com.apple.Safari 0x00007fc4 0x1000 + 0x6fc4
    62 com.apple.Safari 0x00054944 0x1000 + 0x53944
    Thread 1:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.WebKit 0x960a5124 +[WebFileDatabase _syncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a98054 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 0x20c
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a98594 +[NSURLCache _diskCacheSyncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.CoreFoundation 0x901c69f8 __CFSocketManager + 0x1fc
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x9001a72c syscall + 0xc
    1 ...ple.CoreServices.OSServices 0x9064fa34 BSD_waitevent + 0x2c
    2 ...ple.CoreServices.OSServices 0x9064c410 CarbonSelectThreadFunc + 0xb0
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 ...ple.CoreServices.OSServices 0x90656c00 CarbonOperationThreadFunc + 0x50
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 ...ple.CoreServices.CarbonCore 0x902c3064 SwitchContexts + 0x60
    3 ...ple.CoreServices.CarbonCore 0x902b882c YieldToThread + 0x104
    4 ...ple.CoreServices.CarbonCore 0x902c5d78 SetThreadState + 0xc0
    5 ...ple.CoreServices.CarbonCore 0x90301490 SetThreadStateEndCritical + 0x90
    6 com.adobe.AcrobatPlugin.eBook 0x2bac4aac main + 0x1684
    7 com.adobe.AcrobatPlugin.eBook 0x2bac49ec main + 0x15c4
    8 com.adobe.AcrobatPlugin.eBook 0x2bac4954 main + 0x152c
    9 com.adobe.AcrobatPlugin.eBook 0x2bac48e8 main + 0x14c0
    10 com.adobe.AcrobatPlugin.eBook 0x2bac486c main + 0x1444
    11 ...ple.CoreServices.CarbonCore 0x9030c0a8 InvokeThreadEntryUPP + 0x18
    12 ...ple.CoreServices.CarbonCore 0x902d6d98 CooperativeThread + 0xdc
    13 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 8:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 9:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 10:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ad24 dyldstub* + 0x4604f80
    4 com.adobe.acrobat.pdfviewer 0x0462c440 dyldstub* + 0x460669c
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 11:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ac70 dyldstub* + 0x4604ecc
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 12:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 13:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ad24 dyldstub* + 0x4604f80
    4 com.adobe.acrobat.pdfviewer 0x0462c440 dyldstub* + 0x460669c
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 14:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.CoreFoundation 0x9022f32c CFRunLoopRun + 0x34
    5 ...dobe.AcrobatPlugin.Comments 0x2b52617c main + 0x1543d8
    6 ...dobe.AcrobatPlugin.Comments 0x2b526aa0 main + 0x154cfc
    7 ...ple.CoreServices.CarbonCore 0x902f6b90 PrivateMPEntryPoint + 0x4c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 15:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 ...ple.CoreServices.OSServices 0x90662a50 CarbonInetOperThreadFunc + 0x50
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 16:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 ...apple.print.framework.Print 0x91978eec _ZN12LookupThread3runEv + 0x84
    5 ...apple.print.framework.Print 0x9197f12c _ZN12LookupThread3RunEPv + 0x10
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x901c2b10 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44022284 xer: 0x00000000 lr: 0x901c2ae4 ctr: 0x901c2adc
    r0: 0x00300f80 r1: 0xbfffb4c0 r2: 0xa01c01f4 r3: 0x00000000
    r4: 0x05fa4270 r5: 0x06165b30 r6: 0x00000000 r7: 0x6f646500
    r8: 0x6f646500 r9: 0x00000010 r10: 0x6e6363ff r11: 0x04ea932c
    r12: 0x901c2adc r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000002 r21: 0x00000000 r22: 0x055d4430 r23: 0x00000000
    r24: 0xffffffff r25: 0x06165b30 r26: 0x00000000 r27: 0x05fa4270
    r28: 0x06178d80 r29: 0x00000000 r30: 0x00000001 r31: 0x901c2ae4
    Binary Images Description:
    0x1000 - 0xcdfff com.apple.Safari 1.3.2 (312.5) /Applications/Safari.app/Contents/MacOS/Safari
    0x46e000 - 0x4a8fff com.adobe.ESD.AUM3framework 3.0.0.40 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Updater.acroplugin/Frameworks/ESDUpdate.framework/ESD Update
    0x1715000 - 0x171dfff com.apple.print.converter.plugin 3.0 /System/Library/Printers/CVs/Converter.plugin/Contents/MacOS/Converter
    0x3f82000 - 0x3f84fff com.apple.PDFImporter 1.3.1 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x4223000 - 0x4224fff com.adobe.Acrobat.print.pde.CopiesPages 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/MacOS/CopiesPages.plugin/Contents/MacOS/CopiesPages
    0x4622000 - 0x464cfff com.adobe.acrobat.pdfviewer 7.0.0 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0x466b000 - 0x4675fff ??? /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/AdobeEula.framework/AdobeEula
    0x46a1000 - 0x46d7fff com.adobe.selfhealer AdobeSelfHealing version 2.0 (2.0.0f4) /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealing
    0x4df9000 - 0x4dfbfff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4e9c000 - 0x4ea8fff jp.co.sharp.print.pde.arm236.Advanced 1.0 /Library/Printers/PPD Plugins/SharpARM236AD.plugin/Contents/MacOS/SharpARM236AD
    0x4ec2000 - 0x4ecefff jp.co.sharp.print.pde.arm236.JobControl 1.0 /Library/Printers/PPD Plugins/SharpARM236JC.plugin/Contents/MacOS/SharpARM236JC
    0x5bf9000 - 0x5c05fff jp.co.sharp.print.pde.arm236.Watermarks 1.0 /Library/Printers/PPD Plugins/SharpARM236WM.plugin/Contents/MacOS/SharpARM236WM
    0x6005000 - 0x608dfff ??? /Applications/Safari.app/Contents/Frameworks/Onix.Framework/Onix
    0x18017000 - 0x1803bfff com.adobe.AcrobatPlugin.ImageViewer 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/ImageViewer.acroplugin/ImageViewer
    0x182cb000 - 0x1835efff AdobeJP2K /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versi ons/A/AdobeJP2K
    0x185d6000 - 0x185fafff AdobeAXE8SharedExpat /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.fram ework/Versions/A/AdobeAXE8SharedExpat
    0x18631000 - 0x18656fff AdobeAXE16SharedExpat /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXE16SharedExpat.fra mework/Versions/A/AdobeAXE16SharedExpat
    0x18745000 - 0x187f2fff AdobeAXSLE /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXSLE.framework/Vers ions/A/AdobeAXSLE
    0x188eb000 - 0x18928fff MSL /Applications/Safari.app/Contents/MacOS/../Frameworks/MSL.framework/Versions/A/ MSL
    0x25000000 - 0x25813fff com.adobe.Acrobat.framework Acrobat version 7.0.0 (7.0.0) /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x271bd000 - 0x27265fff AdobeACE /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versio ns/A/AdobeACE
    0x27318000 - 0x275b3fff AdobeAGM /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versio ns/A/AdobeAGM
    0x27bf0000 - 0x27c17fff AdobeBIB /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versio ns/A/AdobeBIB
    0x27cc6000 - 0x27eebfff AdobeCoolType /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/V ersions/A/AdobeCoolType
    0x2a11a000 - 0x2a157fff com.adobe.AcrobatPlugin.Accessibility 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Accessibility.acroplugin/Accessibility
    0x2a1a3000 - 0x2a786fff com.adobe.AcrobatPlugin.AcroForm 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/AcroForm.acroplugin/AcroForm
    0x2b252000 - 0x2b2bffff com.adobe.AcrobatPlugin.Checkers 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Checkers.acroplugin/Checkers
    0x2b3d0000 - 0x2b58cfff com.adobe.AcrobatPlugin.Comments 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Comments.acroplugin/Comments
    0x2b816000 - 0x2b92ffff com.adobe.AcrobatPlugin.DigSig 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/DigSig.acroplugin/DigSig
    0x2bac1000 - 0x2bbb4fff com.adobe.AcrobatPlugin.eBook 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/eBook.acroplugin/eBook
    0x2bd8f000 - 0x2bdacfff com.adobe.AcrobatPlugin.EFS 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EFS.acroplugin/EFS
    0x2bdde000 - 0x2bef2fff com.adobe.AcrobatPlugin.EScript 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EScript.acroplugin/EScript
    0x2c041000 - 0x2c059fff com.adobe.AcrobatPlugin.EWH 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EWH.acroplugin/EWH
    0x2c07f000 - 0x2c085fff com.adobe.AcrobatPlugin.HLS 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/HLS.acroplugin/HLS
    0x2d07d000 - 0x2d080fff com.adobe.AcrobatPlugin.LegalPDF 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/LegalPDF.acroplugin/LegalPDF
    0x2d088000 - 0x2d2b0fff com.adobe.AcrobatPlugin.MakeAccessible 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/MakeAccessible.acroplugin/MakeAccessible
    0x2d711000 - 0x2d85dfff com.adobe.AcrobatPlugin.Multimedia 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Multimedia.acroplugin/Multimedia
    0x2dc75000 - 0x2dce8fff com.adobe.AcrobatPlugin.PDDom 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PDDom.acroplugin/PDDom
    0x2dd9a000 - 0x2de09fff com.adobe.AcrobatPlugin.Template 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PictureTasks.acroplugin/PictureTasks
    0x2debe000 - 0x2e24dfff com.adobe.AcrobatPlugin.PPKLite 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PPKLite.acroplugin/PPKLite
    0x2e841000 - 0x2e87ffff com.adobe.AcrobatPlugin.Reflow 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Reflow.acroplugin/Reflow
    0x2e8fc000 - 0x2e93bfff com.adobe.AcrobatPlugin.SaveAsRTF 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SaveAsRTF.acroplugin/SaveAsRTF
    0x2ea95000 - 0x2eacffff com.adobe.AcrobatPlugin.Search 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Search.acroplugin/Search
    0x2eb1e000 - 0x2eb2ffff com.adobe.AcrobatPlugin.SendMail 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SendMail.acroplugin/SendMail
    0x2eb50000 - 0x2ec08fff com.adobe.AcrobatPlugin.SOAP 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SOAP.acroplugin/SOAP
    0x2ed14000 - 0x2ed60fff com.adobe.AcrobatPlugin.Spelling 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Spelling.acroplugin/Spelling
    0x2f368000 - 0x2f3b1fff com.adobe.AcrobatPlugin.Updater 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Updater.acroplugin/Updater
    0x2f4c0000 - 0x2f4defff com.adobe.AcrobatPlugin.WebLink 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/WebLink.acroplugin/WebLink
    0x806c0000 - 0x806e9fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x81efc000 - 0x81f08fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x81f20000 - 0x81f23fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x8281e000 - 0x831ddfff com.apple.QuickTimeComponents.component 7.0.4 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x88999000 - 0x88c47fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x8b3e2000 - 0x8b3f2fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x8b510000 - 0x8b532fff libCFilter.A.dylib /System/Library//Frameworks/ApplicationServices.framework/Versions/A/Frameworks /CoreGraphics.framework/Resources/libCFilter.A.dylib
    0x8be40000 - 0x8be54fff libPPDLib.dylib /System/Library/Printers/Libraries/libPPDLib.dylib
    0x8be80000 - 0x8be87fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x8beb0000 - 0x8beeffff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8bf50000 - 0x8bf76fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    0x8ee80000 - 0x8ee81fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x8eea0000 - 0x8eeb6fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x8eee0000 - 0x8ef00fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x8ef90000 - 0x8ef9efff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x8efc0000 - 0x8efd3fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8fd50000 - 0x8fd50fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026dfff com.apple.CoreFoundation 6.3.8 (299.36) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x90731fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x909fbfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90a03000 - 0x90a0ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.7 (500.59) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91133fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91143000 - 0x91143fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91242000 - 0x91258fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91320000 - 0x91337fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x914c0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x914e0000 - 0x91549fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x915e0000 - 0x91699fff com.apple.QD 3.4.70 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9194f000 - 0x9194ffff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b08fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b90000 - 0x91baafff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91bd0000 - 0x91bdffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x920f0000 - 0x92116fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92647000 - 0x926aefff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.9 (743.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93a50000 - 0x93a54fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a56000 - 0x93a66fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93aa0000 - 0x93b87fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x940c0000 - 0x940fcfff com.apple.LDAPFramework 1.3.4 (37.4.2) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94120000 - 0x94138fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94192000 - 0x9419bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x941f8000 - 0x94201fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94204000 - 0x9420cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x94580000 - 0x94590fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x945c0000 - 0x945d0fff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x945ee000 - 0x9460bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94658000 - 0x94672fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x946e0000 - 0x9473ffff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9477d000 - 0x9478dfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x947b0000 - 0x947b1fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948b0000 - 0x948e1fff com.apple.securityinterface 1.0 (39) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x949e0000 - 0x949effff com.apple.DSObjCWrappers.Framework 1.0.1 (1.0) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ea0000 - 0x954a6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95500000 - 0x957d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x958e0000 - 0x95900fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95a08000 - 0x95ac0fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95b50000 - 0x95c32fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95f30000 - 0x9601efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96092000 - 0x9612afff com.apple.WebKit 312.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x961b0000 - 0x96292fff com.apple.JavaScriptCore 312.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x96980000 - 0x96a48fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97900000 - 0x97bf1fff com.apple.WebCore 315.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    I will try to compose a sample that causes the problem to occur since I can't share the original document.
    I have already told everyone in the division to avoid using File | Print | Adobe PDF, and use File | Save As instead.  That works fine in terms of avoiding this number conversion issue, but...
    From what I understand, many people were doing File | Print | Adobe PDF in order to reduce the file size of the original document.  Apparently the recipients of the final documents have size restrictions on what can be submitted, and the original documents are too large.  The original documents are usually composed from multiple PDFs that we create in our division or receive from other divisions and other companies.
    There was also an issue with highlighting, where highlights added to a PDF would not print correctly to the printer until the user reprinted the PDF to another PDF, then sent that to the printer.

  • Printer crashes when printing PDF

    Everytime I try to print a PDF with whichever app that opens PDF file, that app will crash.
    If I try to print on Chrome, Chrome opens the Print page, but then freezes.
    Printer:      Samsung ML 2250
    Chrome:    Version 34.0.1847.131
    Here is the crash report when I tried to print a PDF on Adobe:
    Process:         AdobeAcrobat [5972]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         11.0.06 (11.0.06)
    Code Type:       X86 (Native)
    Parent Process:  launchd [181]
    Responsible:     AdobeAcrobat [5972]
    User ID:         501
    Date/Time:       2014-05-01 21:35:02.374 +0800
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  E42688D7-73EE-1525-8EC9-1641F8776B7E
    Sleep/Wake UUID: 2F9E0298-9F42-40B9-94DB-009FCCF53D0F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000090
    VM Regions Near 0x90:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        VM_ALLOCATE            0000000000001000-0000000000062000 [  388K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Acrobat.framework             0x0041a719 AcroSecurityBailOutImpl + 121411
    1   com.adobe.Acrobat.framework             0x0041ac2c AcroSecurityBailOutImpl + 122710
    2   com.adobe.Acrobat.framework             0x00232522 RunAcrobat + 1842422
    3   com.adobe.Acrobat.framework             0x004693e6 AcroSecurityBailOutImpl + 444176
    4   com.adobe.Acrobat.framework             0x0047728b AcroSecurityBailOutImpl + 501173
    5   com.adobe.Acrobat.framework             0x004771b3 AcroSecurityBailOutImpl + 500957
    6   com.adobe.Acrobat.framework             0x00479237 AcroSecurityBailOutImpl + 509281
    7   com.adobe.Acrobat.framework             0x004a21b1 AcroSecurityBailOutImpl + 677083
    8   com.adobe.Acrobat.framework             0x004a23db AcroSecurityBailOutImpl + 677637
    9   com.adobe.Acrobat.framework             0x00478ef5 AcroSecurityBailOutImpl + 508447
    10  com.adobe.Acrobat.framework             0x004b83af AcroSecurityBailOutImpl + 767705
    11  com.adobe.Acrobat.framework             0x004b852d AcroSecurityBailOutImpl + 768087
    12  com.apple.AppKit                        0x9800e2a8 -[NSView _drawRect:clip:] + 3816
    13  com.apple.AppKit                        0x9800ccdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    14  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    15  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    16  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    17  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    18  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    19  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    20  com.apple.AppKit                        0x9800d00c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2642
    21  com.apple.AppKit                        0x9800b288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    22  com.apple.AppKit                        0x9800a900 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    23  com.apple.AppKit                        0x98007c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    24  com.apple.AppKit                        0x97fe575c -[NSView displayIfNeeded] + 1414
    25  com.apple.AppKit                        0x97fe5143 -[NSThemeFrame handleSetFrameCommonRedisplay] + 262
    26  com.apple.AppKit                        0x97fcf89d -[NSWindow _setFrameCommon:display:stashSize:] + 2615
    27  com.apple.AppKit                        0x97fcee5a -[NSWindow _setFrame:display:allowImplicitAnimation:stashSize:] + 307
    28  com.apple.AppKit                        0x97fced22 -[NSWindow setFrame:display:] + 79
    29  com.adobe.Acrobat.framework             0x004c9776 AcroSecurityBailOutImpl + 838304
    30  com.adobe.Acrobat.framework             0x0049c28f AcroSecurityBailOutImpl + 652729
    31  com.adobe.Acrobat.framework             0x0044d1b2 AcroSecurityBailOutImpl + 328924
    32  com.adobe.Acrobat.framework             0x00451d9f AcroSecurityBailOutImpl + 348361
    33  com.adobe.Acrobat.framework             0x00fc5a23 AcroSecurityBailOutImpl + 12356941
    34  com.adobe.Acrobat.framework             0x00fbb71f AcroSecurityBailOutImpl + 12315209
    35  com.adobe.Acrobat.framework             0x00f5b129 AcroSecurityBailOutImpl + 11920467
    36  com.adobe.Acrobat.framework             0x00f5d3bf AcroSecurityBailOutImpl + 11929321
    37  com.adobe.Acrobat.framework             0x00f65c8c AcroSecurityBailOutImpl + 11964342
    38  com.adobe.Acrobat.framework             0x00f6c737 AcroSecurityBailOutImpl + 11991649
    39  com.adobe.Acrobat.framework             0x00f6b6fc AcroSecurityBailOutImpl + 11987494
    40  com.adobe.Acrobat.framework             0x00f6b826 AcroSecurityBailOutImpl + 11987792
    41  com.adobe.Acrobat.framework             0x00f6b87e AcroSecurityBailOutImpl + 11987880
    42  com.adobe.Acrobat.framework             0x00f5b74c AcroSecurityBailOutImpl + 11922038
    43  com.adobe.Acrobat.framework             0x00fc394d AcroSecurityBailOutImpl + 12348535
    44  com.adobe.Acrobat.framework             0x00fc37b5 AcroSecurityBailOutImpl + 12348127
    45  com.adobe.Acrobat.framework             0x004693e6 AcroSecurityBailOutImpl + 444176
    46  com.adobe.Acrobat.framework             0x0047728b AcroSecurityBailOutImpl + 501173
    47  com.adobe.Acrobat.framework             0x004771b3 AcroSecurityBailOutImpl + 500957
    48  com.adobe.Acrobat.framework             0x00483d8f AcroSecurityBailOutImpl + 553145
    49  com.adobe.Acrobat.framework             0x0049c248 AcroSecurityBailOutImpl + 652658
    50  com.adobe.Acrobat.framework             0x004730b9 AcroSecurityBailOutImpl + 484323
    51  com.adobe.Acrobat.framework             0x00417a3f AcroSecurityBailOutImpl + 109929
    52  com.adobe.Acrobat.framework             0x0041215e AcroSecurityBailOutImpl + 87176
    53  com.adobe.Acrobat.framework             0x0040f986 AcroSecurityBailOutImpl + 76976
    54  com.adobe.Acrobat.framework             0x00228ff7 RunAcrobat + 1804235
    55  com.adobe.Acrobat.framework             0x00231922 RunAcrobat + 1839350
    56  com.adobe.Acrobat.framework             0x0044c8d2 AcroSecurityBailOutImpl + 326652
    57  com.adobe.Acrobat.framework             0x0044ca22 AcroSecurityBailOutImpl + 326988
    58  com.adobe.Acrobat.framework             0x00465c02 AcroSecurityBailOutImpl + 429868
    59  com.adobe.Acrobat.framework             0x003e3459 AcroBundleThreadQuitProc + 198040
    60  com.adobe.Acrobat.framework             0x003e52b5 AcroBundleThreadQuitProc + 205812
    61  com.adobe.Acrobat.framework             0x003e57d4 AcroBundleThreadQuitProc + 207123
    62  com.adobe.Acrobat.framework             0x003e56ff AcroBundleThreadQuitProc + 206910
    63  com.adobe.Acrobat.framework             0x0077e3ff AcroSecurityBailOutImpl + 3675945
    64  com.adobe.Acrobat.framework             0x006d875a AcroSecurityBailOutImpl + 2996868
    65  com.adobe.Acrobat.framework             0x006e2e03 AcroSecurityBailOutImpl + 3039533
    66  com.adobe.Acrobat.framework             0x0076904a AcroSecurityBailOutImpl + 3588980
    67  com.adobe.Acrobat.framework             0x009a74ae AcroSecurityBailOutImpl + 5941208
    68  com.adobe.Acrobat.framework             0x00708ae8 AcroSecurityBailOutImpl + 3194386
    69  com.adobe.Acrobat.framework             0x00708c46 AcroSecurityBailOutImpl + 3194736
    70  com.adobe.Acrobat.framework             0x00c34bbe AcroSecurityBailOutImpl + 8617704
    71  com.adobe.Acrobat.framework             0x00c32652 AcroSecurityBailOutImpl + 8608124
    72  com.adobe.Acrobat.framework             0x00d8b4a8 AcroSecurityBailOutImpl + 10020818
    73  com.adobe.Acrobat.framework             0x00c50e63 AcroSecurityBailOutImpl + 8733069
    74  com.adobe.Acrobat.framework             0x00c539ae AcroSecurityBailOutImpl + 8744152
    75  com.adobe.Acrobat.framework             0x0071b340 AcroSecurityBailOutImpl + 3270250
    76  com.adobe.Acrobat.framework             0x0071b19b AcroSecurityBailOutImpl + 3269829
    77  com.adobe.Acrobat.framework             0x008b91af AcroSecurityBailOutImpl + 4965593
    78  com.adobe.Acrobat.framework             0x008b599b AcroSecurityBailOutImpl + 4951237
    79  com.apple.AppKit                        0x980b8a9d -[NSWindow sendEvent:] + 11953
    80  com.apple.AppKit                        0x980548fd -[NSApplication sendEvent:] + 4034
    81  com.apple.AppKit                        0x97e991fc -[NSApplication run] + 823
    82  com.adobe.Acrobat.framework             0x000721e2 RunAcrobat + 6582
    83  com.adobe.Acrobat.framework             0x0007095f RunAcrobat + 307
    84  com.adobe.Acrobat.Pro                   0x00062ed5 main + 91
    85  com.adobe.Acrobat.Pro                   0x00062e71 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98b61992 kevent64 + 10
    1   libdispatch.dylib                       0x9b7c48ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x9b7c4546 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: NSOperationQueue 0x7a078020
    0   libsystem_kernel.dylib                  0x98b60b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x92987fb7 nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x93f07621 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00e6a4c1 AcroSecurityBailOutImpl + 10934251
    4   com.apple.Foundation                    0x93e7534c -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x93e75081 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x93e74fa8 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x9b7c6e11 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x9b7c2396 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x9b7c4457 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x9b7c5722 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x92906dab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x9290acce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96368682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x963688a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x96334cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021af4dc 0x21ad000 + 9436
    7   com.adobe.ACE                           0x021af441 0x21ad000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x963352ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96368682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x963688a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x96334cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021af4dc 0x21ad000 + 9436
    7   com.adobe.ACE                           0x021af441 0x21ad000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x963352ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x96368682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x963688a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x96334cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021af4dc 0x21ad000 + 9436
    7   com.adobe.ACE                           0x021af441 0x21ad000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x963352ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02316f67 0x230b000 + 48999
    4   com.adobe.AGM                           0x02316ea6 0x230b000 + 48806
    5   com.adobe.AGM                           0x02316e44 0x230b000 + 48708
    6   com.adobe.AGM                           0x02316ae4 0x230b000 + 47844
    7   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02316f67 0x230b000 + 48999
    4   com.adobe.AGM                           0x02316ea6 0x230b000 + 48806
    5   com.adobe.AGM                           0x02316e44 0x230b000 + 48708
    6   com.adobe.AGM                           0x02316ae4 0x230b000 + 47844
    7   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x98b607ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x92907d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x92909bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x02316f67 0x230b000 + 48999
    4   com.adobe.AGM                           0x02316ea6 0x230b000 + 48806
    5   com.adobe.AGM                           0x02316e44 0x230b000 + 48708
    6   com.adobe.AGM                           0x02316ae4 0x230b000 + 47844
    7   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x98b5bf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98b5b16c mach_msg + 68
    2   com.apple.CoreFoundation                0x93bd0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x93bd0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x93bcfb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x93bcf97b CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x98050b68 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x98b61976 kevent + 10
    1   com.adobe.Acrobat.framework             0x0147dcd1 AcroSecurityBailOutImpl + 17305595
    2   com.adobe.Acrobat.framework             0x013dcd6f AcroSecurityBailOutImpl + 16646297
    3   com.adobe.Acrobat.framework             0x013d97e5 AcroSecurityBailOutImpl + 16632591
    4   libsystem_pthread.dylib                 0x929055fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x92905485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x9290acf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x98b61046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x92906dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9290acce start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x98b61046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x92906dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9290acce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x98b61046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x92906dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9290acce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x02019598  ecx: 0x00000000  edx: 0x0296af20
      edi: 0x00419f39  esi: 0xbff9b188  ebp: 0xbff9b2c8  esp: 0xbff9b0e0
       ss: 0x00000023  efl: 0x00010286  eip: 0x0041a719   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000090
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0x62000 -    0x62fff +com.adobe.Acrobat.Pro (11.0.06 - 11.0.06) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x69000 -  0x2012fe7 +com.adobe.Acrobat.framework (11.0.06 - 11.0.06) <AC8EA313-1D4C-344E-9595-6F9F4633FE66> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x21ad000 -  0x22fffe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x230b000 -  0x28e0ff7 +com.adobe.AGM (AdobeAGM 4.28.134.1 - 4.28.134.1) <4EE50823-6517-3CEE-8154-05D8AE487BE8> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x294b000 -  0x2969ff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x296f000 -  0x2c6cffb +com.adobe.CoolType (AdobeCoolType 5.11.135.1 - 5.11.135.1) <36BDB79D-825C-3144-88D5-D9A26F756621> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2c9d000 -  0x2cb5ff7  com.apple.ScriptingBridge (1.3.1 - 63) <6A12D8A2-A60D-3304-B3A8-DFE3901CC94A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x458a000 -  0x45afff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x45c4000 -  0x45cfffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x6013000 -  0x607bffa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x8f17000 -  0x9151ffb +com.adobe.AcrobatPlugin.EScript (11.0.06 - 11.0.06) <429B1B7B-B169-367A-A8D7-0C057398695D> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x91c0000 -  0x92a5ff7 +com.adobe.amtlib (amtlib 6.2.0.42 - 6.2.0.42) <979ED254-104A-0377-8FC4-E878DA48F523> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0x9313000 -  0x9339ffb +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <DE33E3BF-669D-3851-8C16-CA1CFCDA315A> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x981e000 -  0x987dff7 +com.adobe.AcrobatPlugin.Accessibility (11.0.06 - 11.0.06) <30117100-20B5-3BE0-802C-94FFFE4ECC5F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Accessibility.acroplugin/Contents/MacOS/Accessibility
    0x98f6000 -  0x9926ff7 +com.adobe.AcrobatPlugin.Updater (11.0.06 - 11.0.06) <26425B33-B5F6-3B5D-ADE4-AAF8045CD26E> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0x995e000 -  0x9998ff3 +com.adobe.ARE (AdobeARE 1.5.02.21195 - 1.5.02.21195) <583E0BDD-2204-3470-BDEB-330B4EE311F3> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x999f000 -  0x99f5ffb +com.adobe.AdobeXMPCore (Adobe XMP Core 5.4 -c 5 - 78.147326) <82EFE343-F643-34AD-94FA-293E338F1F9C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xe585000 -  0xe635fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xe9ee000 -  0xf17dfff +com.adobe.AcrobatPlugin.Comments (11.0.06 - 11.0.06) <23586056-3F1D-35A8-9302-96BF801993CD> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0x8feba000 - 0x8feec417  dyld (239.4) <2E655535-479B-3E48-ADD3-6278819CA38A> /usr/lib/dyld
    0x90008000 - 0x9005dff7  com.apple.QuickLookFramework (5.0 - 622.7) <215A2C74-801A-39AE-85E4-A1E5031CFD38> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9005e000 - 0x90079ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9007a000 - 0x90086ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <B7440CD7-04F8-3558-B5AA-FD48381B14DE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90087000 - 0x903fcff9  com.apple.HIToolbox (2.1 - 697.4) <8CB677B7-43FC-3534-A685-5A5445C95F7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90464000 - 0x9046cff7  libCGCMS.A.dylib (599.20.11) <BE016E3E-3A65-35F7-A9D4-96684ECB39B0> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x9046f000 - 0x90563fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90564000 - 0x9058eff7  libsandbox.1.dylib (278.11) <EB4CD5DF-EEDA-3785-9DD5-90FD423591FD> /usr/lib/libsandbox.1.dylib
    0x90596000 - 0x906a8ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x906a9000 - 0x906e6ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x906e7000 - 0x9077eff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9077f000 - 0x90792fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90793000 - 0x907bdfff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x907be000 - 0x907e6fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x907e7000 - 0x909adffb  libicucore.A.dylib (511.31) <9C25D145-E785-357B-9833-1980A1A738C9> /usr/lib/libicucore.A.dylib
    0x9116f000 - 0x9119fff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x911a0000 - 0x911a9fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x911aa000 - 0x911aafff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x911fa000 - 0x9126dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9126e000 - 0x91385ffb  com.apple.WebKit (9537 - 9537.74.9) <27AE437D-1DBE-34E9-8FE5-E9A5BD5CEBB0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91386000 - 0x91432ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91433000 - 0x91438ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91439000 - 0x916b5fe7  com.apple.QuickTime (7.7.3 - 2826.17) <E8F7EFCE-41FD-3E30-AAA5-5C232317E9D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x916b6000 - 0x916c1ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x916c2000 - 0x916cffff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x916d0000 - 0x916d9ffa  com.apple.CommonAuth (4.0 - 2.0) <7E72F700-6072-3822-8AAF-F14D456F7E7D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9173d000 - 0x9173dfff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9173e000 - 0x9175afff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9175b000 - 0x91786ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x91787000 - 0x91791ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <6CD2D996-2972-30A3-B4AD-BB1B816EFDCC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91792000 - 0x91b57ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91b5a000 - 0x91d06fff  com.apple.QuartzCore (1.8 - 332.3) <00167BF7-E3C4-3AA7-8DA0-466BD4175350> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91d07000 - 0x91d07fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ded000 - 0x91e18ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x91e19000 - 0x91e23ff2  com.apple.AppSandbox (3.0 - 1) <FE0793BE-50CF-3E3B-82C9-71F7A294E10F> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x91e24000 - 0x91ec0fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91ec1000 - 0x91f09fff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x91f0a000 - 0x91f71ffc  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <A02FAF3F-A8F4-3293-9321-AED904B5F069> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x920d4000 - 0x920daffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x920e3000 - 0x92121ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92122000 - 0x9212afff  libsystem_dnssd.dylib (522.90.2) <A73663C9-CE65-3FF3-B41B-686728BBFB00> /usr/lib/system/libsystem_dnssd.dylib
    0x9212b000 - 0x9212ffff  libheimdal-asn1.dylib (323.15) <2C5FF5E6-F253-387E-959A-B1926DD99B31> /usr/lib/libheimdal-asn1.dylib
    0x92130000 - 0x9215eff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x92190000 - 0x92192ffb  libRadiance.dylib (1042) <22E517A8-4725-3175-B5D1-5573FBE780B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x92193000 - 0x92197ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x92198000 - 0x92221fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x92222000 - 0x9223fffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x92240000 - 0x92244ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x92245000 - 0x92246fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x92247000 - 0x92276ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x92277000 - 0x923cdff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9247a000 - 0x9249efff  libJPEG.dylib (1042) <AEC2D16E-12E6-3D85-933E-6728EBA802A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9249f000 - 0x924f0ffb  com.apple.CoreMedia (1.0 - 1273.49) <26F891C5-DF9F-3A2C-995A-827595F03CF2> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x924f1000 - 0x924f4ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x924f5000 - 0x92546ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x92547000 - 0x92654ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <677F8044-E8B4-34A8-B7D9-575D7CEA019E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x92655000 - 0x92655fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x92656000 - 0x92662ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x92663000 - 0x92753ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x92754000 - 0x92757ff3  com.apple.AppleSystemInfo (3.0 - 3.0) <4586B503-A0A8-3654-AA48-D2F9FA0188CB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x92758000 - 0x9275dff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x9275e000 - 0x92768ff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92769000 - 0x9276bff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x92792000 - 0x92878ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92879000 - 0x9287dffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9287e000 - 0x928d3ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x928d4000 - 0x928d7ff7  libdyld.dylib (239.4) <F4604F64-945B-3871-8F26-E9C55488BC27> /usr/lib/system/libdyld.dylib
    0x92904000 - 0x9290bffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x9290c000 - 0x9299eff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x9299f000 - 0x929a0fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x929a1000 - 0x929afff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x929b3000 - 0x929bbfff  liblaunch.dylib (842.90.1) <B259692D-D60B-3BCE-9E03-32F457CB5046> /usr/lib/system/liblaunch.dylib
    0x929bc000 - 0x92a11ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92a12000 - 0x92a14fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92a15000 - 0x92ebcfe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92ebd000 - 0x92f8bff7  com.apple.backup.framework (1.5.2 - 1.5.2) <BE2F37D3-F610-30EE-B106-44B5DAE35603> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92f8c000 - 0x9309cfed  com.apple.MediaControlSender (2.0 - 200.34.4) <48A88743-4EB7-364B-968F-43C17FFCEB97> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x9309d000 - 0x9309ffff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x930a0000 - 0x930e0ff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x930e1000 - 0x93136fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x93137000 - 0x931feff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x93b5a000 - 0x93d5cfff  com.apple.CoreFoundation (6.9 - 855.14) <756998B3-F507-3474-AFB2-769FC9CE5263> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93d5d000 - 0x93df5ff7  com.apple.Metadata (10.7.0 - 800.23) <6590358F-9677-3257-8780-FF0462852EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93df6000 - 0x93e6cff3  com.apple.securityfoundation (6.0 - 55122.1) <18024F59-DE2B-3FC5-A29F-8F2B27349685> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93e6d000 - 0x94198ffe  com.apple.Foundation (6.9 - 1056.13) <C33A8984-7E97-36BE-B842-EE4FE35F53EA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94199000 - 0x941e5ff7  libcups.2.dylib (372.2) <ED7CEA7C-9FD7-34E0-B960-268BD6AFA056> /usr/lib/libcups.2.dylib
    0x941e6000 - 0x941effff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x941f0000 - 0x94281fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94282000 - 0x9435dff7  com.apple.LaunchServices (572.26 - 572.26) <5915A9AC-7928-30B1-9329-94048ADE81D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9435e000 - 0x94495fff  com.apple.desktopservices (1.8.2 - 1.8.2) <CCE6EB2B-1799-349A-8F13-003077CDFF31> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94496000 - 0x94497fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x94498000 - 0x944d4ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x944d5000 - 0x9453fff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94540000 - 0x94938fff  com.apple.CoreGraphics (1.600.0 - 599.20.11) <82BA834B-C3D1-39CC-B9C3-5C4C976A3BCD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x94939000 - 0x94948fff  libGL.dylib (9.6) <58C42A46-27D0-3228-B3C1-EC3923D49BAD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94949000 - 0x94c6fffb  com.apple.JavaScriptCore (9537 - 9537.74.4) <1AE99257-8FDA-3A6D-8463-D0BD07D77762> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94c70000 - 0x94c87ff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x95012000 - 0x95016ffa  libGIF.dylib (1042) <A28C9045-5ACD-35FE-9499-E98B9C5A20D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9504b000 - 0x95088ffb  libGLImage.dylib (9.6) <EAC640A8-CD71-3AB2-9918-21CACCBCCB0D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95091000 - 0x950bcff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x950bd000 - 0x950dcff9  com.apple.framework.Apple80211 (9.3.1 - 931.58) <120A58B6-9DC7-3001-9735-C08661A3ECC0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x950dd000 - 0x950ebff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x950ec000 - 0x950f3ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x950f4000 - 0x950fcffe  libGFXShared.dylib (9.6) <D75FE2D7-0CF9-351E-9EE3-893F2B2114BE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x950fd000 - 0x9515bffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9515c000 - 0x95163ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9516f000 - 0x951c2ff3  com.apple.CoreMediaIO (407.0 - 4561) <A756270D-CA9A-36CB-B698-3D9EEAB9C50E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x951c3000 - 0x952afff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x952b0000 - 0x952b0fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952bc000 - 0x956e1fe3  com.apple.VideoToolbox (1.0 - 1273.49) <A581EEA0-25DF-386C-904D-26E51C3ED640> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x96273000 - 0x9629afff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x962a9000 - 0x965aaffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x965ab000 - 0x965c0ff3  com.apple.AppContainer (3.0 - 1) <017FED4F-AD6E-3A56-806B-A2D33E69EFF9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x965c1000 - 0x965c1fff  libffi.dylib (18.1) <7A14A976-B202-3074-8B0D-FB718DF172DA> /usr/lib/libffi.dylib
    0x965c2000 - 0x965cfff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x965d0000 - 0x968bafd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x968bb000 - 0x96995ff6  com.apple.QuickLookUIFramework (5.0 - 622.7) <6F9C5661-0D7D-3B54-AC34-55E1A24EC05A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96996000 - 0x969ccfff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x969cd000 - 0x969ffffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96aac000 - 0x96d2bff7  com.apple.imageKit (2.5 - 774) <53C3FA27-3830-3A15-9707-AF7369119866> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96d93000 - 0x96dabff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x96dac000 - 0x96e21ffb  com.apple.framework.IOKit (2.0.1 - 907.90.2) <AFF50D8E-7D1D-38B9-A77E-DF0C0C4C97E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e22000 - 0x97256ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x97257000 - 0x972dcffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x972dd000 - 0x97301ff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x97361000 - 0x97361fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97362000 - 0x97363ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x974f5000 - 0x97500ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x97501000 - 0x97503fff  libsystem_configuration.dylib (596.13) <57095AFE-3FF1-3F42-A43E-ED679409B827> /usr/lib/system/libsystem_configuration.dylib
    0x97504000 - 0x97504fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97505000 - 0x9750bff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x9750c000 - 0x975f7ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x975f8000 - 0x97891ff3  com.apple.RawCamera.bundle (5.04 - 736) <B9CA1B5A-6FA9-3140-BE9F-27A6F3E620B9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x97892000 - 0x978a4fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x978a5000 - 0x97e12fff  com.apple.QuartzComposer (5.1 - 319) <77419C8D-B822-3649-BBB4-2CF0F0993E9A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97e13000 - 0x97e7eff9  com.apple.Heimdal (4.0 - 2.0) <D26F2F4D-5FD4-3FBF-A28C-1E8215C5ACA1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x97e7f000 - 0x98a9dff3  com.apple.AppKit (6.9 - 1265.19) <07125263-9E97-3A47-BBD3-6FB462910565> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98abf000 - 0x98ae4ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x98ae5000 - 0x98af3fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x98af4000 - 0x98b48fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98b49000 - 0x98b66ff4  libsystem_kernel.dylib (2422.90.20) <C823B3BD-F818-3D7A-9FB7-9BDE00E2BEA1> /usr/lib/system/libsystem_kernel.dylib
    0x98b67000 - 0x98b6bffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x98b6c000 - 0x98bbcfff  com.apple.opencl (2.3.59 - 2.3.59) <4BEFE83C-1C89-3BB6-A445-9BE680C84FB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98d3c000 - 0x98d71ffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x98d72000 - 0x98d84fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x98d85000 - 0x98d8ffff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x98d90000 - 0x98ffeff6  com.apple.security (7.0 - 55471.14) <7915499B-66CF-39FE-B53C-A11C7775314D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98fff000 - 0x99030ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x99031000 - 0x99034ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x99035000 - 0x9904fff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x99050000 - 0x9905eff3  com.apple.opengl (9.6.0 - 9.6.0) <63941A8D-AACC-3C71-BE8C-4DAA913A1439> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x99073000 - 0x99f0eff3  com.apple.WebCore (9537 - 9537.74.11) <2D24AE4B-EE47-3DC2-82A1-9EEBD89E2140> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x99f0f000 - 0x9a204ff8  com.apple.CoreImage (9.2.7) <AD2199E4-B18B-3CFC-94C4-B1B8D20CFB8B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9a205000 - 0x9a261ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9a262000 - 0x9a2d7ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9a2d8000 - 0x9a4804af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9a481000 - 0x9a491ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x9a4bc000 - 0x9a5bafff  libJP2.dylib (1042) <795B3209-2382-3F31-AEF7-588E4BCAAF06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9a786000 - 0x9a787fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9a78a000 - 0x9a8b7ff9  com.apple.avfoundation (2.0 - 651.12) <5D46DA01-3CFB-375E-B134-8625EA3466A7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9a8b8000 - 0x9a911ffa  libTIFF.dylib (1042) <0EED8A3F-A7C6-3FE2-8F67-55813D5E543E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9a912000 - 0x9a913ffa  libsystem_sandbox.dylib (278.11) <E8BE1DF7-2F3D-3202-B807-A85C99220AB6> /usr/lib/system/libsystem_sandbox.dylib
    0x9a914000 - 0x9a914ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x9a915000 - 0x9a968fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9a969000 - 0x9a982fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9a983000 - 0x9a9d3ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9a9d7000 - 0x9a9f2ff6  libPng.dylib (1042) <1ADB59C7-343E-30CA-A8D2-93540C4A2E7D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9a9f3000 - 0x9a9f6ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9a9f7000 - 0x9a9faffa  libCGXType.A.dylib (599.20.11) <8824B66A-D235-3163-808D-8B98F69304CD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x9a9fb000 - 0x9aa64fff  com.apple.SystemConfiguration (1.13 - 1.13) <144317BE-7AE5-3B8D-90CD-62DCDE9399E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9aa65000 - 0x9aa6afff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x9aa9e000 - 0x9ad02ff7  com.apple.CoreData (107 - 481.01) <85EE4DFF-3A61-3D3B-A818-524F0A427A4D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9ad03000 - 0x9ad08ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x9ad09000 - 0x9ad0cffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x9ad0d000 - 0x9ad8dff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9ad8e000 - 0x9ad92ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9ad93000 - 0x9ae32ff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x9ae33000 - 0x9ae4bfff  com.apple.CFOpenDirectory (10.9 - 173.90.1) <13B70F7C-9A4D-3CCA-AEB8-3958F5B6167E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9ae4c000 - 0x9ae9bff1  com.apple.HIServices (1.22 - 467.2) <F47161AA-E19F-3357-862F-5B4C8DA97975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9ae9c000 - 0x9b00fffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <AAF3AB26-3BAD-3E5F-8192-9805B7AA1CB1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9b010000 - 0x9b020ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9b021000 - 0x9b023ffe  libCVMSPluginSupport.dylib (9.6) <DF20981B-DAD0-3125-8089-C96CB3226888> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9b024000 - 0x9b030fff  libkxld.dylib (2422.90.20) <28EAB745-E690-34E7-B9F0-BD05E507173B> /usr/lib/system/libkxld.dylib
    0x9b031000 - 0x9b1a1fff  com.apple.QTKit (7.7.3 - 2826.17) <962F9FB1-7E46-3F93-9BAF-E05E7CF8D36D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9b1b9000 - 0x9b1c2fff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x9b1c3000 - 0x9b1fbfff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9b1fc000 - 0x9b23efff  libGLU.dylib (9.6) <6A7E248D-3936-3B0D-9BF2-E4F0D2FE5306> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9b271000 - 0x9b3d3ff3  com.apple.CFNetwork (673.2.1 - 673.2.1) <6EA58F7C-35E9-37BF-A6B4-7DDB83A6B432> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9b3d4000 - 0x9b3deff7  com.apple.sp

    Try running this program and then copy and paste the output in a reply. Please use copy and paste as screen shots can be hard to read.
    Etrecheck – System Information

  • Safari crashing when printing PDF with Adobe Reader

    We have a bunch of Macs running 10.3.9 with Adobe Reader installed.
    Almost all of the eMacs exhibiting the problem are crashing when trying to print a PDF ducument the second time.
    The process is, I click on a link in Safari for a PDF file, there is a pause as the Reader plug-in loads then the PDF file displays. I click the print icon that's part of the PDF plug-in and the first file prints. I then go to a second file, click on the link, the file loads in the browser, I click on the print icon, there is a pause and then spinning beach ball. Then Safari crashes. Every time. On every machine. On every account.
    Not sure what gives or how to remedy. HELP!!!
    Crash log is as follows:
    Host Name: eMac15.local
    Date/Time: 2006-02-16 19:45:40 -0500
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Version: 1.3.2 (312.5)
    PID: 509
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x901c2b10 CFArrayGetCount + 0x34
    1 ...p.print.pde.arm236.Advanced 0x04ea03d8 FindPPDKeyPairsMatch + 0x24
    2 ...p.print.pde.arm236.Advanced 0x04e9e930 Sync + 0x418
    3 ...p.print.pde.arm236.Advanced 0x04e9dea4 Initialize + 0xc68
    4 ...apple.print.framework.Print 0x919a5954 _ZN8PDEPanel10InitializeEP20OpaquePMPrintSessionP16OpaqueControlRef + 0xe0
    5 ...apple.print.framework.Print 0x919a23fc ZN21PJCPrintingDialogBase14AddPanelToMenuEP8PJCPanelPK10_CFStringP20OpaquePMPrintSession + 0xe4
    6 ...apple.print.framework.Print 0x9199b9b8 _ZN15PJCPrintDialogs14AddPMPDEToMenuEP8PJCPanelP20OpaquePMPrintSession + 0x9c
    7 ...apple.print.framework.Print 0x919a28bc _ZN21PJCPrintingDialogBase15UpdatePanelMenuEP20OpaquePMPrintSession + 0x310
    8 ...apple.print.framework.Print 0x91975a40 _ZN21PJCPrintingDialogBase10LoadPanelsEP20OpaquePMPrintSession + 0x10c
    9 ...apple.print.framework.Print 0x91978fb0 _ZN15PJCPrintDialogs10LoadPanelsEP20OpaquePMPrintSession + 0x20
    10 ...apple.print.framework.Print 0x919725c8 _ZN15PJCPrintDialogs13DoPrintDialogEP20OpaquePMPrintSessionP21OpaquePMPrintSett ingsP18OpaquePMPageFormat + 0x2e0
    11 ...apple.print.framework.Print 0x91985590 PJCPrintDialog + 0xa0
    12 ...apple.print.framework.Print 0x919873fc PMSessionPrintDialog + 0xcc
    13 com.adobe.Acrobat.framework 0x25291674 CopiesPagesPDE_Terminate + 0x44c4
    14 com.adobe.Acrobat.framework 0x2528aec0 0x25000000 + 0x28aec0
    15 com.adobe.Acrobat.framework 0x2528b3e4 0x25000000 + 0x28b3e4
    16 com.adobe.Acrobat.framework 0x2528b9f0 0x25000000 + 0x28b9f0
    17 com.adobe.Acrobat.framework 0x250368bc 0x25000000 + 0x368bc
    18 com.adobe.AcrobatPlugin.eBook 0x2bb2492c main + 0x61504
    19 com.adobe.Acrobat.framework 0x250362e8 0x25000000 + 0x362e8
    20 com.adobe.Acrobat.framework 0x25036368 0x25000000 + 0x36368
    21 com.adobe.Acrobat.framework 0x2503e3f4 0x25000000 + 0x3e3f4
    22 com.adobe.Acrobat.framework 0x25099a5c 0x25000000 + 0x99a5c
    23 com.adobe.Acrobat.framework 0x252b2160 CopiesPagesPDE_Terminate + 0x24fb0
    24 com.adobe.Acrobat.framework 0x252b1270 CopiesPagesPDE_Terminate + 0x240c0
    25 com.adobe.Acrobat.framework 0x25172b24 0x25000000 + 0x172b24
    26 com.adobe.Acrobat.framework 0x25241bfc 0x25000000 + 0x241bfc
    27 com.adobe.Acrobat.framework 0x250c72a8 0x25000000 + 0xc72a8
    28 com.adobe.Acrobat.framework 0x250c7198 0x25000000 + 0xc7198
    29 com.adobe.Acrobat.framework 0x2514ecdc 0x25000000 + 0x14ecdc
    30 com.adobe.Acrobat.framework 0x2514f954 0x25000000 + 0x14f954
    31 com.adobe.Acrobat.framework 0x2514fbcc 0x25000000 + 0x14fbcc
    32 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    33 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    34 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    35 com.apple.HIToolbox 0x9294bcfc _ZN6HIView5ClickEP14OpaqueEventRef + 0x10c
    36 com.apple.HIToolbox 0x9299a280 HIViewClick + 0x38
    37 com.apple.HIToolbox 0x92967960 HandleClickAsHIView + 0x9c
    38 com.apple.HIToolbox 0x929a59cc HandleClickInContent + 0x150
    39 com.apple.HIToolbox 0x928b11a0 HandleWindowEvent + 0x638
    40 com.apple.HIToolbox 0x928d8c04 StandardWindowEventHandler + 0xb4
    41 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    42 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    43 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    44 com.apple.AppKit 0x93038444 SendEventFromMouseDown + 0x284
    45 com.apple.AppKit 0x93038150 -[NSCarbonWindow handleMouseDownEvent:at:inPart:withMods:] + 0x3d4
    46 com.apple.AppKit 0x93037b28 NSCarbonWindowHandleEvent + 0xd0
    47 com.apple.HIToolbox 0x92882e50 DispatchEventToHandlers + 0x150
    48 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    49 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    50 com.apple.HIToolbox 0x928a3cd4 _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 0x144
    51 com.apple.HIToolbox 0x928995f0 _Z16HandleMouseEventP14OpaqueEventRef + 0x170
    52 com.apple.HIToolbox 0x92893ad0 _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefP v + 0x1e8
    53 com.apple.HIToolbox 0x92882f0c DispatchEventToHandlers + 0x20c
    54 com.apple.HIToolbox 0x928830c4 SendEventToEventTargetInternal + 0x174
    55 com.apple.HIToolbox 0x92895530 SendEventToEventTarget + 0x28
    56 com.apple.AppKit 0x93037cd4 -[NSCarbonWindow sendEvent:] + 0x84
    57 com.apple.AppKit 0x92ea4ca0 -[NSApplication sendEvent:] + 0xebc
    58 com.apple.Safari 0x0001d4ac 0x1000 + 0x1c4ac
    59 com.apple.AppKit 0x92ead0d0 -[NSApplication run] + 0x240
    60 com.apple.AppKit 0x92f697bc NSApplicationMain + 0x1d0
    61 com.apple.Safari 0x00007fc4 0x1000 + 0x6fc4
    62 com.apple.Safari 0x00054944 0x1000 + 0x53944
    Thread 1:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.WebKit 0x960a5124 +[WebFileDatabase _syncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a98054 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 0x20c
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d1b8 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45dbc -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a98594 +[NSURLCache _diskCacheSyncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.CoreFoundation 0x901c69f8 __CFSocketManager + 0x1fc
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x9001a72c syscall + 0xc
    1 ...ple.CoreServices.OSServices 0x9064fa34 BSD_waitevent + 0x2c
    2 ...ple.CoreServices.OSServices 0x9064c410 CarbonSelectThreadFunc + 0xb0
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 ...ple.CoreServices.OSServices 0x90656c00 CarbonOperationThreadFunc + 0x50
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 ...ple.CoreServices.CarbonCore 0x902c3064 SwitchContexts + 0x60
    3 ...ple.CoreServices.CarbonCore 0x902b882c YieldToThread + 0x104
    4 ...ple.CoreServices.CarbonCore 0x902c5d78 SetThreadState + 0xc0
    5 ...ple.CoreServices.CarbonCore 0x90301490 SetThreadStateEndCritical + 0x90
    6 com.adobe.AcrobatPlugin.eBook 0x2bac4aac main + 0x1684
    7 com.adobe.AcrobatPlugin.eBook 0x2bac49ec main + 0x15c4
    8 com.adobe.AcrobatPlugin.eBook 0x2bac4954 main + 0x152c
    9 com.adobe.AcrobatPlugin.eBook 0x2bac48e8 main + 0x14c0
    10 com.adobe.AcrobatPlugin.eBook 0x2bac486c main + 0x1444
    11 ...ple.CoreServices.CarbonCore 0x9030c0a8 InvokeThreadEntryUPP + 0x18
    12 ...ple.CoreServices.CarbonCore 0x902d6d98 CooperativeThread + 0xdc
    13 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 8:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 9:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 10:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ad24 dyldstub* + 0x4604f80
    4 com.adobe.acrobat.pdfviewer 0x0462c440 dyldstub* + 0x460669c
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 11:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ac70 dyldstub* + 0x4604ecc
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 12:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ab9c dyldstub* + 0x4604df8
    4 com.adobe.acrobat.pdfviewer 0x0462c354 dyldstub* + 0x46065b0
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 13:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x90001d90 pthreadmutexlock + 0x1c0
    2 com.apple.Foundation 0x90a223b4 -[NSLock lock] + 0x1c
    3 com.adobe.acrobat.pdfviewer 0x0462ad24 dyldstub* + 0x4604f80
    4 com.adobe.acrobat.pdfviewer 0x0462c440 dyldstub* + 0x460669c
    5 com.apple.Foundation 0x90a6a510 forkThreadForFunction + 0x6c
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 14:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 com.apple.CoreFoundation 0x9022f32c CFRunLoopRun + 0x34
    5 ...dobe.AcrobatPlugin.Comments 0x2b52617c main + 0x1543d8
    6 ...dobe.AcrobatPlugin.Comments 0x2b526aa0 main + 0x154cfc
    7 ...ple.CoreServices.CarbonCore 0x902f6b90 PrivateMPEntryPoint + 0x4c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 15:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 ...ple.CoreServices.OSServices 0x90662a50 CarbonInetOperThreadFunc + 0x50
    3 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 16:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c15e8 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5d74 CFRunLoopRunSpecific + 0x148
    4 ...apple.print.framework.Print 0x91978eec _ZN12LookupThread3runEv + 0x84
    5 ...apple.print.framework.Print 0x9197f12c _ZN12LookupThread3RunEPv + 0x10
    6 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x901c2b10 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44022284 xer: 0x00000000 lr: 0x901c2ae4 ctr: 0x901c2adc
    r0: 0x00300f80 r1: 0xbfffb4c0 r2: 0xa01c01f4 r3: 0x00000000
    r4: 0x05fa4270 r5: 0x06165b30 r6: 0x00000000 r7: 0x6f646500
    r8: 0x6f646500 r9: 0x00000010 r10: 0x6e6363ff r11: 0x04ea932c
    r12: 0x901c2adc r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000002 r21: 0x00000000 r22: 0x055d4430 r23: 0x00000000
    r24: 0xffffffff r25: 0x06165b30 r26: 0x00000000 r27: 0x05fa4270
    r28: 0x06178d80 r29: 0x00000000 r30: 0x00000001 r31: 0x901c2ae4
    Binary Images Description:
    0x1000 - 0xcdfff com.apple.Safari 1.3.2 (312.5) /Applications/Safari.app/Contents/MacOS/Safari
    0x46e000 - 0x4a8fff com.adobe.ESD.AUM3framework 3.0.0.40 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Updater.acroplugin/Frameworks/ESDUpdate.framework/ESD Update
    0x1715000 - 0x171dfff com.apple.print.converter.plugin 3.0 /System/Library/Printers/CVs/Converter.plugin/Contents/MacOS/Converter
    0x3f82000 - 0x3f84fff com.apple.PDFImporter 1.3.1 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x4223000 - 0x4224fff com.adobe.Acrobat.print.pde.CopiesPages 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/MacOS/CopiesPages.plugin/Contents/MacOS/CopiesPages
    0x4622000 - 0x464cfff com.adobe.acrobat.pdfviewer 7.0.0 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0x466b000 - 0x4675fff ??? /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/AdobeEula.framework/AdobeEula
    0x46a1000 - 0x46d7fff com.adobe.selfhealer AdobeSelfHealing version 2.0 (2.0.0f4) /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealing
    0x4df9000 - 0x4dfbfff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4e9c000 - 0x4ea8fff jp.co.sharp.print.pde.arm236.Advanced 1.0 /Library/Printers/PPD Plugins/SharpARM236AD.plugin/Contents/MacOS/SharpARM236AD
    0x4ec2000 - 0x4ecefff jp.co.sharp.print.pde.arm236.JobControl 1.0 /Library/Printers/PPD Plugins/SharpARM236JC.plugin/Contents/MacOS/SharpARM236JC
    0x5bf9000 - 0x5c05fff jp.co.sharp.print.pde.arm236.Watermarks 1.0 /Library/Printers/PPD Plugins/SharpARM236WM.plugin/Contents/MacOS/SharpARM236WM
    0x6005000 - 0x608dfff ??? /Applications/Safari.app/Contents/Frameworks/Onix.Framework/Onix
    0x18017000 - 0x1803bfff com.adobe.AcrobatPlugin.ImageViewer 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/ImageViewer.acroplugin/ImageViewer
    0x182cb000 - 0x1835efff AdobeJP2K /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versi ons/A/AdobeJP2K
    0x185d6000 - 0x185fafff AdobeAXE8SharedExpat /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.fram ework/Versions/A/AdobeAXE8SharedExpat
    0x18631000 - 0x18656fff AdobeAXE16SharedExpat /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXE16SharedExpat.fra mework/Versions/A/AdobeAXE16SharedExpat
    0x18745000 - 0x187f2fff AdobeAXSLE /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAXSLE.framework/Vers ions/A/AdobeAXSLE
    0x188eb000 - 0x18928fff MSL /Applications/Safari.app/Contents/MacOS/../Frameworks/MSL.framework/Versions/A/ MSL
    0x25000000 - 0x25813fff com.adobe.Acrobat.framework Acrobat version 7.0.0 (7.0.0) /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x271bd000 - 0x27265fff AdobeACE /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versio ns/A/AdobeACE
    0x27318000 - 0x275b3fff AdobeAGM /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versio ns/A/AdobeAGM
    0x27bf0000 - 0x27c17fff AdobeBIB /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versio ns/A/AdobeBIB
    0x27cc6000 - 0x27eebfff AdobeCoolType /Applications/Safari.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/V ersions/A/AdobeCoolType
    0x2a11a000 - 0x2a157fff com.adobe.AcrobatPlugin.Accessibility 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Accessibility.acroplugin/Accessibility
    0x2a1a3000 - 0x2a786fff com.adobe.AcrobatPlugin.AcroForm 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/AcroForm.acroplugin/AcroForm
    0x2b252000 - 0x2b2bffff com.adobe.AcrobatPlugin.Checkers 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Checkers.acroplugin/Checkers
    0x2b3d0000 - 0x2b58cfff com.adobe.AcrobatPlugin.Comments 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Comments.acroplugin/Comments
    0x2b816000 - 0x2b92ffff com.adobe.AcrobatPlugin.DigSig 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/DigSig.acroplugin/DigSig
    0x2bac1000 - 0x2bbb4fff com.adobe.AcrobatPlugin.eBook 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/eBook.acroplugin/eBook
    0x2bd8f000 - 0x2bdacfff com.adobe.AcrobatPlugin.EFS 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EFS.acroplugin/EFS
    0x2bdde000 - 0x2bef2fff com.adobe.AcrobatPlugin.EScript 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EScript.acroplugin/EScript
    0x2c041000 - 0x2c059fff com.adobe.AcrobatPlugin.EWH 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/EWH.acroplugin/EWH
    0x2c07f000 - 0x2c085fff com.adobe.AcrobatPlugin.HLS 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/HLS.acroplugin/HLS
    0x2d07d000 - 0x2d080fff com.adobe.AcrobatPlugin.LegalPDF 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/LegalPDF.acroplugin/LegalPDF
    0x2d088000 - 0x2d2b0fff com.adobe.AcrobatPlugin.MakeAccessible 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/MakeAccessible.acroplugin/MakeAccessible
    0x2d711000 - 0x2d85dfff com.adobe.AcrobatPlugin.Multimedia 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Multimedia.acroplugin/Multimedia
    0x2dc75000 - 0x2dce8fff com.adobe.AcrobatPlugin.PDDom 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PDDom.acroplugin/PDDom
    0x2dd9a000 - 0x2de09fff com.adobe.AcrobatPlugin.Template 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PictureTasks.acroplugin/PictureTasks
    0x2debe000 - 0x2e24dfff com.adobe.AcrobatPlugin.PPKLite 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/PPKLite.acroplugin/PPKLite
    0x2e841000 - 0x2e87ffff com.adobe.AcrobatPlugin.Reflow 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Reflow.acroplugin/Reflow
    0x2e8fc000 - 0x2e93bfff com.adobe.AcrobatPlugin.SaveAsRTF 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SaveAsRTF.acroplugin/SaveAsRTF
    0x2ea95000 - 0x2eacffff com.adobe.AcrobatPlugin.Search 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Search.acroplugin/Search
    0x2eb1e000 - 0x2eb2ffff com.adobe.AcrobatPlugin.SendMail 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SendMail.acroplugin/SendMail
    0x2eb50000 - 0x2ec08fff com.adobe.AcrobatPlugin.SOAP 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/SOAP.acroplugin/SOAP
    0x2ed14000 - 0x2ed60fff com.adobe.AcrobatPlugin.Spelling 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Spelling.acroplugin/Spelling
    0x2f368000 - 0x2f3b1fff com.adobe.AcrobatPlugin.Updater 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/Updater.acroplugin/Updater
    0x2f4c0000 - 0x2f4defff com.adobe.AcrobatPlugin.WebLink 7.0.0 /Applications/Adobe Reader 7.0/Adobe Reader 7.0.app/Contents/Plug-ins/WebLink.acroplugin/WebLink
    0x806c0000 - 0x806e9fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x81efc000 - 0x81f08fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x81f20000 - 0x81f23fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x8281e000 - 0x831ddfff com.apple.QuickTimeComponents.component 7.0.4 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x88999000 - 0x88c47fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x8b3e2000 - 0x8b3f2fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x8b510000 - 0x8b532fff libCFilter.A.dylib /System/Library//Frameworks/ApplicationServices.framework/Versions/A/Frameworks /CoreGraphics.framework/Resources/libCFilter.A.dylib
    0x8be40000 - 0x8be54fff libPPDLib.dylib /System/Library/Printers/Libraries/libPPDLib.dylib
    0x8be80000 - 0x8be87fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x8beb0000 - 0x8beeffff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8bf50000 - 0x8bf76fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    0x8ee80000 - 0x8ee81fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x8eea0000 - 0x8eeb6fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x8eee0000 - 0x8ef00fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x8ef90000 - 0x8ef9efff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x8efc0000 - 0x8efd3fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8fd50000 - 0x8fd50fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026dfff com.apple.CoreFoundation 6.3.8 (299.36) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x90731fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x909fbfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90a03000 - 0x90a0ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.7 (500.59) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91133fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91143000 - 0x91143fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91242000 - 0x91258fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91320000 - 0x91337fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x914c0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x914e0000 - 0x91549fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x915e0000 - 0x91699fff com.apple.QD 3.4.70 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9194f000 - 0x9194ffff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b08fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b90000 - 0x91baafff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91bd0000 - 0x91bdffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x920f0000 - 0x92116fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92647000 - 0x926aefff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.9 (743.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93a50000 - 0x93a54fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a56000 - 0x93a66fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93aa0000 - 0x93b87fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x940c0000 - 0x940fcfff com.apple.LDAPFramework 1.3.4 (37.4.2) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94120000 - 0x94138fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94192000 - 0x9419bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x941f8000 - 0x94201fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94204000 - 0x9420cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x94580000 - 0x94590fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x945c0000 - 0x945d0fff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x945ee000 - 0x9460bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94658000 - 0x94672fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x946e0000 - 0x9473ffff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9477d000 - 0x9478dfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x947b0000 - 0x947b1fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948b0000 - 0x948e1fff com.apple.securityinterface 1.0 (39) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x949e0000 - 0x949effff com.apple.DSObjCWrappers.Framework 1.0.1 (1.0) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ea0000 - 0x954a6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95500000 - 0x957d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x958e0000 - 0x95900fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95a08000 - 0x95ac0fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95b50000 - 0x95c32fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95f30000 - 0x9601efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96092000 - 0x9612afff com.apple.WebKit 312.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x961b0000 - 0x96292fff com.apple.JavaScriptCore 312.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x96980000 - 0x96a48fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97900000 - 0x97bf1fff com.apple.WebCore 315.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    Have you tried re-installing the Adobe internet plugin?

  • Help with PDF Generation

    We are currently evaluating LiveCycle ES to potentially convert numerous Pro/E 3D drawings to PDF. Unfortunately, I am having a difficult time finding the proper resources to help achieve this. What we would like the process to do is:
    1) Take a Pro/E file, and apply a forms template
    2) Add an "Exploded View" animation for the 3D drawing (such as what can be generated by Adobe 3D Reviewer)
    3) Expose the "Bill of Material" to the template fields
    4) Save the generated PDF to a defined folder
    5) Perform these steps for a "watched folder" for when new drawings are submitted
    In LiveCycle Workbench, I have been able to read a Pro/E file and apply our template. But I cannot find information on how to achieve the other steps.
    Could somebody please point me to specific resources and/or samples that would help with this? Any help would be very appreciated.
    Thanks!

    Thanks for your reply.
    If I'm understanding you correctly, option 1 probably won't work for this situation, because we're working with existing ProE drawings -- hundreds, if not thousands, of them. So, they don't want to go back and add the exploded view. Unless you're saying that we could use javaScript to generate the exploded view and BOM from the ProE files?
    Do you know of an example (or other resource) that describes either of the options you outlined? Could you explain a little more?
    Thanks again!

Maybe you are looking for

  • Smartforms - how to change the with of a column in main

    Hi all, How do I go about to make one column in the main wider so that the whole column title is fit on one line? E.g.: how it is:     tax amou nt how I want it to be: % tax amount Thanks in advance for all the helpful answers! BR, Armin

  • Copy account determination (OB_GLACC01) and create G/L accounts

    Hi, In customzing you can create G/L accounts for new company codes with reference. There is also an option "Copy account determination". What is exactly copied when you use this option, and how can I check it? Second question In customizing you can

  • Pages Unable to Open

    Hello everyone, I created a document in pages and I saved it.  When I go to finder to open the document a message comes down, The file "Untitled.pages" couldn't be opened.  Can anyone tell me how to fix this or what I am doing wrong?  Thanks.

  • Alternate content for Flash area

      Hi.  Could someone give me the simplist, yet working method to display alternate content if Flash isn't installed?   What I have is a website with a Flash header that has the navigation buttons as part of the Flash animation.   What I TRIED to do i

  • Grey out filter drop down menu

    Question: Why some of my filters in filter drop down menu such as filter galery, artistic, brush stroke, distort, pixelate, sketch and texture all grey out? I have my file(picture open). How do i bring back? thanks