Enable Validate Report in FDM to Essbase

Hi,
Can anybody help me to enable the validate report when loading data into Essbase?
I now only get an error when a row is not in the mapping. But for non- existing members in Essbase the error appears at the export step. I would like to see a report (like when loading to HFM) at the validat step showing which items are not in the Outline.
Thanks in advance,
Marc

Marc,
The functionality currently requested does not exist. It is created as an enhacement for a future release of FDM.
This is not a product defect.
Thank you.

Similar Messages

  • How to enable Validate and Export in FDM task

    Hi everyone
    I am working with setting up an FDM Task to Import, Validate and Export data to HFM.
    The Task is able to import data to FDM, but I cannot make the process start the Validate and Export functions. If I do the process manually, then data is imported to HFM succesfully.
    Am I missing something in the scripts or do I need to enable some feature in FDM?
    Action Script:
    Sub BatchLoadLedgerTrans()
    'Declare Local Variables
    Dim lngProcessLevel
    Dim strDelimiter
    Dim blnAutoMapCorrect
    'Initialize Variables
    lngProcessLevel = 50   'Import
    strDelimiter = "_"
    blnAutoMapCorrect = 0
    'Create the file collection
    Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter), FileName)
    'Execute a Standard Serial batch
    BATCHENG.mFileCollectionProcess BATCHENG.PcolFiles, CLng(lngProcessLevel), , CBool(blnAutoMapCorrect)
    End Sub Integration Script:
    Function LedgerTrans_EDW_to_HFM(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    Dim objSS 'ADODB.Connection
    Dim strSQL 'SQL String
    Dim rs 'Recordset
    Dim rsAppend 'tTB table append rs Object
    'Initialize objects
    Set cnSS = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    cnss.open "Provider=SQLNCLI11; Data Source=10.250.200.10; Initial Catalog=EDW; User ID=FDM-user; Password=MyPassword"
    cnss.CommandTimeout = 0
    'Create query String - VIEW
    strSQL = "Select * "
    strSQL = strSQL & "FROM EDW.hfm.ledgertranstable "
    'Get data
    rs.Open strSQL, cnSS
    'Check For data
    If rs.bof And rs.eof Then
    RES.PlngActionType = 2
    RES.PstrActionValue = "No Records To load!"
    Exit Function
    End If
    'Loop through records And append To tTB table In location’s DB
    If Not rs.bof And Not rs.eof Then
    Do While Not rs.eof
    rsAppend.AddNew
    rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    rsAppend.Fields("CatKey") = lngCatKey ' PlngCatKey
    rsAppend.Fields("PeriodKey") = dblPerKey ' PlngCatKey
    rsAppend.Fields("DataView") = "YTD"
    rsAppend.Fields("CalcAcctType") = 9
    rsAppend.Fields("Account") = rs.fields(2).Value
    rsAppend.Fields("Desc1") = rs.fields(2).Value
    rsAppend.Fields("Entity") = rs.fields(6).Value
    rsAppend.Fields("ICP") = rs.fields(8).Value
    rsAppend.Fields("Amount") = rs.fields(14).Value
    rsAppend.Fields("UD1") = rs.fields(5).Value
    rsAppend.Fields("UD2") = rs.fields(9).Value
    rsAppend.Fields("UD3") = rs.fields(10).Value
    rsAppend.Fields("UD4") = rs.fields(7).Value
    rsAppend.Fields("UD5") = rs.fields(13).Value
    rsAppend.Update
    rs.movenext
    Loop
    End If
    'Records loaded
    RES.PlngActionType = 6
    RES.PstrActionValue = "SQL Import successful!"
    'Assign Return value
    LedgerTrans_EDW_to_HFM = True
    End Function Best regards
    Frederik
    Edited by: Frederik Andersen on Jun 1, 2013 1:32 AM

    Found the solution.
    The variable lngProcessLevel should be set to "12" to execute the full Import, Validate and Export.
    Best regards
    Frederik

  • Enabling BW reports for a specific port

    Hi All,
    How to enable BW reports for a specific prot?.
    Our requirement is Report should run FIRST, if I type the URL manually with the port we configure in SICF.
    Thanks in Advance.
    Regards,
    Ravi Chelikani.

    Ravi,
    the port is configured per protocol (HTTP, HTTPS, etc) in transaction SMICM.
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

  • SP2-0611: Error enabling STATISTICS report

    Hai
    I created table test2 with 20,000 records,and trying to set autotrace on in order to get statistics ,i got the below error.
    SQL> SET AUTOTRACE ON
    ERROR:
    ORA-24315: illegal attribute type
    SP2-0619: Error while connecting
    SP2-0611: Error enabling STATISTICS report
    Any idea about this
    Regards
    mohan

    SP2-0619 Error while connecting
    Cause: An error occurred while AUTOTRACE attempted to make a second connection to the database instance.
    Action: Check that the database limit on number of active sessions has not been exceeded.

  • Enterprise Reporting 3.9 on Essbase

    Has anyone tried to use Enterprise Reporting 3.9 with Essbase? It's asking for a location of the report files in the install. Do I have to export all of my Hyperion Reports 1.7 reports so it can reference them as files? We wanted to use this as an interim solution while we upgrade to Hyperion Reports 2.6.

    Hyperion Reports and Hyperion Enterprise Reporting are different products. It sounds like you want to use Hyperion Reports 1.7 reports with Enterprise Reporting 3.9. This will not work.My opinion...the resources to install/configure Enterprise Reporting 3.9 would be better spent on upgrading to Reports 2.6.Are you having an issue with the upgrade?

  • Doubt on ENABLE VALIDATE and ENABLE NOVALIDATE?

    Hi,
    I am doing the following things:
    SQL> create table xx_con(col1 number);
    Table created.
    SQL> insert into xx_con values(1);
    1 row created.
    SQL> insert into xx_con values(1);
    1 row created.
    SQL> insert into xx_con values(2);
    1 row created.
    SQL> alter table xx_con add constraint col1_uk unique(col1) enable validate;
    alter table xx_con add constraint col1_uk unique(col1) enable validate
    ERROR at line 1:
    ORA-02299: cannot validate (APPS.COL1_UK) - duplicate keys foundThis is exactly the same as the previous one.As per the documentation,when we specify "ENABLE VALIDATE" , all the existing and new data should comply with the constraint.But since the data violates the constraint,the constraint is not created .
    SQL> drop table xx_con;
    Table dropped.
    SQL> create table xx_con(col1 number);
    Table created.
    SQL> insert into xx_con values(1);
    1 row created.
    SQL> insert into xx_con values(1);
    1 row created.
    SQL> insert into xx_con values(2);
    1 row created.
    SQL> alter table xx_con add constraint col1_uk unique(col1) enable novalidate;
    alter table xx_con add constraint col1_uk unique(col1) enable novalidate
    ERROR at line 1:
    ORA-02299: cannot validate (APPS.COL1_UK) - duplicate keys foundAs per the documentation,when we specify "ENABLE NOVALIDATE", all the DML operations performed after this should comply with the constraint.But there can be existing data which voilates the constraint.If this is the case then why it is erroring out?
    please clarify this.

    Davide:
    By default, when you create a unique constraint, Oracle creates a unique index to enforce the constraint. In this case, duplicates are not allowed in the index itself.
    SQL> CREATE TABLE t (id number, descr VARCHAR2(10));
    Table created.
    SQL> ALTER TABLE t ADD CONSTRAINT t_unq UNIQUE (id);
    Table altered.
    SQL> SELECT index_name, uniqueness FROM user_indexes
      2  WHERE table_name = 'T';
    INDEX_NAME                     UNIQUENES
    T_UNQ                          UNIQUE
    SQL> SELECT constraint_name, constraint_type FROM user_constraints
      2  WHERE table_name = 'T';
    CONSTRAINT_NAME                C
    T_UNQ                          USince Oracle can and will use an existing index to enforce a unique constraint, when you pre-create the index as non-unique, it will be used to enforce the constraint. Since the index itself is not unique, duplicates are allowed in it.
    Note that a unique index by itself does not imply a unique constraint on the table.
    SQL> ALTER TABLE t DROP CONSTRAINT t_unq;
    Table altered.
    SQL> CREATE UNIQUE INDEX t_unq ON t(id);
    Index created.
    SQL> SELECT index_name, uniqueness FROM user_indexes
      2  WHERE table_name = 'T';
    INDEX_NAME                     UNIQUENES
    T_UNQ                          UNIQUE
    SQL> SELECT constraint_name, constraint_type FROM user_constraints
      2  WHERE table_name = 'T';
    no rows selectedSo, in a sense, with a unique index, it is the index itself which is constrained unique, not the table,
    HTH
    John

  • Enable/Disable Reporting in OSB using script.

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

  • Error in report "8.2 ORacle Essbase- Source Blending Page"

    Hi,
    I got an error in the report in "8.2 ORacle Essbase- Source Blending Page" after i deployed sample core and aslo configured with hyperion Essbase cubes related to this dashboard page.
    The main issue i was struggling is i have 2 more working instances configure with same essbase cube, those are working fine and report is showing in other 2 instances, but the 3 rd instance is showing error.. I deployed sample app core perfectly and all reports are showing only this report is giving me error.
    Even i tried by copying the xmls from the working instances also but no luck..Can any one suggest wat will be went wrong at my side.. 2 more instance are working fine with those cubes.
    Please see the below error message i was getting for that report.
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 17001] Oracle Error code: 34500, message: ORA-34500: FROM is a reserved keyword that cannot be used in this context. measure olap_rev_gross_revenue from OLAP_REV_GROSS_REVENUE dimension olap_cust_segment_id from OLAP_CUST_SEGMENT with attribute olap_cust_segment_level from hierarchy ( 'CUST_SEGMENT') inhierarchy dimension olap_employee_id from OLAP_EMPLOYEE with hierarchy ( 'ORG') inhierarchy dimension olap_office_id from OLAP_OFFICE with attribute olap_office_level from hierarchy ( 'COMPANY_HIER') inhierarchy dimension at OCI call OCIStmtExecute. [nQSError: 17010] SQL statement preparation failed. (HY000)
    SQL Issued: SELECT s_0, s_1, s_2, s_3, s_4, s_5, s_6, s_7, s_8, s_9, s_10, s_11, s_12, s_13, s_14, s_15, s_16, s_17, s_18, s_19, s_20, s_21, s_22, s_23 FROM ( SELECT 0 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, 'Total Products' s_3, CAST(NULL AS VARCHAR(1)) s_4, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, CAST(NULL AS DOUBLE) s_9, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_10, CAST(NULL AS DOUBLE) s_11, CAST(NULL AS DOUBLE) s_12, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_13, CAST(NULL AS DOUBLE) s_14, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_15, CAST(NULL AS DOUBLE) s_16, CAST(NULL AS DOUBLE) s_17, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_18, CAST(NULL AS INTEGER) s_19, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_20, CAST(NULL AS INTEGER) s_21, CAST(NULL AS INTEGER) s_22, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_23 FROM "D - Sample Federated" UNION ALL SELECT 1 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, 'Total Products' s_3, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand") s_4, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, CAST(NULL AS DOUBLE) s_9, CAST(NULL AS DOUBLE) s_10, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_11, CAST(NULL AS DOUBLE) s_12, CAST(NULL AS DOUBLE) s_13, CAST(NULL AS DOUBLE) s_14, CAST(NULL AS DOUBLE) s_15, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_16, CAST(NULL AS DOUBLE) s_17, CAST(NULL AS DOUBLE) s_18, CAST(NULL AS INTEGER) s_19, CAST(NULL AS INTEGER) s_20, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_21, CAST(NULL AS INTEGER) s_22, CAST(NULL AS INTEGER) s_23 FROM "D - Sample Federated" WHERE (IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") IN (1)) AND (("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2008')) OR ("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2009')) OR ("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2010'))) UNION ALL SELECT 2 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, CAST(NULL AS VARCHAR(1)) s_3, CAST(NULL AS VARCHAR(1)) s_4, CAST(NULL AS INTEGER) s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_9, CAST(NULL AS DOUBLE) s_10, CAST(NULL AS DOUBLE) s_11, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY ) s_12, CAST(NULL AS DOUBLE) s_13, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_14, CAST(NULL AS DOUBLE) s_15, CAST(NULL AS DOUBLE) s_16, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY ) s_17, CAST(NULL AS DOUBLE) s_18, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_19, CAST(NULL AS INTEGER) s_20, CAST(NULL AS INTEGER) s_21, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY ) s_22, CAST(NULL AS INTEGER) s_23 FROM "D - Sample Federated" ) djm
    Any help was greatly appreciable...Thanks in Advancne..
    Regards
    Rushi

    Hi,
    I got an error in the report in "8.2 ORacle Essbase- Source Blending Page" after i deployed sample core and aslo configured with hyperion Essbase cubes related to this dashboard page.
    The main issue i was struggling is i have 2 more working instances configure with same essbase cube, those are working fine and report is showing in other 2 instances, but the 3 rd instance is showing error.. I deployed sample app core perfectly and all reports are showing only this report is giving me error.
    Even i tried by copying the xmls from the working instances also but no luck..Can any one suggest wat will be went wrong at my side.. 2 more instance are working fine with those cubes.
    Please see the below error message i was getting for that report.
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 17001] Oracle Error code: 34500, message: ORA-34500: FROM is a reserved keyword that cannot be used in this context. measure olap_rev_gross_revenue from OLAP_REV_GROSS_REVENUE dimension olap_cust_segment_id from OLAP_CUST_SEGMENT with attribute olap_cust_segment_level from hierarchy ( 'CUST_SEGMENT') inhierarchy dimension olap_employee_id from OLAP_EMPLOYEE with hierarchy ( 'ORG') inhierarchy dimension olap_office_id from OLAP_OFFICE with attribute olap_office_level from hierarchy ( 'COMPANY_HIER') inhierarchy dimension at OCI call OCIStmtExecute. [nQSError: 17010] SQL statement preparation failed. (HY000)
    SQL Issued: SELECT s_0, s_1, s_2, s_3, s_4, s_5, s_6, s_7, s_8, s_9, s_10, s_11, s_12, s_13, s_14, s_15, s_16, s_17, s_18, s_19, s_20, s_21, s_22, s_23 FROM ( SELECT 0 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, 'Total Products' s_3, CAST(NULL AS VARCHAR(1)) s_4, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, CAST(NULL AS DOUBLE) s_9, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_10, CAST(NULL AS DOUBLE) s_11, CAST(NULL AS DOUBLE) s_12, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_13, CAST(NULL AS DOUBLE) s_14, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_15, CAST(NULL AS DOUBLE) s_16, CAST(NULL AS DOUBLE) s_17, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_18, CAST(NULL AS INTEGER) s_19, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_20, CAST(NULL AS INTEGER) s_21, CAST(NULL AS INTEGER) s_22, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products")) s_23 FROM "D - Sample Federated" UNION ALL SELECT 1 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, 'Total Products' s_3, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand") s_4, IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, CAST(NULL AS DOUBLE) s_9, CAST(NULL AS DOUBLE) s_10, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_11, CAST(NULL AS DOUBLE) s_12, CAST(NULL AS DOUBLE) s_13, CAST(NULL AS DOUBLE) s_14, CAST(NULL AS DOUBLE) s_15, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_16, CAST(NULL AS DOUBLE) s_17, CAST(NULL AS DOUBLE) s_18, CAST(NULL AS INTEGER) s_19, CAST(NULL AS INTEGER) s_20, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year",IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products"),IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Brand")) s_21, CAST(NULL AS INTEGER) s_22, CAST(NULL AS INTEGER) s_23 FROM "D - Sample Federated" WHERE (IDOF("D - Sample Federated"."Products"."Products Hierarchy"."Total Products") IN (1)) AND (("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2008')) OR ("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2009')) OR ("D - Sample Federated"."Time"."T05 Per Name Year" IN ('2010'))) UNION ALL SELECT 2 s_0, "D - Sample Federated"."Products"."P4 Brand" s_1, "D - Sample Federated"."Time"."T05 Per Name Year" s_2, CAST(NULL AS VARCHAR(1)) s_3, CAST(NULL AS VARCHAR(1)) s_4, CAST(NULL AS INTEGER) s_5, "D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" s_6, "D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" s_7, "D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" s_8, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_9, CAST(NULL AS DOUBLE) s_10, CAST(NULL AS DOUBLE) s_11, REPORT_AGGREGATE("D - Sample Federated"."Measures"."20d - Unit Price (Orcl Cube/Orcl Db)" BY ) s_12, CAST(NULL AS DOUBLE) s_13, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_14, CAST(NULL AS DOUBLE) s_15, CAST(NULL AS DOUBLE) s_16, REPORT_SUM("D - Sample Federated"."Measures"."1d- Revenue (Orcl Db Cube Only)" BY ) s_17, CAST(NULL AS DOUBLE) s_18, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY "D - Sample Federated"."Time"."T05 Per Name Year") s_19, CAST(NULL AS INTEGER) s_20, CAST(NULL AS INTEGER) s_21, REPORT_SUM("D - Sample Federated"."Measures"."2a- Qty (Orcl Db Tables Only)" BY ) s_22, CAST(NULL AS INTEGER) s_23 FROM "D - Sample Federated" ) djm
    Any help was greatly appreciable...Thanks in Advancne..
    Regards
    Rushi

  • Safari Crashing when plug-ins are enabled - Crash report attached

    Hi guys
    Safari is crashing whenever I have plug-ins enabled. Its says it's a flash player problem. I've uninstalled and reinstalled flash several times to no avail. Updating to the new safari has made no difference either. I've been trying to resolve this problem for months. People I spoke with at an apple store couldn't help the problem...Any kind of help is extremely appreciated. Thanks heaps!
    Here's the crash report...
    Process: Safari [156]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.1 (5530.18)
    Build Info: WebBrowser-55301800~1
    Code Type: X86 (Native)
    Parent Process: launchd [77]
    Interval Since Last Report: 55327 sec
    Crashes Since Last Report: 11
    Per-App Interval Since Last Report: 1109 sec
    Per-App Crashes Since Last Report: 6
    Date/Time: 2009-06-20 11:45:29.415 +1000
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: BD307D0B-236B-4290-A158-7E030A0B0AAD
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x000000001d309720
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x1ccd716e 0x1cbab000 + 1229166
    1 ...romedia.Flash Player.plugin 0x1ccd7a61 0x1cbab000 + 1231457
    2 ...romedia.Flash Player.plugin 0x1ccdad22 0x1cbab000 + 1244450
    3 ...romedia.Flash Player.plugin 0x1cd5537b 0x1cbab000 + 1745787
    4 ...romedia.Flash Player.plugin 0x1ccc2b5a 0x1cbab000 + 1145690
    5 ...romedia.Flash Player.plugin 0x1cc7cc1d 0x1cbab000 + 859165
    6 ...romedia.Flash Player.plugin 0x1cc7da3f 0x1cbab000 + 862783
    7 ...romedia.Flash Player.plugin 0x1cc7f640 0x1cbab000 + 869952
    8 ...romedia.Flash Player.plugin 0x1cc7fa6a 0x1cbab000 + 871018
    9 ...romedia.Flash Player.plugin 0x1ccc8de2 0x1cbab000 + 1170914
    10 ...romedia.Flash Player.plugin 0x1ccc8f1a 0x1cbab000 + 1171226
    11 ...romedia.Flash Player.plugin 0x1ccc9706 0x1cbab000 + 1173254
    12 ...romedia.Flash Player.plugin 0x1cccc9b6 0x1cbab000 + 1186230
    13 ...romedia.Flash Player.plugin 0x1ccceac7 0x1cbab000 + 1194695
    14 ...romedia.Flash Player.plugin 0x1cd42c2c 0x1cbab000 + 1670188
    15 ...romedia.Flash Player.plugin 0x1ce900e6 NP_Shutdown + 182
    16 ...romedia.Flash Player.plugin 0x1ce9013f NP_Shutdown + 271
    17 ...romedia.Flash Player.plugin 0x1ce9625c Flash_EnforceLocalSecurity + 6844
    18 com.apple.WebKit 0x95a1477d -[WebNetscapePluginDocumentView(Internal) _createPlugin] + 381
    19 com.apple.WebKit 0x95a14413 -[WebNetscapePluginDocumentView createPlugin] + 83
    20 com.apple.WebKit 0x95a0cc82 -[WebBaseNetscapePluginView start] + 194
    21 com.apple.WebKit 0x95a0ca8b -[WebBaseNetscapePluginView viewDidMoveToWindow] + 155
    22 com.apple.AppKit 0x93aca438 -[NSView _setWindow:] + 1413
    23 com.apple.AppKit 0x93ad3241 -[NSView addSubview:] + 470
    24 com.apple.WebKit 0x959f8933 -[WebHTMLView addSubview:] + 67
    25 com.apple.WebCore 0x909ae760 WebCore::ScrollView::platformAddChild(WebCore::Widget*) + 272
    26 com.apple.WebCore 0x909ae16b WebCore::ScrollView::addChild(WebCore::Widget*) + 75
    27 com.apple.WebCore 0x909adf12 WebCore::RenderWidget::setWidget(WebCore::Widget*) + 194
    28 com.apple.WebCore 0x909ade0c WebCore::RenderPart::setWidget(WebCore::Widget*) + 60
    29 com.apple.WebCore 0x90a65502 WebCore::FrameLoader::loadPlugin(WebCore::RenderPart*, WebCore::KURL const&, WebCore::String const&, ***::Vector<WebCore::String, 0ul> const&, ***::Vector<WebCore::String, 0ul> const&, bool) + 498
    30 com.apple.WebCore 0x90a6508f WebCore::FrameLoader::requestObject(WebCore::RenderPart*, WebCore::String const&, WebCore::AtomicString const&, WebCore::String const&, ***::Vector<WebCore::String, 0ul> const&, ***::Vector<WebCore::String, 0ul> const&) + 543
    31 com.apple.WebCore 0x909afcea WebCore::RenderPartObject::updateWidget(bool) + 2746
    32 com.apple.WebCore 0x9090c6f2 WebCore::FrameView::updateWidgets() + 242
    33 com.apple.WebCore 0x9090c3d1 WebCore::FrameView::performPostLayoutTasks() + 81
    34 com.apple.WebCore 0x908e8253 WebCore::FrameView::layout(bool) + 1475
    35 com.apple.WebCore 0x908e7c5b WebCore::Timer<WebCore::FrameView>::fired() + 43
    36 com.apple.WebCore 0x908ceab2 WebCore::ThreadTimers::fireTimers(double, ***::Vector<WebCore::TimerBase*, 0ul> const&) + 130
    37 com.apple.WebCore 0x908ce4d2 WebCore::ThreadTimers::sharedTimerFiredInternal() + 114
    38 com.apple.WebCore 0x908ce456 WebCore::ThreadTimers::sharedTimerFired() + 22
    39 com.apple.WebCore 0x90f76af4 _ZN7WebCoreL10timerFiredEP16_CFRunLoopTimerPv + 68
    40 com.apple.CoreFoundation 0x9176eac5 CFRunLoopRunSpecific + 4469
    41 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    42 com.apple.HIToolbox 0x9023128c RunCurrentEventLoopInMode + 283
    43 com.apple.HIToolbox 0x902310a5 ReceiveNextEventCommon + 374
    44 com.apple.HIToolbox 0x90230f19 BlockUntilNextEventMatchingListInMode + 106
    45 com.apple.AppKit 0x93af3d0d _DPSNextEvent + 657
    46 com.apple.AppKit 0x93af35c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    47 com.apple.Safari 0x0000cac3 0x1000 + 47811
    48 com.apple.AppKit 0x93aec5fb -[NSApplication run] + 795
    49 com.apple.AppKit 0x93ab9834 NSApplicationMain + 574
    50 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x907fb584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x907f7409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    5 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95f60298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    6 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91ce4741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x90863bd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    5 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91f1c530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x91eb8e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x91eb89b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91b576fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    2 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91ce4741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91b71292 _workqops + 10
    1 libSystem.B.dylib 0x91b712c2 start_wqthread + 30
    Thread 9:
    0 ??? 0000000000 0 + 0
    Thread 10:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91eed3e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x91ef9504 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.Safari 0x00034bc6 0x1000 + 211910
    7 com.apple.Foundation 0x91eb8e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x91eb89b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    10 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x1d0ae774 Flash_EnforceLocalSecurity + 2203604
    3 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    4 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x91b082ce semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91b3a2c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91b7f539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1ce8614f 0x1cbab000 + 2994511
    4 ...romedia.Flash Player.plugin 0x1ce9f91f Flash_EnforceLocalSecurity + 45439
    5 ...romedia.Flash Player.plugin 0x1ce865ff 0x1cbab000 + 2995711
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x91b082ce semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91b3a2c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91b7f539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1ce8614f 0x1cbab000 + 2994511
    4 ...romedia.Flash Player.plugin 0x1ce9f91f Flash_EnforceLocalSecurity + 45439
    5 ...romedia.Flash Player.plugin 0x1ce865ff 0x1cbab000 + 2995711
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x1d309720 ebx: 0x1ccd6edd ecx: 0x1d30e05c edx: 0x1d309720
    edi: 0xbfffd28c esi: 0x1d30e05c ebp: 0xbfffd2c8 esp: 0xbfffd160
    ss: 0x0000001f efl: 0x00010246 eip: 0x1ccd716e cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x1d309720
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0.1 (5530.18) <e0e55e9f896480efade8f8dca2bcca32> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x11c37000 - 0x11e2ffff com.apple.RawCamera.bundle 2.0.14 (436) <a8dd51882088fae463f33bc0674583e8> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x143ef000 - 0x143f4ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15e40000 - 0x15e40ffe com.apple.JavaPluginCocoa 12.3.0 (12.3.0) <ab888344b5c6d9f3fcf53dbd59276b06> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x1606a000 - 0x16070ffc com.apple.JavaVM 12.3.0 (12.3.0) <ee9b9f648e9b98b1c7644b6a7c630a91> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1611c000 - 0x1611dff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1973f000 - 0x1975efed com.apple.audio.CoreAudioKit 1.5 (1.5) <795c36d256c2cead9607068b1f78e141> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1cbab000 - 0x1d1cefef +com.macromedia.Flash Player.plugin 10.0.22.87 (1.0.4f872) <860692a215f054b7b9474b410abeb530> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1e30e000 - 0x1e380fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90182fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90183000 - 0x90200fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90201000 - 0x90509fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9050a000 - 0x9051afff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9051b000 - 0x90595ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90596000 - 0x90629fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9062a000 - 0x90712ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90713000 - 0x9073cfff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x9073d000 - 0x90797ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90798000 - 0x907a5fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x907a6000 - 0x907d5fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x907d6000 - 0x907f3ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x907f4000 - 0x91084fff com.apple.WebCore 5530.18 (5530.18) <bed2e1280e908e17419ce0a159c19caa> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91085000 - 0x910bbfef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x910bc000 - 0x9124afe7 com.apple.CoreAUC 3.07.2 (3.07.2) <08a5e0090d94e132ec9fa9ef4034941d> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9124b000 - 0x91252fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x91270000 - 0x9127cffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9127d000 - 0x9127effc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x9127f000 - 0x9129dff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x912b5000 - 0x91334ff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91335000 - 0x9134bfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9134c000 - 0x916e9fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x916ea000 - 0x916eaff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x916eb000 - 0x916fafff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x916fb000 - 0x9182efef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91858000 - 0x91870ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91871000 - 0x91876fff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91877000 - 0x918b1fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x918b2000 - 0x91939ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x9193a000 - 0x919f4fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91a3a000 - 0x91a3affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a3b000 - 0x91b06fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91b07000 - 0x91c6eff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x91c6f000 - 0x91c6fffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91c70000 - 0x91c79fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91c7a000 - 0x91cd7ffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x91cd8000 - 0x91cdbfff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91cdc000 - 0x91e63feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91ea1000 - 0x91ea7fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91ea8000 - 0x91eadfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91eae000 - 0x9212afe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9228f000 - 0x9244bff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92459000 - 0x92459ffe com.apple.quartzframework 1.5 (1.5) <49afd7e7e3b2cad89cfaf2ac8c67c8a4> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9245a000 - 0x92491fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9249c000 - 0x9249cffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1bce4a22b6a5cc7055d0938ddad269b2> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9249d000 - 0x9249dffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9249e000 - 0x9249effd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9249f000 - 0x924a9feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x924dd000 - 0x924ebffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x924ec000 - 0x924ecff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x924ed000 - 0x92594feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92595000 - 0x9264cff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9264d000 - 0x9267ffff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92680000 - 0x929a5fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x929a6000 - 0x92d64fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92d65000 - 0x92db4fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92eaa000 - 0x92ed2ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92fb5000 - 0x93041ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93042000 - 0x9317bff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x9317c000 - 0x93243ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93244000 - 0x93263ffa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93264000 - 0x93279ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9327a000 - 0x9374bfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9374c000 - 0x93750fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93751000 - 0x937e4ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x937e5000 - 0x938c6ff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x938fc000 - 0x939aeffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x939af000 - 0x939b6ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x939b7000 - 0x939e0fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93a11000 - 0x93a4bffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93a4c000 - 0x93ab2ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93ab3000 - 0x942b1fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x942b2000 - 0x94362fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94363000 - 0x944b5ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x944b6000 - 0x944fffef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94500000 - 0x9454afe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94563000 - 0x94565fff com.apple.securityhi 3.0 (30817) <020419ad33b8638b174e1a472728a894> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94566000 - 0x945a5fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x945a6000 - 0x94632ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94633000 - 0x94675fef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94676000 - 0x94678ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x946c8000 - 0x94800fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94801000 - 0x948e1fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x948e2000 - 0x948eafff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x948eb000 - 0x94903fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94904000 - 0x94935ffb com.apple.quartzfilters 1.5.0 (1.5.0) <01090d7204c55b32a6a11199fa0d2e2b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94936000 - 0x949b3feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x949b4000 - 0x949b4ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x949b5000 - 0x949e0fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x949e1000 - 0x949f1ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x949f2000 - 0x949f7fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x949f8000 - 0x959d3ff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x959d4000 - 0x959d4fff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x959d5000 - 0x95aaeff7 com.apple.WebKit 5530.18 (5530.18) <08df2c1fd856bd9b672993dacb18495a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95aaf000 - 0x95ab6fff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95ab7000 - 0x95b5aff3 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x95b5b000 - 0x95e35ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e36000 - 0x95e8fff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95e90000 - 0x95e9bfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95f0b000 - 0x95f5cff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95f5d000 - 0x96001fec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96002000 - 0x96040fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96041000 - 0x96065feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96066000 - 0x960f0fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x960f1000 - 0x9610ffff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x96115000 - 0x96187fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96188000 - 0x96598fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96663000 - 0x96687fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x96688000 - 0x96859ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9685a000 - 0x96861ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x96862000 - 0x9688ffeb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96890000 - 0x969d6ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x969d7000 - 0x96a18fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96a19000 - 0x96a1bff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96a1c000 - 0x96a78ff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96a79000 - 0x96a79ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96a7a000 - 0x96a7efff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96a7f000 - 0x96a8effe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96a8f000 - 0x96aaaffb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96d14000 - 0x96d53fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96d54000 - 0x973f4fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x974ba000 - 0x974c6ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0xba500000 - 0xba501ffb libGreekConverter.dylib ??? (???) <82f876d7419231ab72b1756399a01333> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <79f7cbef6bc9f4c32a42d63c7332bf8e> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi
    Thanks for the reply, much appreciated.
    1. Deleting the flash plugins in Account>Library>Internet Plugins and then repairing permissions didn't make a difference - it was still crashing whenever on a website with flash.
    2. Changing the name of the HD and then repairing permissions seems to have done something - some of the website that used to crash straight away only do when I click on a flash video (like a youtube video etc), but others still crash whenever something with flash is loading.
    Not sure if there is a difference, but here's a copy of the latest crash report.
    Thanks again for your help!
    Process: Safari [177]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.1 (5530.18)
    Build Info: WebBrowser-55301800~1
    Code Type: X86 (Native)
    Parent Process: launchd [65]
    Interval Since Last Report: 1122 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 1077 sec
    Per-App Crashes Since Last Report: 4
    Date/Time: 2009-06-20 18:12:48.020 +1000
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: BD307D0B-236B-4290-A158-7E030A0B0AAD
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x1896b3c2 0x1869d000 + 2941890
    1 ...romedia.Flash Player.plugin 0x187c9203 0x1869d000 + 1229315
    2 ...romedia.Flash Player.plugin 0x187c9a61 0x1869d000 + 1231457
    3 ...romedia.Flash Player.plugin 0x187ccd22 0x1869d000 + 1244450
    4 ...romedia.Flash Player.plugin 0x1884737b 0x1869d000 + 1745787
    5 ...romedia.Flash Player.plugin 0x187b4b5a 0x1869d000 + 1145690
    6 ...romedia.Flash Player.plugin 0x1876e7bb 0x1869d000 + 858043
    7 ...romedia.Flash Player.plugin 0x187700e0 0x1869d000 + 864480
    8 ...romedia.Flash Player.plugin 0x18770a99 0x1869d000 + 866969
    9 ...romedia.Flash Player.plugin 0x187c8f52 0x1869d000 + 1228626
    10 ...romedia.Flash Player.plugin 0x187cc9f2 0x1869d000 + 1243634
    11 ...romedia.Flash Player.plugin 0x1884737b 0x1869d000 + 1745787
    12 ...romedia.Flash Player.plugin 0x18849554 0x1869d000 + 1754452
    13 ...romedia.Flash Player.plugin 0x188c7bc9 0x1869d000 + 2272201
    14 ??? 0x1d28365b 0 + 489174619
    15 ??? 0x241f5ce2 0 + 606035170
    16 ??? 0x241f59fd 0 + 606034429
    17 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    18 ...romedia.Flash Player.plugin 0x18b97e10 Flash_EnforceLocalSecurity + 2168432
    19 ??? 0x241f582d 0 + 606033965
    20 ??? 0x241f564d 0 + 606033485
    21 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    22 ...romedia.Flash Player.plugin 0x18b97e10 Flash_EnforceLocalSecurity + 2168432
    23 ??? 0x241f54bd 0 + 606033085
    24 ??? 0x1ff56527 0 + 536175911
    25 ??? 0x1ff56493 0 + 536175763
    26 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    27 ...romedia.Flash Player.plugin 0x188e134a 0x1869d000 + 2376522
    28 ...romedia.Flash Player.plugin 0x188e2835 0x1869d000 + 2381877
    29 ...romedia.Flash Player.plugin 0x188e386c 0x1869d000 + 2386028
    30 ??? 0x1d27d452 0 + 489149522
    31 ??? 0x1f73cbd0 0 + 527682512
    32 ??? 0x20bc3509 0 + 549205257
    33 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    34 ...romedia.Flash Player.plugin 0x18bc5c73 Flash_EnforceLocalSecurity + 2356435
    35 ...romedia.Flash Player.plugin 0x18bc628d Flash_EnforceLocalSecurity + 2357997
    36 ??? 0x1ff5641c 0 + 536175644
    37 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    38 ...romedia.Flash Player.plugin 0x18bbeced Flash_EnforceLocalSecurity + 2327885
    39 ??? 0x1c612099 0 + 476127385
    40 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    41 ...romedia.Flash Player.plugin 0x18bbeb98 Flash_EnforceLocalSecurity + 2327544
    42 ??? 0x1c61160b 0 + 476124683
    43 ??? 0x1f74adca 0 + 527740362
    44 ??? 0x1ff540c5 0 + 536166597
    45 ??? 0x1f746db7 0 + 527723959
    46 ??? 0x20bb47ad 0 + 549144493
    47 ??? 0x20bb3ecb 0 + 549142219
    48 ??? 0x20bb3c87 0 + 549141639
    49 ??? 0x20bb3632 0 + 549140018
    50 ??? 0x20bb2385 0 + 549135237
    51 ??? 0x20bb0353 0 + 549126995
    52 ??? 0x1f74d027 0 + 527749159
    53 ??? 0x20bafc89 0 + 549125257
    54 ??? 0x1ff2d597 0 + 536008087
    55 ??? 0x1f746db7 0 + 527723959
    56 ??? 0x20bb47ad 0 + 549144493
    57 ??? 0x20bb3ecb 0 + 549142219
    58 ??? 0x20bb3c87 0 + 549141639
    59 ??? 0x20bb3632 0 + 549140018
    60 ??? 0x20bb2385 0 + 549135237
    61 ??? 0x20bb0353 0 + 549126995
    62 ??? 0x1f74d027 0 + 527749159
    63 ??? 0x20bafc89 0 + 549125257
    64 ??? 0x1ff28f17 0 + 535990039
    65 ??? 0x1f746db7 0 + 527723959
    66 ??? 0x20bb47ad 0 + 549144493
    67 ??? 0x20bb3ecb 0 + 549142219
    68 ??? 0x20bb3c87 0 + 549141639
    69 ??? 0x20bb3632 0 + 549140018
    70 ??? 0x20bb2385 0 + 549135237
    71 ??? 0x20bb0353 0 + 549126995
    72 ??? 0x1f74d027 0 + 527749159
    73 ??? 0x20bafc89 0 + 549125257
    74 ??? 0x1f746db7 0 + 527723959
    75 ??? 0x20bb47ad 0 + 549144493
    76 ??? 0x20bb3ecb 0 + 549142219
    77 ??? 0x20bb3c87 0 + 549141639
    78 ??? 0x20bb3632 0 + 549140018
    79 ??? 0x20bb2385 0 + 549135237
    80 ??? 0x20bb0353 0 + 549126995
    81 ??? 0x1f74d027 0 + 527749159
    82 ??? 0x20bafc89 0 + 549125257
    83 ??? 0x1f746db7 0 + 527723959
    84 ??? 0x20bb47ad 0 + 549144493
    85 ??? 0x20bb3ecb 0 + 549142219
    86 ??? 0x20bb3c87 0 + 549141639
    87 ??? 0x20bb3632 0 + 549140018
    88 ??? 0x20bb2385 0 + 549135237
    89 ??? 0x20bb0353 0 + 549126995
    90 ??? 0x1f74d027 0 + 527749159
    91 ??? 0x20bafc89 0 + 549125257
    92 ??? 0x20bac990 0 + 549112208
    93 ??? 0x1ff23187 0 + 535966087
    94 ??? 0x1f71dcfb 0 + 527555835
    95 ??? 0x1f73a8c9 0 + 527673545
    96 ??? 0x1f730fc6 0 + 527634374
    97 ...romedia.Flash Player.plugin 0x18baf77a Flash_EnforceLocalSecurity + 2265050
    98 ...romedia.Flash Player.plugin 0x1890a3b5 0x1869d000 + 2544565
    99 ...romedia.Flash Player.plugin 0x18923fa6 0x1869d000 + 2650022
    100 ...romedia.Flash Player.plugin 0x18924a0c 0x1869d000 + 2652684
    101 ...romedia.Flash Player.plugin 0x1885c363 0x1869d000 + 1831779
    102 ...romedia.Flash Player.plugin 0x18a2d42a Flash_EnforceLocalSecurity + 683146
    103 com.apple.CoreFoundation 0x9176eac5 CFRunLoopRunSpecific + 4469
    104 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    105 com.apple.HIToolbox 0x9023128c RunCurrentEventLoopInMode + 283
    106 com.apple.HIToolbox 0x902310a5 ReceiveNextEventCommon + 374
    107 com.apple.HIToolbox 0x90230f19 BlockUntilNextEventMatchingListInMode + 106
    108 com.apple.AppKit 0x93af3d0d _DPSNextEvent + 657
    109 com.apple.AppKit 0x93af35c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    110 com.apple.Safari 0x0000cac3 0x1000 + 47811
    111 com.apple.AppKit 0x93aec5fb -[NSApplication run] + 795
    112 com.apple.AppKit 0x93ab9834 NSApplicationMain + 574
    113 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x907fb584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x907f7409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    5 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95f60298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    6 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91ce4741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x90863bd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    5 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91b0f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91b39dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91ce4741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91f1c530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x91eb8e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x91eb89b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    8 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x91b576fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    2 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9176e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9176ec78 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x949535f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x94953480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91b08286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91b0fa7c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x18ba0774 Flash_EnforceLocalSecurity + 2203604
    3 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    4 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91b082ce semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91b3a2c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91b7f539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1897814f 0x1869d000 + 2994511
    4 ...romedia.Flash Player.plugin 0x1899191f Flash_EnforceLocalSecurity + 45439
    5 ...romedia.Flash Player.plugin 0x189785ff 0x1869d000 + 2995711
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x91b082ce semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91b3a2c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91b7f539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1897814f 0x1869d000 + 2994511
    4 ...romedia.Flash Player.plugin 0x1899191f Flash_EnforceLocalSecurity + 45439
    5 ...romedia.Flash Player.plugin 0x189785ff 0x1869d000 + 2995711
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x91b082e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91b3a2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x91b3bb33 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x95b84d96 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x95b84b76 TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x95bb59ac TimerThread + 74
    6 libSystem.B.dylib 0x91b39155 pthreadstart + 321
    7 libSystem.B.dylib 0x91b39012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xbfffb0d4 ebx: 0x187c8edd ecx: 0x15ee478c edx: 0x15ee4770
    edi: 0x00000000 esi: 0x00000001 ebp: 0xbfffb158 esp: 0xbfffb090
    ss: 0x0000001f efl: 0x00010286 eip: 0x1896b3c2 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0.1 (5530.18) <e0e55e9f896480efade8f8dca2bcca32> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x11c37000 - 0x11e2ffff com.apple.RawCamera.bundle 2.0.14 (436) <a8dd51882088fae463f33bc0674583e8> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14419000 - 0x1441eff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1641f000 - 0x1641fffe com.apple.JavaPluginCocoa 12.3.0 (12.3.0) <ab888344b5c6d9f3fcf53dbd59276b06> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x16425000 - 0x1642bffc com.apple.JavaVM 12.3.0 (12.3.0) <ee9b9f648e9b98b1c7644b6a7c630a91> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1869d000 - 0x18cc0fef +com.macromedia.Flash Player.plugin 10.0.22.87 (1.0.4f872) <860692a215f054b7b9474b410abeb530> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x18e00000 - 0x18e1ffed com.apple.audio.CoreAudioKit 1.5 (1.5) <795c36d256c2cead9607068b1f78e141> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x18e54000 - 0x18e55ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x18ed5000 - 0x18f47fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x18f92000 - 0x18fa0feb libSimplifiedChineseConverter.dylib ??? (???) <ec9a1c1949952acb83d09a0320ba2df1> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x18fa5000 - 0x18fb7fff libTraditionalChineseConverter.dylib ??? (???) <086a18ff56a7d80d4446b979a18a4f64> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1cc48000 - 0x1cc4bfff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1d73b000 - 0x1d740fff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x70000000 - 0x700e6ff2 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90182fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90183000 - 0x90200fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90201000 - 0x90509fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9050a000 - 0x9051afff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9051b000 - 0x90595ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90596000 - 0x90629fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9062a000 - 0x90712ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90713000 - 0x9073cfff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x9073d000 - 0x90797ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90798000 - 0x907a5fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x907a6000 - 0x907d5fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x907d6000 - 0x907f3ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x907f4000 - 0x91084fff com.apple.WebCore 5530.18 (5530.18) <bed2e1280e908e17419ce0a159c19caa> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91085000 - 0x910bbfef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x910bc000 - 0x9124afe7 com.apple.CoreAUC 3.07.2 (3.07.2) <08a5e0090d94e132ec9fa9ef4034941d> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9124b000 - 0x91252fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x91270000 - 0x9127cffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9127d000 - 0x9127effc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x9127f000 - 0x9129dff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x912b5000 - 0x91334ff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91335000 - 0x9134bfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9134c000 - 0x916e9fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x916ea000 - 0x916eaff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x916eb000 - 0x916fafff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x916fb000 - 0x9182efef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91858000 - 0x91870ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91871000 - 0x91876fff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91877000 - 0x918b1fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x918b2000 - 0x91939ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x9193a000 - 0x919f4fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91a3a000 - 0x91a3affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a3b000 - 0x91b06fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91b07000 - 0x91c6eff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x91c6f000 - 0x91c6fffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91c70000 - 0x91c79fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91c7a000 - 0x91cd7ffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x91cd8000 - 0x91cdbfff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91cdc000 - 0x91e63feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91ea1000 - 0x91ea7fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91ea8000 - 0x91eadfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91eae000 - 0x9212afe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9228f000 - 0x9244bff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92459000 - 0x92459ffe com.apple.quartzframework 1.5 (1.5) <49afd7e7e3b2cad89cfaf2ac8c67c8a4> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9245a000 - 0x92491fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9249c000 - 0x9249cffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1bce4a22b6a5cc7055d0938ddad269b2> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9249d000 - 0x9249dffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9249e000 - 0x9249effd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9249f000 - 0x924a9feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x924dd000 - 0x924ebffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x924ec000 - 0x924ecff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x924ed000 - 0x92594feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92595000 - 0x9264cff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9264d000 - 0x9267ffff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92680000 - 0x929a5fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x929a6000 - 0x92d64fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92d65000 - 0x92db4fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92eaa000 - 0x92ed2ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92fb5000 - 0x93041ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93042000 - 0x9317bff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x9317c000 - 0x93243ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93244000 - 0x93263ffa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93264000 - 0x93279ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9327a000 - 0x9374bfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9374c000 - 0x93750fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93751000 - 0x937e4ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x937e5000 - 0x938c6ff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x938fc000 - 0x939aeffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x939af000 - 0x939b6ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x939b7000 - 0x939e0fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93a11000 - 0x93a4bffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93a4c000 - 0x93ab2ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93ab3000 - 0x942b1fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x942b2000 - 0x94362fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94363000 - 0x944b5ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x944b6000 - 0x944fffef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94500000 - 0x9454afe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94563000 - 0x94565fff com.apple.securityhi 3.0 (30817) <020419ad33b8638b174e1a472728a894> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94566000 - 0x945a5fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x945a6000 - 0x94632ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94633000 - 0x94675fef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94676000 - 0x94678ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x946c8000 - 0x94800fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94801000 - 0x948e1fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x948e2000 - 0x948eafff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x948eb000 - 0x94903fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94904000 - 0x94935ffb com.apple.quartzfilters 1.5.0 (1.5.0) <01090d7204c55b32a6a11199fa0d2e2b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94936000 - 0x949b3feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x949b4000 - 0x949b4ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x949b5000 - 0x949e0fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x949e1000 - 0x949f1ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x949f2000 - 0x949f7fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x949f8000 - 0x959d3ff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x959d4000 - 0x959d4fff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x959d5000 - 0x95aaeff7 com.apple.WebKit 5530.18 (5530.18) <08df2c1fd856bd9b672993dacb18495a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95aaf000 - 0x95ab6fff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95ab7000 - 0x95b5aff3 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x95b5b000 - 0x95e35ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e36000 - 0x95e8fff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95e90000 - 0x95e9bfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95f0b000 - 0x95f5cff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95f5d000 - 0x96001fec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96002000 - 0x96040fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96041000 - 0x96065feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96066000 - 0x960f0fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x960f1000 - 0x9610ffff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x96115000 - 0x96187fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96188000 - 0x96598fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96663000 - 0x96687fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x96688000 - 0x96859ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9685a000 - 0x96861ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x96862000 - 0x9688ffeb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96890000 - 0x969d6ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x969d7000 - 0x96a18fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96a19000 - 0x96a1bff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96a1c000 - 0x96a78ff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96a79000 - 0x96a79ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96a7a000 - 0x96a7efff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96a7f000 - 0x96a8effe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96a8f000 - 0x96aaaffb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96d14000 - 0x96d53fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96d54000 - 0x973f4fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x974ba000 - 0x974c6ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0xba500000 - 0xba501ffb libGreekConverter.dylib ??? (???) <82f876d7419231ab72b1756399a01333> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <79f7cbef6bc9f4c32a42d63c7332bf8e> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <4b497e7a0027447eaff2b45572bb85ea> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • XML style sheet error at Validate step in FDM for few locations

    Hi All,
    Users are facing the "XML page cannot be displayed - The style sheet doesnot contain a document element. The style sheet may be empty, or it may not be weel-formed XML document.." for very fre locations while validating the data.
    Please advise as it is most annoying thing for users.
    Thanks and Regards

    You will need to check a few things:
    a) Check that the Integration Option in the HFM Adapter "FDM WEB SERVER NAME" matches the value that the users are using to access FDM.
    http://<fdmwebservername>/HyperionFDM
    Make sure that the server host name is entered into this option.
    b) Check that the XML file type on the users workstation is configured to open with Internet Explorer and not the XML Editor.  You can do this by creating a text document named test.xml and right-clicking on it and choose "properties" and update the program to open the file to Internet Explorer and save.
    c) Make sure that the FDM Web Site is in the users trusted sites in the IE Browser
    d) Make sure that the "Automatically prompt for file downloads" and "Automatically Prompt for Active-X Controls" options are set to Enabled in the IE Settings.

  • Enabled Homepage Reports Not Appearing in "Available Sections" picklist

    Good afternoon,
    I have created numerous custom homepage reports and have enabled them to be added to homepage layouts. However, when building a new homepage layout, not all of the reports that have been enabled are visible in the "Available Sections" picklist. I cannot figure out why because all of the reports are listed in the "My Homepage Custom Reports" section. Is there a limit to the number of reports that will appear in the "Available Sections" picklist?
    I'm stumped on this one. Has anyone encountered this problem? If so, is there a solution or a possible reason this is happening?
    Thanks in advance!
    Ryan

    when you set up the reports did you select home page in the drop down or did some of them get set a detail page reports? that would be my only suggestion.
    cheers
    alex

  • Users not able to see all the default reports in FDM under analysis

    All,
    Users in FDM are not able to see all the default reports which will be available under Analysis. I have checked the MenuNavigation and MenuNavigationItems under object maintainence in FDM which have "ALL" as the provisioning level. I am not sure where the issue is as the users still not able to see the reports. Please advise if there is something that can be done in workbench.
    Regards

    You can set security on Report folders in workbench.  You would go to the report tab in workbench, and right click on a Folder (Cannot do it on the individual report, it has to be on the folder), and you can assign security levels to the report folder.  There are some in here that default to the admin level but you can override it.
    Regards
    JTF

  • Report numbers not matching Essbase

    Interesting issue: I have two financial reports - one which pulls the an account value (sales) for products & sub products. the second report shows the YTD totals for these products. The second report is showing incorrect numbers. I compared the numbers in the first report with what is in Essbase and it seems to be reflecting the correct numbers. However, for some reason the numbers are all off on the second report. Any ideas how to troubleshoot this?
    And yes - I made sure I was compared the right members from each dimension.
    thanks.

    Jake,
    you are correct, its the YTD values that are incorrect.
    The numbers are being calculated in the report itself. This is a planning app, and no dynamic time series has been set up.
    I did notice something which I thought was weird. When in workspace, I go to the period dimension through Administration -> Manage Dimensions. I then select say Q1 and click on "options". It shows CURRENT YEAR is set to FY2012. I didn't changed this because the rest of the system seems to be working fine, but just wondering.
    Any insight into how you would troubleshoot this would be highly appreciated.

  • Conditional enabling of report fields

    Hi,
    I have a report region with 2 editable fields (based on DB columns). Lets call them A and B.
    I want to enable editing A, only if B is empty, and enable editing B, only if A is empty.
    If both are empty, then both should be editable, until the user enters a value to one of them, what will automatically disable the other one.
    So how do I do it?
    Thanks.
    Anat :o)

    Hello Anat,
    "I want to enable editing A, only if B is empty, and enable editing B, only if A is empty."As the default state of the tabular form is that all columns are enabled, we need to reverse your logic to use the disable terminology. Therefore, if I'm not mistaken, the new logic is this:
    - Disable cell in column A if cell in column B is not empty;
    - Disable cell in column B if cell in column A is not empty.
    This solution is base on two features of the tabular form columns. All the cells in a specific column have the same name. The name derived from the location of the column in the tabular form – The first column is f01, the second is f02 and so on. Every cell in the column has a unique id, derived from the column name and the row serial number. The first cell in the second column will have the id of "f02_0001" and the 4th cell in the same column will have the id of "f02_0004".
    First, we will deal with the situation right after loading the tabular form. We are gathering all the cells from columns A and B and evaluate them. For the purpose of this example I'm assuming that column A is 4th, and column B is 6th. In the Region Footer of the report you should place something like the following code:
    <script language="JavaScript" type="text/javascript">
    <!-- Hide
    var colA = document.getElementsByName('f04');
    var colB = document.getElementsByName('f06');
    for (var i=0; i<colA.length; i++) {
      if (colA.value.length > 0) {
    colB[i].readOnly=true;
    if (colB[i].value.length > 0) {
    colA[i].readOnly=true;
    // End Hide -->
    </script>
    Now we need to deal with the situation where both cells are empty, and the user change one of them. In the report attribute tab, you need to edit the specific columns attributes. In the "Element Attributes" of column A add onchange="setColBtoRO(this);", and for column B add onchange="setColAtoRO(this);"
    The corresponding functions will be:
    function setColBtoRO(pId)
       elmId = $x(pId).id;
       newElmId = elmId.replace(/f04/,'f06');
       $x(newElmId).readOnly=true;
    function setColAtoRO(pId)
       elmId = $x(pId).id;
       newElmId = elmId.replace(/f06/,'f04');
       $x(newElmId).readOnly=true;
    }You should add these functions before the closing </script> tag in the report footer.
    JS is case sensitive. Please pay attention to that.
    Hope this helps,
    Arie.

  • OBIEE report with HFM and Essbase Data source

    Hi All,
    Just want your though can we get the data from HFM and Essbase data source in a single report i.e. for some account i want to show budget data from HFM and Forecast data from essbase in a single OBIEE report? If yes how can we model both Data source in rpd?

    It possible but the challenge is to try to align the account hierarchy and the entity hierarchy between Essbase and HFM. HFM is looking the data at a top side consolidation level where planning will have more granular details to forecast correctly. The best solution is either to build a custom table in to import both sources, or to use HFM data into Essbase, or to use EPMA. The best in class solution stays to align hierarchies and metadata across applications. We implemented BI Financials Dashboard for the General Ledger, built a custom Dashboard connected in Real Time to Planning and are installing OFMA to connect HFM. Once done, you can rationalize metadata if not done before and start to link the different data into single reports. You will also have to ensure the data is refreshed at the same time to avoid inconsistency.

Maybe you are looking for

  • Unable to parse WSDL of partnerlink after migrating from 10g to 11g

    Hi, My service is an Sync BPEL process calling a customised WSDL with the partnerlink. I migrated the working code of 10g to 11g. But compiling below is the error i am getting while trying to parse the WSDL of the partnerlink after migration. =======

  • 3050A Scanner won't talk to my Mac OSX 10.6.8

    I originally had the issue where the scanner was simply scanning a portion of the page (mentioned and solved in another thread here). However, my problem has now grown.... I was temporarily able to the scan images correctly by going through the Appli

  • Pages PDF on desktop

    I made a article in Pages, so I exported to the desk top by PDF now I can not move it to the tash, it keeps saying can not remove.  There must be a way. Please help.  When I click on Desktop it does not show in a finder window but I can see it on my

  • How to help 2 NATed hosts get a second channel without server?

    Hi All, I'm working on a videoconferencing project. With the help of a relay, the direct connection channel has been setup between two NATed hosts. The question now is how to move it forward to setup a second channel without the help of that relay? M

  • PSE10 Photobook print and save problem

    Hey all I have had some major problems with creating Photobooks on PSE10. The problem is that I have is that it is not saving the PSE file correctly. My last project (kids school prject) was complete (8 pages) and looked good with a title page. I tri