Float path

what is float path and why we r using that

welcome Bihmerson to the  iMovie boards ...
Bihmerson wrote:
I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.
not possible within iMovie (any version... )
only option:
FinalCutExpress, 199$ .. it allows anything you want..

Similar Messages

  • Multiple Float Paths

    I have a problem related to the multiple float
    paths.
    After marking the float path
    in the tools, schedule, advanced, multiple paths = 10,
    etc., the fields "Float Path" and "Float Path Order"
    remain empty.
    Can anybody give me a
    hint on what might have gone wrong.
    <br
    />Ikaros

    Try Grouping by Float Path or Float Path Order.<br
    />
    Cheers

  • How to display the NULL records by multiple XMLTABLE()

    First, let me provide the testing data of INSERT and CREATE TABLE sql:
    create table xml_t2 (xml_raw XMLTYPE);insert sql, a bit long.....just copy and paste then run it will be OK!
    the system warns: Your message exceeds the maximum length of 30000 characters.
    So, I place it on the mediafire shariing space
    http://www.mediafire.com/?npmot6lgl86dgliTesting SQL:
    SELECT t1.years, t1.months,t1.days,t1.hours,t1.value,t2.value
            FROM xml_t2,
            XMLTABLE ('$d/cdata/F1' passing xml_raw as "d" COLUMNS years integer path '//year', months varchar(3) path '//month', days varchar(2) path '//day', hours varchar(2) path '//hour', mins varchar(2) path '//minute', value float path '//value') t1 ,
            XMLTABLE ('$d/cdata/F2' passing xml_raw as "d" COLUMNS years integer path '//year', months varchar(3) path '//month', days varchar(2) path '//day', hours varchar(2) path '//hour', mins varchar(2) path '//minute', value float path '//value') t2The condition for now is....In the xml data, I have deleted the month 'Jan' with <F2>tag which is in 2010.
    That mean the output of XMLTABLE t2 will not contain the 'Jan' records but it is still remain in XMLTABLE t1.
    The problem is that when I use the above SQL to show the t1.value, it will not display the t1.value in 2010 Jan.....it just skipped 'Jan' and becomes 'Feb'...
    what i would prefer to display is something like this:
    YEARS MONTHS DAYS HOURS t1_value t2_value
    2009     Jan    01   01       8       8
    2009     Jan    01   02       8     580
    2009     Jan    02   01     580     580
    2009     Jan    02   02     580     580
    2009     Feb    01   01     440     440
    2010     Jan    01   01     627     NULL
    2010     Jan    01   02     627     NULL
    2010     Jan    02   01     367     NULL
    2010     Jan    02   02     367     NULL
    2010     Feb    01   01     367     849
    2010     Feb    01   02     849     849
    ..............So...the main problem is how to display back the record in JAN in 2010 in t1 XMLTABLE and assign null to the t2 XMLTABLE since it doen't contains this months record.
    THANKS for help!!

    Hi,
    What's your database version?
    Are you using binary XML storage? (This is the default in 11.2.0.2)
    If not you have to explicitely specify it :
    create table xml_t2 (xml_raw XMLTYPE)
    xmltype column xml_raw store as securefile binary xml;Along with object-relational, it's the best storage strategy to use in conjunction with XMLIndex.
    You should also use a structured XML index instead, it's more appropriate than the unstructured index you're currently using :
    create index xml_t2_sxi on xml_t2 (xml_raw)
    indextype is xdb.xmlindex
    parameters (q'#
    XMLTABLE xml_t2_xt '/cdata'
    COLUMNS
    YEARS  INTEGER    PATH 'F1/name/year',
    MONTHS VARCHAR(3) PATH 'F1/name/month',
    DAYS   VARCHAR(2) PATH 'F1/name/day',
    HOURS  VARCHAR(2) PATH 'F1/name/hour',
    MINS   VARCHAR(2) PATH 'F1/name/minute',
    VALUE  FLOAT      PATH 'F1/name/value',
    VALUE2 FLOAT      PATH 'F2/name/value'
    call dbms_stats.gather_table_stats(user, 'XML_T2');Use the query provided by Stew and check the explain plan, you'll see the difference.

  • Call a web services from oracle forms 10

    I have to call a web services from oracle forms.
    The version of the database is oracle 11gr2. the version of the forms is 10.1.2.0.2.
    I allready did the proxy creation and the import class within forms.
    I have 2 questions:
    1.
    I created the following procedure:
    PROCEDURE call_WS IS
         vobject1 ORA_JAVA.JOBJECT;
         vobject2 ORA_JAVA.JOBJECT;
    BEGIN
    vobject1 := WSEvaluarReglaCondicionComerci.new();
    vobject2 := WSEvaluarReglaCondicionComerci.listarValoresAtributoEvento(vobject1, 702, 2217, null, null, null);
    END;
    the function I calling:
    FUNCTION listarValoresAtributoEvento(
    obj ORA_JAVA.JOBJECT,
    a0 ORA_JAVA.JOBJECT,
    a1 ORA_JAVA.JOBJECT,
    a2 ORA_JAVA.JOBJECT,
    a3 VARCHAR2,
    a4 ORA_JAVA.JOBJECT) RETURN ORA_JAVA.JOBJECT;
    Note that the parameters is ORA_JAVA_JOBJECT and I need to send numbers. I understand that when I import the classes, because in the WS those parameters are defined as BigDecimal, Forms understand them as java object but when I compile it reports the error: "numero o tipo de argumento erroneo al llamar..." type error.
    So the question is, how Cast the numbers to Java Object to send them.
    I have read in a web page that one option is to change in the web service the type of the parameters but that is not an option.
    2.
    The WS returns a super big XML as answer, so how I can parse the result into an Object type?...
    The object structure is:
    TYPE opciones_obj AS OBJECT
    (strindice VARCHAR2 (4000),
    nombrecompleto VARCHAR2 (4000),
    nombre VARCHAR2 (4000),
    strtipodato VARCHAR2 (4000),
    codigoopcion NUMBER,
    floatval FLOAT,
    strtipo VARCHAR2 (4000),
    strval VARCHAR2 (4000));
    and the tags to extract is:
    COLUMNS strindice VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strIndice"]/ns2:value',
    nombrecompleto VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="nombreCompleto"]/ns2:value',
    nombre VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="nombre"]/ns2:value',
    strtipodato VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strTipoDato"]/ns2:value',
    codigoopcion NUMBER
    PATH 'ns2:mapEntry[ns2:key="codigoOpcion"]/ns2:value',
    floatval FLOAT
    PATH 'ns2:mapEntry[ns2:key="floatVal"]/ns2:value',
    strtipo VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strTipo"]/ns2:value',
    strval VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strVal"]/ns2:value') x;
    xquery / xmltype aparently is not an option because the xml is too big.
    I will appreciate your answers.
    Thanks.
    Edited by: user13058213 on 26-ene-2012 16:02

    i created jar file to call it from forms
    Could you be a little bit less vague about what you exactly did?
    Anyway; see here http://bit.ly/10VVoMR
    cheers

  • How to group each 3 months of a year and dynamic a new column?

    I have a sql which can display the belows records.
    YEARS MONTHS SUMMONTH SUMYEAR
    2009 Apr      130288 1720164
    2009 Aug      138776 1720164
    2009 Dec      140294 1720164
    2009 Feb      136422 1720164
    2009 Jan      148253 1720164
    2009 Jul      149842 1720164
    2009 Jun      122805 1720164
    2009 Mar      145872 1720164
    2009 May      151193 1720164
    2009 Nov      133487 1720164
    2009 Oct      169443 1720164
    2009 Sep      153489 1720164
    2010 Apr      142255 1719457
    2010 Aug      135894 1719457
    2010 Dec      171203 1719457
    2010 Feb      137011 1719457
    2010 Jan      145493 1719457
    2010 Jul      137474 1719457
    2010 Jun      154411 1719457
    2010 Mar      133062 1719457
    2010 May      146887 1719457
    2010 Nov      139869 1719457
    2010 Oct      127191 1719457
    2010 Sep      148707 1719457
    24 rows selected The SQL that I am using:
    select years, months, summonth, sumyear
    from(
    select years, months, SUM (sumHour) OVER (PARTITION BY years,months) sumMonth, SUM (sumHour) OVER (PARTITION BY years) sumyear
    from (SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
    FROM xmltest,
    XMLTABLE ('$d/cdata/name' passing xmldoc as "d"
       COLUMNS
      years integer path 'year',
      months varchar(3) path 'month',
      days varchar(2) path 'day',
      hours varchar(2) path 'hour',
      mins varchar(2) path 'minute',
      value float path 'value'
      ) as X
      group by x.years, x.months, x.days, x.hours, x.mins
      order by x.years, x.months, x.days
      group by years,months,summonth,sumyear
      order by yearsand now the problems is...how can I group the sum of 3months of record as a quarter of year in a dynamic column?
    The display should be likie this:
    YEARS MONTHS SUMMONTH SUMQUARTER SUMYEAR
    2009 Feb      136422     430547 1720164
    2009 Jan      148253     430547 1720164
    2009 Mar      145872     430547 1720164
    2009 Apr      130288     404286 1720164
    2009 Jun      122805     404286 1720164
    2009 May      151193     404286 1720164
    2009 Aug      138776     442107 1720164
    2009 Jul      149842     442107 1720164
    2009 Sep      153489     442107 1720164
    2009 Dec      140294     443224 1720164
    2009 Nov      133487     443224 1720164
    2009 Oct      169443     443224 1720164
    2010 Feb      137011     415566 1719457
    2010 Jan      145493     415566 1719457
    2010 Mar      133062     415566 1719457
    2010 Apr      142255     443553 1719457
    2010 Jun      154411     443553 1719457
    2010 May      146887     443553 1719457
    2010 Aug      135894     422075 1719457
    2010 Jul      137474     422075 1719457
    2010 Sep      148707     422075 1719457
    2010 Dec      171203     438263 1719457
    2010 Nov      139869     438263 1719457
    2010 Oct      127191     438263 1719457
    24 rows selected Thanks everyone helps me.!!

    may be using an outer select :
    SQL> with sample_tab as
      2  (
      3  select  2009 year, 'Aug' month, 138776 summonth , 1720164  sumyear from dual union all
      4  select  2009,'Apr',130288,     1720164 from dual union all
      5  select  2009,'Dec', 140294 , 1720164  from dual union all
      6  select  2009,'Feb', 136422 , 1720164  from dual union all
      7  select  2009,'Jan', 148253 , 1720164  from dual union all
      8  select  2009,'Jul', 149842 , 1720164  from dual union all
      9  select  2009,'Jun', 122805 , 1720164  from dual union all
    10  select  2009,'Mar', 145872 , 1720164  from dual union all
    11  select  2009,'May', 151193 , 1720164  from dual union all
    12  select  2009,'Nov', 133487 , 1720164  from dual union all
    13  select  2009,'Oct', 169443 , 1720164  from dual union all
    14  select  2009,'Sep', 153489 , 1720164  from dual union all
    15  select  2010,'Apr', 142255 , 1719457  from dual union all
    16  select  2010,'Aug', 135894 , 1719457  from dual union all
    17  select  2010,'Dec', 171203 , 1719457  from dual union all
    18  select  2010,'Feb', 137011 , 1719457  from dual union all
    19  select  2010,'Jan', 145493 , 1719457  from dual union all
    20  select  2010,'Jul', 137474 , 1719457  from dual union all
    21  select  2010,'Jun', 154411 , 1719457  from dual union all
    22  select  2010,'Mar', 133062 , 1719457  from dual union all
    23  select  2010,'May', 146887 , 1719457  from dual union all
    24  select  2010,'Nov', 139869 , 1719457  from dual union all
    25  select  2010,'Oct', 127191 , 1719457  from dual union all
    26  select  2010,'Sep', 148707 , 1719457  from dual
    27  )
    28  select year,
    29         month,
    30         summonth,
    31         sum(summonth) over(partition by year || to_char(ym, 'Q') order by year || to_char(ym, 'Q')) sumquarter,
    32         sumyear
    33    from (
    34          select year,
    35                  month,
    36                  summonth,
    37                  sumyear,
    38                  to_date(year || month, 'YYYYMon') ym
    39            from sample_tab)
    40   order by ym
    41  ;
          YEAR MONTH   SUMMONTH SUMQUARTER    SUMYEAR
          2009 Jan       148253     430547    1720164
          2009 Feb       136422     430547    1720164
          2009 Mar       145872     430547    1720164
          2009 Apr       130288     404286    1720164
          2009 May       151193     404286    1720164
          2009 Jun       122805     404286    1720164
          2009 Jul       149842     442107    1720164
          2009 Aug       138776     442107    1720164
          2009 Sep       153489     442107    1720164
          2009 Oct       169443     443224    1720164
          2009 Nov       133487     443224    1720164
          2009 Dec       140294     443224    1720164
          2010 Jan       145493     415566    1719457
          2010 Feb       137011     415566    1719457
          2010 Mar       133062     415566    1719457
          2010 Apr       142255     443553    1719457
          2010 May       146887     443553    1719457
          2010 Jun       154411     443553    1719457
          2010 Jul       137474     422075    1719457
          2010 Aug       135894     422075    1719457
          YEAR MONTH   SUMMONTH SUMQUARTER    SUMYEAR
          2010 Sep       148707     422075    1719457
          2010 Oct       127191     438263    1719457
          2010 Nov       139869     438263    1719457
          2010 Dec       171203     438263    1719457
    24 rows selected
    SQL>

  • How to define a dynamic column to count the quarter of each year?

    Lets see the result that now displayed:
    YEARS MONTHS SUMMONTH SUMYEAR SUMQUARTER
    2009 Jan      127994 1766166     449652
    2009 Feb      168106 1766166     449652
    2009 Mar      153552 1766166     449652
    2009 Apr      160329 1766166     438913
    2009 May      137605 1766166     438913
    2009 Jun      140979 1766166     438913
    2009 Jul      148606 1766166     435283
    2009 Aug      150390 1766166     435283
    2009 Sep      136287 1766166     435283
    2009 Oct      149529 1766166     442318
    2009 Nov      153268 1766166     442318
    2009 Dec      139521 1766166     442318
    2010 Jan      124670 1721212     407181
    2010 Feb      139278 1721212     407181
    2010 Mar      143233 1721212     407181
    2010 Apr      149518 1721212     444112
    2010 May      152292 1721212     444112
    2010 Jun      142302 1721212     444112
    2010 Jul      149125 1721212     412855
    2010 Aug      130328 1721212     412855
    2010 Sep      133402 1721212     412855
    2010 Oct      157754 1721212     457064
    2010 Nov      137078 1721212     457064
    2010 Dec      162232 1721212     457064
    The problem is about how to dynamic a new column called "Q_count" to count each displayed row belong to which quarter of year??
    In addition, it will repeat again from next year.
    For example:
    *2009 Jan-Mar will display "q1", Apr-Jun will display "q2".....and for 2010 Jan-Mar, it will display "q1" again and so on.*
    Here is my sql that I am using:
    select years,months,summonth,sumyear,sumquarter
    from(
    select years,months,summonth,sumyear,
            sum(sumhour) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,ym
    from(
    select years, months, days, hours, mins, sumHour, SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay, SUM (sumHour) OVER (PARTITION BY years,months) sumMonth, SUM (sumHour) OVER (PARTITION BY years) sumyear,
    to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
    from (SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
    FROM xmltest,
    XMLTABLE ('$d/cdata/name' passing xmldoc as "d"
       COLUMNS
      years integer path 'year',
      months varchar(3) path 'month',
      days varchar(2) path 'day',
      hours varchar(2) path 'hour',
      mins varchar(2) path 'minute',
      value float path 'value'
      ) as X
      group by x.years, x.months, x.days, x.hours, x.mins
      order by x.years, x.months, x.days
      group by years,months,summonth,sumyear,sumquarter,ym
      order by ymThanks everyone helps me!!!

    If my understanding is correct..
    select years,months,summonth,sumyear,sumquarter,qtr
    from(
            select years,months,summonth,sumyear,to_char(ym, 'Q') qtr,
                    sum(sumhour) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,ym
            from(
                    select   years, months, days, hours, mins, sumHour,
                             SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay,
                             SUM (sumHour) OVER (PARTITION BY years,months) sumMonth,
                             SUM (sumHour) OVER (PARTITION BY years) sumyear,
                             to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
                    from  (
                            SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
                            FROM xmltest,
                                 XMLTABLE ('$d/cdata/name' passing xmldoc as "d"
                                            COLUMNS
                                              years integer path 'year',
                                              months varchar(3) path 'month',
                                              days varchar(2) path 'day',
                                              hours varchar(2) path 'hour',
                                              mins varchar(2) path 'minute',
                                              value float path 'value'
                                           ) as X
                            group by x.years, x.months, x.days, x.hours, x.mins
                            order by x.years, x.months, x.days
    order by ymEdited by: jeneesh on Mar 26, 2012 5:49 PM
    Removed unnecessary GROUP BY

  • Xml query hungs up with large xml response from utl_http request

    We are having very sensitive problem in Production environment with xmlquery.
    When receive a small or medium size xml, the query shown below works. But when the xml is large or very large its hung and slow down all the database.
    We are with Oracle 11gR2
    We are using clob to parse the response from the http request.
    What could be the problem or the solutions?. Please help. Its urgent...
    SELECT opciones_obj (x.strindice,
    x.nombrecompleto,
    x.nombre,
    x.strtipodato,
    x.codigoopcion,
    x.floatval,
    x.strtipo,
    x.strval)
    BULK COLLECT INTO t_opciones
    FROM XMLTABLE (
    xmlnamespaces (
    'http://schemas.xmlsoap.org/soap/envelope/' AS "env",
    'http://wsevaluarreglacondicioncomercial/' AS "ns0",
    'http://wsevaluarreglacondicioncomercial/types/' AS "ns1",
    'http://www.oracle.com/webservices/internal/literal' AS "ns2"),
    '/env:Envelope/env:Body/ns0:listarOpcionesAtributoEventoResponseElement/ns0:result/ns1:listaVariables/ns2:item/ns2:item'
    PASSING rsp_xml
    COLUMNS strindice VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strIndice"]/ns2:value',
    nombrecompleto VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="nombreCompleto"]/ns2:value',
    nombre VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="nombre"]/ns2:value',
    strtipodato VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strTipoDato"]/ns2:value',
    codigoopcion NUMBER
    PATH 'ns2:mapEntry[ns2:key="codigoOpcion"]/ns2:value',
    floatval FLOAT
    PATH 'ns2:mapEntry[ns2:key="floatVal"]/ns2:value',
    strtipo VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strTipo"]/ns2:value',
    strval VARCHAR2 (4000)
    PATH 'ns2:mapEntry[ns2:key="strVal"]/ns2:value') x;

    What could be the problem or the solutions?1) Create an XMLType table (could be temporary) using binary XML storage :
    create table tmp_xml of xmltype
    xmltype store as securefile binary xml;2) In your procedure, load the XMLType containing the response (rsp_xml) into the table :
    insert into tmp_xml values (rsp_xml);3) Then, execute the query directly from the table :
    SELECT opciones_obj ( ... )
    BULK COLLECT INTO t_opciones
    FROM tmp_xml t
       , XMLTABLE (
             xmlnamespaces ( ... ),
             '/env:Envelope/env:Body/...'
             PASSING t.object_value
             COLUMNS ...4) At the end of the procedure, delete (or truncate) the table or simply let the table delete itself when the session ends (in case you created it TEMPORARY)

  • Whats new in SP5 P6

    Hey all!
    I am a very new user to Primavera (1 week) and am still trying to grasp a few things. My company is planning to upgrade from SP2 to SP5 (we will upgrade to SP3 first ofcourse).
    I was wondering if there was a list of "Whats New in SP5"? I tried checking online and all I got was a dead link on the Oracle site.
    I have seen the "Issues Resolved" but I am more keen to find something that would benefit the users and not just the system admins.

    You need an account at https://support.oracle.com. From there just search the knowledgebase for the ID number 1515477.1
    Here's a list of the bug fixes:
    Document ID
    Title
    11804854
    Bar Necking Does Not Show In Print Preview Or In Printed Output
    12707683
    Actual Units Spread In Client Does Not Match Progress Reporter Timesheet
    13255205
    Exception Cvrjc-2214-a Upon Import Of XER
    13402354
    Hierarchical Sort On Activity Codes Not Working In Resource Assignments View
    13698960
    Finish Date Randomly Changes When Applying An Actual Finish On Certain Activities
    13775782
    Templates.xml File For TSLD Saved To Local Settings Folder
    13828031
    P6 SDK Fails To Connect After Time Between Connections Exceeds 2 Minutes
    13848062
    EST Weight Values Not Saved Correctly In P6 Professional
    13897997
    This User Is Already Logged In When Usession.os_user_name Does Not Match Case
    13925296
    Scheduling Performance With Multiple Projects And Multiple Float Paths
    13926902
    Update Baseline Error "User Does Not Have Edit Privileges On Activity Code Type"
    14025095
    Use Resource Usage Profile/by Role/filter By All Roles,pm.exe Consuming 100% CPU
    14058139
    Activity Step Descriptions Not Displayed When Migrating To Al32utf8 DB
    14128130
    Error: "Call Was Rejected By Callee" When Selecting File, Import
    14288218
    Project Management Closes When Scheduling A Project
    14498967
    Audit On Rsrc Table Makes P6 Client And Timesheets Crash
    14812298
    Copy/paste Of Activities Causes AVAA0 Error
    14813190
    P6 Project Open Slow Performance Due To External Dependencies Query
    14843033
    Update Baseline Errors In updatebaselinelog.xml
    14843047
    Baseline Update SQL Statement Database Execution Select Error
    14843057
    Update Baseline Errors: "Updateidmap() - List Size Does Not Equal Array Length"
    15830537
    Would Like The Ability To Select Multiple Relationships Across WBS Bands In P6
    15830771
    AVAA0 Errors When Switching Back To Projects View
    15849603
    Transferring Committed Contract Values To PM, The Values Are Multiplied By 100
    16104901
    Selecting Parent Role In Resource Usage Profile Includes Child Role Data

  • Calculate subtraction by a specific quarter of year

    I have some records after SQL generating:
    YEARS MONTHS SUMMONTH SUMQUARTER QTR
    2009 Jan      363639     855922 1  
    2009 Feb      128305     855922 1  
    2009 Mar      363978     855922 1  
    2009 Apr      376633    1058871 2  
    2009 May      299140    1058871 2  
    2009 Jun      383098    1058871 2  
    2009 Jul      435000    1063577 3  
    2009 Aug      266227    1063577 3  
    2009 Sep      362350    1063577 3  
    2009 Oct      449366    1017906 4  
    2009 Nov      280943    1017906 4  
    2009 Dec      287597    1017906 4  
    2010 Jan      418277     661083 1  
    2010 Feb      129895     661083 1  
    2010 Mar      112911     661083 1  
    2010 Apr      163593     685625 2  
    2010 May      228505     685625 2  
    2010 Jun      293527     685625 2  
    2010 Jul      451608    1044364 3  
    2010 Aug      356683    1044364 3  
    2010 Sep      236073    1044364 3  
    2010 Oct      247365     798925 4  
    2010 Nov      414100     798925 4  
    2010 Dec      137460     798925 4  
    24 rows selected The SUMQUARTER column sum up each quarter of a year... The qtr specify it belongs to which quarter.
    The problem is how to have a subtraction of sumquarter between 2 different years to get the specific query result?
    The difference is not the: max value-min value. It is the user-defined value that he want to input...
    Let say... For example, the user want to see the substraction(sumquarter) between 2009 qtr=2 and 2010 qtr=2, user may change the parameter(years,qtr) of sql to view the record.
    This mean the result should be: (1058871 - 685625)
    Here is the SQL that I am currently using:
    select years,months,summonth,sumquarter,qtr
    from(
            select years,months,summonth,sumhour,hours,to_char(ym, 'Q') qtr,
                    sum(sumhour) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,ym,
                    count(days) over(partition by years,months,hours) days_month
            from(
                    select   years, months, days, hours, mins, sumHour,
                             SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay,
                             SUM (sumHour) OVER (PARTITION BY years,months) sumMonth,
                             SUM (sumHour) OVER (PARTITION BY years) sumyear,
                             to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
                    from  (
                            SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
                            FROM xmltest,
                                 XMLTABLE ('$d/cdata/name' passing doc as "d"
                                            COLUMNS
                                              years integer path 'year',
                                              months varchar(3) path 'month',
                                              days varchar(2) path 'day',
                                              hours varchar(2) path 'hour',
                                              mins varchar(2) path 'minute',
                                              value float path 'value'
                                           ) as X
                            group by x.years, x.months, x.days, x.hours, x.mins
                            order by x.years, x.months, x.days
      group by years,months,summonth,sumquarter,qtr,ym
      order by ymThe sql pattern maybe something like this:...??
    select ((select sumquarter from table where years=2009 and qtr=2) - (select sumquarter from table where years=2010 and qtr=2)) from tableActually, it doesn't work...
    The result maybe look in this view:
    SUBTRACT
    373246Thanks everyone helps!!:)
    Edited by: 920575 on 2012/3/27 上午 1:50

    ok...I am so sorry to make you confused...
    Here is my sql which combined with yours:
    with tbl as (
    select years,months,summonth,sumquarter,qtr
    from(
            select years,months,summonth,sumhour,hours,to_char(ym, 'Q') qtr,
                    sum(sumhour) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,ym,
                    count(days) over(partition by years,months,hours) days_month
            from(
                    select   years, months, days, hours, mins, sumHour,
                             SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay,
                             SUM (sumHour) OVER (PARTITION BY years,months) sumMonth,
                             SUM (sumHour) OVER (PARTITION BY years) sumyear,
                             to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
                    from  (
                            SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
                            FROM xmltest,
                                 XMLTABLE ('$d/cdata/name' passing doc as "d"
                                            COLUMNS
                                              years integer path 'year',
                                              months varchar(3) path 'month',
                                              days varchar(2) path 'day',
                                              hours varchar(2) path 'hour',
                                              mins varchar(2) path 'minute',
                                              value float path 'value'
                                           ) as X
                            group by x.years, x.months, x.days, x.hours, x.mins
                            order by x.years, x.months, x.days
      group by years,months,summonth,sumquarter,qtr,ym
      order by ym
    tagg as (
    select years, qtr, sumquarter
       from tbl
       group by years, qtr, sumquarter
           select ta.years Ya, ta.qtr Qa, tb.years Yb, tb.qtr Qb, abs(ta.sumquarter - tb.sumquarter) diffAB
             from tagg ta
             join tagg tb
             on (1=1)
           where ta.years=2010 and ta.qtr=1
               and tb.years=2009 and tb.qtr=1;It will display as "No data to read from socket".........
    I can provided the insert query if you would like to have one. I can't paste at here because it is so large...

  • How can make an image "float" across the screen on a path I set?

    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.

    welcome Bihmerson to the  iMovie boards ...
    Bihmerson wrote:
    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.
    not possible within iMovie (any version... )
    only option:
    FinalCutExpress, 199$ .. it allows anything you want..

  • Dynamic path does not work in Css files

    Hi,
    I have a css file in which i have used few images, but when i try to make the path dynamic and include that css in my page the image doesn't appear but when i put the complete path in it it works.
    It works when used in this way :
    .inputrightbg
         background-image: url(http://<hostname>:<port>/idc/groups/public/documents/omp_images/input_rightbg.gif); background-repeat: no-repeat; background-
    position: right top; float: left; padding: 4px 10px 4px 0px; height: 26px;
    Doesn't work when use in this way :
         background-image: url(<!--$HttpRelativeWebRoot-->groups/public/documents/omp_images/input_rightbg.gif); background-repeat: no-repeat;
    background-position: right top; float: left; padding: 4px 10px 4px 0px; height: 26px;
    Thanks,
    Abhijit

    Right, you can't put IdocScript in css.
    You can use the Web URL Map though to make urls that are easy to deposit in CSS.
    Check these out:
    http://www.corecontentonly.com/index.php/2009/10/14/web-url-map-extras/
    http://blogs.oracle.com/kyle/2009/09/friendly_urls_for_ucm.html
    -Jason
    http://www.corecontentonly.com
    http://www.redstonecontentsolutions.com

  • What is the best way to build a career path where I can evolve into an SAP role instead of one that is Customer Service based?

    In October 2011, my previous employer converted to SAP, as the rest of the worldwide entities were already using SAP. At that time, I was an Order Coordinator, where my job role was to process all of the Inside/Outside Sales Representatives orders for the US. Because of my keen attention to detail, the speed in which I learn new roles and general IT knowledge, I was asked to be the SAP SuperUser for our Financial Operations team. I quickly began to learn the roles of Order-to-Cash, Customer Master Data, Pricing Conditions, Contracts, some Material Master Data, and even Customer/Material Pricing Audits. I also performed manual customer billing in SAP until the automatic modules were implemented. Knowledge of these roles created a need for me to become a trainer to my team, where the SAP Consultants left off. After only working in SAP for the few months after the conversion started, I evolved out of an Order Coordinator rights of access and was given a not-so-typical role as an "analyst". I had more than a firefighter role in SAP, as my normal log in credentials gave me full rights to all of these modules and even special reporting. Our parent global company realized necessity for my role and followed proper protocol to authorize the access changes to still meet the SOx regulations. Prior to using SAP, I never thought I'd fall in love with it and enjoy my job so much, but it happened! Despite my previous employer's less than perfect data that was copied into SAP, we managed to have an efficient ongoing process to clean it all up.  I became more of a liaison between Financial Operations and our IT Dept/SAP Consultants. I "translated" the technical steps that IT/SAP Consultants were trying to teach everyone and trained my Financial Operations team in a way they would understand. I truly enjoyed my job, even at our most difficult moments.
    However, after all of the fun I was having while working in SAP and truly gaining a ton of useful experience and knowledge, "life" happened and I had an opportunity to move from Atlanta, GA to southern California. I've searched for months to find a new career here in California with a company that I could continue my learning experiences and become more proficient in SAP, but I'm a little lost. My search to find jobs have only given me possibilities in Customer Service positions or ones that are SAP sales/programming based. I'm floating in limbo and looking for help from the SAP community on where I can go from here to get back into a career path with SAP.
    I'm 28 years old and I'm currently finishing my Associate degree in Business Administration. I'm a Microsoft Certified Professional (MCP), certified with the Help-Desk Institute as a Support Center Analyst, and also completed my previous employer's Quality Advocate Certification which focused on Six Sigma and Lean concepts. Prior to leaving the company, I was being considered for a company sponsored training in the Six Sigma Green or Black Belt program. I've recently started working a contract position as a Customer Service Rep, processing orders, but the company will be completing an SAP conversion in May 2013; so only a few months away. The problem I have in this position is that I feel frustrated in learning their current software when their entire team seems to have their own personal ways of doing their job. I prefer to have structure and perform job duties the right way, then building on that to make the job more streamlined. I spoke with my recruiter but he feels I may be a bit premature on feelings about working in this contract position. I may be just feeling a little impatient in having to wait another 3 months to see if the company may even hire me on permanently and what role I would have with SAP, beyond Customer Service Rep. I'm hoping to get some direction from the SAP community on where I might focus my attention in learning SAP. My hope is to find a position working with SAP like the one I enjoyed so much back in GA. I'm even considering options to learn the programming side. I think SAP is a great software package once people understand how it's designed, or can be designed, to work.
    Please help!!
    I'd be happy to provide my resume to anyone willing to review it and give me some pointers. Any advice would be greatly appreciated!

    I appreciate the length and detail of your post. I struggle answering questions from folks who give too little info. It's refreshing to have too much info for a change.
    I'll summarize your post and give suggestions:
    You have very strong end user experience, almost bordering on support level SD knowledge. You have experience with the way that at least one company implemented SAP SD but don't have many years of experience with different approaches, so you can't pitch yourself as someone who's "been-there, done-that" outside of the SD world and you can't bill yourself as having SD functional knowledge to the extend that you could be a consultant for SAP SD.  (See FAQ: Different Career Paths in SAP for descriptions of different traditional SAP career paths.)
    You've moved to Southern California, which is chock full of companies using SAP, by the way, and you're having a hard time finding the right job. Your education is probably going to be problematic at this point. Most SAP related jobs require a Bachelor's Degree at a minimum. Definitely keep on going with your degree. I don't know where you're doing your associate's degree, but you might want to look in to Cal State Fullerton, which has an *excellent* SAP focused business degree program. (http://business.fullerton.edu/).
    You've found work at a company but had to start over at a lower level of responsibility. Since the job you just landed will be transitioning to SAP in 3 months, you have an opportunity to repeat your previous rise by volunteering to be a super-user again. Alternatively, you could talk to the group within your company and express your desire to help out supporting the system from the back end. Traditionally, companies lose a few folks immediately following an implementation, so there's a good chance that if you make your desires and skills known, that you'll be able to move onto the support team once a position opens up.
    All of the above assumes that you want to continue on the functional side of SD. You didn't mention any aptitude or preference for programming. It is certainly easier to get programming jobs than functional jobs (see How did you get your start in SAP?), but it seems like you really enjoyed the functional side of SAP. I do *not* recommend learning an SAP skill for which you have no desire simply to get a job, hoping that you can switch later. Use the skills you have to get the job you really want, doing something that really excites you. It's far to easy to fall into a job simply because it's there and get trapped and burned out.
    Hope this helps!
    Best regards,
      --Tom

  • My tool bar and Layers pallet are behind my free floating files how do I get them on top?

    I have been a Photoshop CS user for about 13 years...I recently downladed CS5 to try it before I buy it. I've been a CS3 user for 3 or 4 years now. I love Photoshop but other than Photoshop I am not a very savvy computer user. So please bear with me as I try to explain my problem.
    When I open PSCS5 it fills my computer screen completely  and looks like this: A thin 1/2 inc strip on teh left that holds my "tools", a wider 2 inch strip on the right that holds "Layers, Channels, Paths" and a 1 1/2 inch strip on the top, then a big work area in the middle.
    I usually have 2- 12X12 300 dpi new files open AND 10-15 photos or scrapbook elements and papers open to work on at any one time.
    In prior versions of CS the tool strip and layer pallets strips were ALWAYS on top so I could access them no matter how much was open on the screen. In CS5 I keep burying them and have to dig them out to use them. When I use "Float All in Window", which I need, using Tabs does not allow me to see everything I need to see to work on documents, how do I get the tools and layers on TOP only?
    THANKS for listening...I hope you can help!
    Theresa

    You probably need to undock the panels on the right and the toolbox by clicking and dragging on the top out into the workspace.
    Then move them back to the sides of the workspace without docking them (the blue line means they are going to dock)

  • Does anyone know what "The floater" is?

    I just installed CS5.5 for the third time, and still get the error message:
    "Unable to find file floatui.htm in the Configuration/Floaters directory.
    The floater will not be shown."
    when Dreamweaver is launched.
    The program seems to work OK as far as I have been able to test it. All the floating windows appear when called up.
    System is windows 7 64 bit
    This happens when the installation is downloaded from the web or when it is installed from the DVD. Same happens if it is uninstalled first and the machine restarted prior to a subsequent install from DVD.
    Adobe technical help suggested that I re-install it, and also that I should rename the configuration file, but they were not exactly sure where this was located.
    Eventually it was decided that I should rename a folder called Dreamweaver CS5.5 in the configuration file that was in ....users/current_user/Appdata/Roaming/Adobe/ which I did, calling it Dreamweaver.old, and restart the program, which I did- with the same  result.
    There is no ..Configuration/Floaters directory in that path at all, but there is one in Programfiles(x86)/Adobe Dreamweaver CS5.5/configuration/
    However, this does not have the file mentioned, and a search of the entire computer can't find one either.
    So how do I get rid of the message? Insert a file with the correct name in this folder?
    Or is this just a quirk or an error in the DW installation script?

    I googled
    "Unable to find file floatui.htm in the Configuration/Floaters directory"
    and posted the first Adobe forums link which popped up.
    You can often find answers to obscure issues if you google a few keywords from an obscure error message.

  • Illustrator CC Quits Unexpectedly When Moving Paths

    It works fine until I try to move a path, any path, that I've drawn with the pen tool.  It happens on any file I work in  When I do, it quits and gives me the message below.  I haven't a clue how to interpret any of that.  Suggestions, please?
    Process:         Adobe Illustrator [1500]
    Path:            /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         17.1.0 (17.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [142]
    Responsible:     Adobe Illustrator [1500]
    User ID:         501
    Date/Time:       2014-02-18 19:18:52.630 -0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  B3A0132E-B579-C3FC-1AB9-D4C9C1E032E4
    Sleep/Wake UUID: 45444091-1DD5-4577-B19C-42386ED17FB9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-00000001014a9000 [ 20.7M] r-x/rwx SM=COW  /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Application Specific Information:
    objc_msgSend() selector name: length
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8fbe80a3 objc_msgSend + 35
    1   com.apple.CoreFoundation                0x00007fff8d2a87a0 __CFPasteboardCopyCanonicalBytesFromString + 32
    2   com.apple.CoreFoundation                0x00007fff8d2a7de8 CFPasteboardCreate + 888
    3   com.apple.AppKit                        0x00007fff90bd44df +[NSPasteboard _pasteboardWithName:] + 330
    4   com.adobe.dvaui.framework               0x000000010805b7d6 dvaui::datatransfer::OS_SendData::DoDragAndDrop(int, int*) + 358
    5   com.adobe.illustrator                   0x000000010060bd2e 0x100000000 + 6339886
    6   com.adobe.illustrator                   0x0000000100508293 0x100000000 + 5276307
    7   com.adobe.illustrator                   0x00000001005056ac 0x100000000 + 5265068
    8   com.adobe.illustrator                   0x00000001004f6bbb 0x100000000 + 5204923
    9   com.adobe.illustrator                   0x00000001004f47a3 0x100000000 + 5195683
    10  com.adobe.illustrator                   0x00000001004cd539 0x100000000 + 5035321
    11  com.adobe.illustrator                   0x0000000100479242 0x100000000 + 4690498
    12  com.adobe.illustrator                   0x000000010047d2f1 0x100000000 + 4707057
    13  com.adobe.illustrator                   0x000000010047b950 0x100000000 + 4700496
    14  com.adobe.illustrator                   0x0000000100484dcc 0x100000000 + 4738508
    15  com.adobe.illustrator                   0x0000000100488223 0x100000000 + 4751907
    16  com.adobe.dvaui.framework               0x00000001080e869a dvaui::ui::UI_Node::UI_DispatchPointerEventToLeaf(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvaui::ui::PointerEvent const&) + 154
    17  com.adobe.dvaui.framework               0x00000001080e824a dvaui::ui::UI_Node::DispatchPointerEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 122
    18  com.adobe.dvaui.framework               0x00000001080ee893 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchPointerEventTowardsLeafT<dvaui::ui::UI_Node::DispatchPoint erEvent>(dvaui::ui::UI_Node::DispatchPointerEvent&, dvacore::geom::PointT<float> const&, bool) + 163
    19  com.adobe.dvaui.framework               0x00000001080e74d1 dvaui::ui::UI_Node::UI_DispatchPointerEventTowardsLeaf(dvaui::ui::PointerEvent const&, bool) + 65
    20  com.adobe.dvaui.framework               0x00000001080e6bb2 dvaui::ui::UI_Node::UI_DispatchPointerEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::PointerEvent const&, bool) + 194
    21  com.adobe.dvaui.framework               0x00000001080e6a52 dvaui::ui::UI_Node::UI_DispatchPointerEvent(dvaui::ui::PointerEvent const&, bool) + 66
    22  com.adobe.dvaui.framework               0x00000001081630a7 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 663
    23  com.adobe.dvaui.framework               0x0000000108162c0e dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 622
    24  com.adobe.dvaui.framework               0x0000000108161478 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 120
    25  com.adobe.dvaui.framework               0x00000001081613d6 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 22
    26  com.adobe.dvaui.framework               0x0000000108162679 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    27  com.adobe.dvacore.framework             0x0000000107a0ba74 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 68
    28  com.adobe.illustrator                   0x000000010048f3f2 0x100000000 + 4781042
    29  com.adobe.dvacore.framework             0x0000000107a0bb0c void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 140
    30  com.adobe.dvacore.framework             0x0000000107a0ea1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    31  com.adobe.dvaui.framework               0x000000010816d2ba -[DVAMacContainerView mouseDown:] + 122
    32  com.apple.AppKit                        0x00007fff90c1dd08 -[NSWindow sendEvent:] + 11296
    33  com.adobe.owl                           0x000000010582a840 0x1057f4000 + 223296
    34  com.apple.AppKit                        0x00007fff90bbc744 -[NSApplication sendEvent:] + 2021
    35  com.adobe.dvaui.framework               0x0000000108166b7e -[DVAMacApplication sendEvent:] + 622
    36  com.adobe.exo.framework                 0x0000000108b0827f -[ExoMacApplication sendEvent:] + 559
    37  com.apple.AppKit                        0x00007fff90a0ca29 -[NSApplication run] + 646
    38  com.adobe.exo.framework                 0x0000000108b07c98 exo::app::OS_AppBase::RunEventLoop() + 56
    39  com.adobe.illustrator                   0x000000010048db15 0x100000000 + 4774677
    40  com.adobe.illustrator                   0x000000010043189c 0x100000000 + 4397212
    41  com.adobe.illustrator                   0x000000010041bfa7 0x100000000 + 4308903
    42  com.adobe.illustrator                   0x0000000100003754 0x100000000 + 14164
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8f656662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff9617643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff96176152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.AGM                           0x0000000102bfed0b 0x1028bc000 + 3419403
    3   com.adobe.AGM                           0x0000000102bff7bd 0x1028bc000 + 3422141
    4   com.adobe.AGM                           0x0000000102c157e8 0x1028bc000 + 3512296
    5   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8f651a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f650d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8d29e315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8d29d939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8d29d275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8f7fb907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8f7fb70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8f6559aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8d2e9d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8f655a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff95b17e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff95b17d52 usleep + 54
    3   com.adobe.illustrator.plugins.dBrushTool          0x0000000113cdb84b 0x113c84000 + 358475
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x0000000113cdc19f 0x113c84000 + 360863
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x0000000113cdc19f 0x113c84000 + 360863
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.AFlame                        0x000000011ada3b1b 0x11ac28000 + 1555227
    3   com.adobe.AFlame                        0x000000011ad5b234 0x11ac28000 + 1258036
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8f655a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff95b17e60 nanosleep + 200
    2   com.adobe.illustrator.plugins.ScriptingSupport          0x000000011126ec78 0x1110fb000 + 1522808
    3   com.adobe.illustrator.plugins.ScriptingSupport          0x000000011125704e 0x1110fb000 + 1425486
    4   com.adobe.illustrator.plugins.ScriptingSupport          0x000000011126e835 0x1110fb000 + 1521717
    5   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 10:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 11:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 12:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 13:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 14:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 15:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 16:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 17:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8f65591a __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x0000000123cb91a1 0x123ca1000 + 98721
    2   ServiceManager-Launcher.dylib           0x0000000123cb84bc 0x123ca1000 + 95420
    3   ServiceManager-Launcher.dylib           0x0000000123cb755e 0x123ca1000 + 91486
    4   ServiceManager-Launcher.dylib           0x0000000123cb75cc 0x123ca1000 + 91596
    5   ServiceManager-Launcher.dylib           0x0000000123cb21c4 0x123ca1000 + 70084
    6   ServiceManager-Launcher.dylib           0x0000000123cb2bde 0x123ca1000 + 72670
    7   ServiceManager-Launcher.dylib           0x0000000123cb2aeb 0x123ca1000 + 72427
    8   ServiceManager-Launcher.dylib           0x0000000123cb624e 0x123ca1000 + 86606
    9   ServiceManager-Launcher.dylib           0x0000000123cb6392 0x123ca1000 + 86930
    10  ServiceManager-Launcher.dylib           0x0000000123cb614d 0x123ca1000 + 86349
    11  ServiceManager-Launcher.dylib           0x0000000123cb60c6 0x123ca1000 + 86214
    12  ServiceManager-Launcher.dylib           0x0000000123ca47d6 0x123ca1000 + 14294
    13  ServiceManager-Launcher.dylib           0x0000000123ca89c5 0x123ca1000 + 31173
    14  ServiceManager-Launcher.dylib           0x0000000123cb6d2c 0x123ca1000 + 89388
    15  ServiceManager-Launcher.dylib           0x0000000123cb8e63 0x123ca1000 + 97891
    16  libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    17  libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    18  libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8f651a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f650d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8d29e315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8d29d939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8d29d275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff90bb91ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 20:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 21:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 22:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 23:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 24:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 25:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 26:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 27:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8f655716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98f46c3b _pthread_cond_wait + 727
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff96ac190b PrivateMPEntryPoint + 58
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff96ac190b PrivateMPEntryPoint + 58
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff96ac190b PrivateMPEntryPoint + 58
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8f651a56 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff96ac190b PrivateMPEntryPoint + 58
    4   libsystem_pthread.dylib                 0x00007fff98f44899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff98f4472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff98f48fc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8f655e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98f45f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff98f48fb9 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff8f655e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98f45f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff98f48fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff8fbe81c4  rbx: 0x00007fff5fbfd1b0  rcx: 0x0000000000000007  rdx: 0x00007fff7ca743c0
      rdi: 0x00007fff5fbfd1b0  rsi: 0x00007fff91444779  rbp: 0x00007fff5fbfcff0  rsp: 0x00007fff5fbfcf68
       r8: 0x0000000000000000   r9: 0xffffffffffffffff  r10: 0x0000000000000000  r11: 0x00007fff5fbfd2d0
      r12: 0x00007fff5fbfd1b0  r13: 0x0000000000000000  r14: 0x00007fff5fbfd038  r15: 0x00007fff7d4e4490
      rip: 0x00007fff8fbe80a3  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x100000000 -        0x1014a8ff7 +com.adobe.illustrator (17.1.0 - 17.0.0) <DA956763-D868-31EE-9329-0DE283ECA5D1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101887000 -        0x1025ccff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1025e0000 -        0x10262ffff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x102665000 -        0x102667fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x10266d000 -        0x1026bdfff +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.273) <21DD0108-77DD-366F-A9BA-12065481922E> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
           0x1026e0000 -        0x102734fff +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.273) <F71C0D3A-454F-3EA9-81FF-16A0CDEF5BC2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
           0x10275d000 -        0x10275dff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.273) <0CED669A-C6CF-3581-8861-039B9DC863ED> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x102762000 -        0x1028a8fff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x1028bc000 -        0x102e8dfff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102f2a000 -        0x102f67fff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102f6f000 -        0x10306dff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.30807 - 3.8.0.30807) <DF0EC9F6-D499-39B8-B2F4-CAF4F742D702> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103119000 -        0x103136fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10313e000 -        0x103164fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
           0x10316c000 -        0x10347dff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1034c5000 -        0x103a5efff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103adb000 -        0x104a5efef +com.adobe.psl (AdobePSL 14.0.0.30830 - 14.0.0.30830) <7BDC4AF7-B14F-3DE0-B47A-E69B37529A6B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104c1f000 -        0x104c8cfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151739) <95D40B8F-C287-3F7B-945C-CEEE0D5399A2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x104cbf000 -        0x104dcbfff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 50 - 79.151739) <6C763585-FC85-3A15-B089-7D43EF73F6A8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x104e79000 -        0x104f23fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x104f4b000 -        0x10508bfe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10510b000 -        0x10520dfef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x105256000 -        0x105384fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1053e2000 -        0x10553bff7 +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <F6095811-7D5F-3E06-A664-1EB9FBF8C761> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105589000 -        0x105591ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <9E166135-BA3F-3F90-A08B-26FC68B919A8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x10559b000 -        0x1055bffff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1055e3000 -        0x1056a1ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30772) <4FC0039A-A770-3A51-9D7A-D24167344540> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x1056f1000 -        0x1057aaff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x1057f4000 -        0x1059bfff7 +com.adobe.owl (AdobeOwl version 5.0.23 - 5.0.23) <E3DD5569-DC71-3DB2-9527-86DBB22B00C9> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105a02000 -        0x10616cff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 11.0.0.32052) <0CC380FF-CE16-336B-BC6E-B106AB85CF0B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106226000 -        0x10632afff +com.adobe.PDFPort (AdobePDFPort 2.1.0.31977 - 2.1.0.31977) <83787D51-C878-3CFF-A3A2-F2107F7BB920> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x10633d000 -        0x106362ffe +AdobePDFSettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
           0x10639c000 -        0x1063e1ff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x1063ed000 -        0x106498ff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30772) <5DE0B54D-CDAE-3146-904F-72CBC5C89FA7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1064dd000 -        0x10659aff7 +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <F15402B9-3F84-3687-8AB8-AD5B86C81806> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x1065bd000 -        0x1068d3fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <D21D9020-0CD5-2CE3-FE04-8856C4F631E1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x10699f000 -        0x1069b2ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1069bc000 -        0x1069d4ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <CD612584-FFB3-3311-8A49-834F1DFA2841> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x1069db000 -        0x106acbfff +com.adobe.amtlib (7.0.0.247 - 7.0.0.247) <48D8FFDB-DFEA-310D-BAE3-DFD8D05B0160> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106ade000 -        0x106ae4ff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <C38F2ED5-444A-3354-B637-E504EA3B11E4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106afb000 -        0x106b09fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <CD143090-186F-3AC4-ADD4-C6FBE15A2283> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106b1e000 -        0x106bbcff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <959CB98A-832D-3D4B-B41C-62A9D71D1E7F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x106c58000 -        0x106caafff +com.adobe.boost_serialization.framework (7.0.0 - 7.0.0.0) <F43C3812-4D22-30B5-8BB3-21CD1AACD8A6> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x106dd9000 -        0x106de4ff7 +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <A827BD38-DBCD-3974-8758-7B227A520704> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x106dff000 -        0x106e03ff7 +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <854D8FEC-FDF8-31F9-9D15-B9770E6EDE86> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x106e0c000 -        0x106e18fff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <B9EF0A63-734B-3C71-91D5-B310D07581E6> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106e38000 -        0x107158ff7 +com.adobe.dvaadameve.framework (7.0.0 - 7.0.0.0) <70E16846-8C58-3811-9023-03A2FC681753> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1077fe000 -        0x10790cff7 +com.adobe.dvaai.framework (7.0.0 - 7.0.0.0) <C805ABDA-1718-36F4-B9B2-0F0482749695> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x1079e4000 -        0x107c35ff7 +com.adobe.dvacore.framework (7.0.0 - 7.0.0.0) <3AF618E8-3F66-37DD-B6B6-AAC83715A282> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x107e77000 -        0x108310fff +com.adobe.dvaui.framework (7.0.0 - 7.0.0.0) <382EEBCB-C3E6-3FE9-9BAD-2ABDBBE8AE3E> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10892e000 -        0x1089e6ff7 +com.adobe.dvaworkspace.framework (7.0.0 - 7.0.0.0) <DCD7579A-5260-3770-9108-06B9CF023357> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108b00000 -        0x108bc5fff +com.adobe.exo.framework (7.0.0 - 7.0.0.0) <6AE2E47D-37D2-320C-A302-DDFDE9AE2184> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x108d25000 -        0x108d96fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x108da9000 -        0x108dc7ff7 +com.adobe.dvaflashview.framework (7.0.0 - 7.0.0.0) <8072006D-2E76-3FB7-B7B4-00918E483B18> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x108df1000 -        0x108e1dff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x108e38000 -        0x108e57fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x108e7c000 -        0x108e80fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x108e87000 -        0x108e8bff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
           0x108e92000 -        0x108fdefff +com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) <EC978E66-CA70-3CBB-9A0D-09CD166A5F70> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x1092aa000 -        0x1092acff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10da17000 -        0x10dabaff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10e07b000 -        0x10e15ffff +IMSLib.dylib (7.0.0.146 - 7.0.0.146) <38D7DA66-E06E-38A3-9401-42755F56C2C5> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/IMSLib.dylib
           0x10e177000 -        0x10e1eeff7  com.apple.xquery (1.3.1 - 30) <2F2DC0D6-456F-33A0-8537-E0C651F6817C> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
           0x10e3c9000 -        0x10e3d0fff +com.adobe.illustrator.plugins.Action (Action version 17.0.0 - 17.0.0) <04BA283F-BA0E-3F24-B871-442248987654> /Applications/Adobe Illustrator CC/*/Action
           0x10e3d6000 -        0x10e3e1ff7 +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 17.0.0 - 17.0.0) <27F6E321-0909-3458-854D-C7D36025D34C> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS
           0x10e3e7000 -        0x10e3f0fff +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 17.0.0 - 17.0.0) <4F370E42-56A8-3057-A7DD-61B5D2B3ACFD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
           0x10e3f6000 -        0x10e3fcfff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 17.0.0 - 17.0.0) <045A9276-1B27-338B-94E2-1E4726635D74> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/FlattenTransparency
           0x10e403000 -        0x10e41bff7 +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 17.0.0 - 17.0.0) <45DF5645-A071-3DB3-A074-5BEA3A77BADB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
           0x10e425000 -        0x10e42aff7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 17.0.0 - 17.0.0) <453CB9EB-FF1F-3BDC-BDAA-78965A046402> /Applications/Adobe Illustrator CC/*/ToolSelector
           0x10f6d8000 -        0x10f6eeff7 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 17.0.0 - 17.0.0) <8B1D99F5-F718-3BBA-840B-A46844D19B84> /Applications/Adobe Illustrator CC/*/BrushManager
           0x10f6f4000 -        0x10f6f7ff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 17.0.0 - 17.0.0) <B1597C8F-814E-3377-9940-D832ADFD2557> /Applications/Adobe Illustrator CC/*/Geometry
           0x1108d3000 -        0x11093ffff +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 17.0.0 - 17.0.0) <A0DAFDA0-72C7-3E34-80A7-DA0C66591008> /Applications/Adobe Illustrator CC/*/PhotoshopAdapter
           0x11094c000 -        0x1109b6fff +com.adobe.illustrator.plugins.UserInterface (User Interface version 17.0.0 - 17.0.0) <7F6C3F1D-227E-38EA-A0F0-E890CA399994> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface
           0x1109df000 -        0x110a70fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 17.0.0 - 17.0.0) <F0DA7519-330A-3148-819A-65BBFB9B062A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
           0x110a7b000 -        0x110addff7 +com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 17.0.0 - 17.0.0) <7D30E550-E18B-31C2-A3B8-E88464840059> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDFSuite
           0x110aeb000 -        0x110b0cfff +com.adobe.illustrator.plugins.Rasterize (Rasterize version 17.0.0 - 17.0.0) <80C34039-878E-3E09-847F-CEC6F511C021> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
           0x110b14000 -        0x110bf7fff +com.adobe.illustrator.plugins.BeautifulStrokes (Beautiful Strokes Suite version 17.0.0 - 17.0.0) <5E905A87-5CF9-35F5-A937-46A29444A6A0> /Applications/Adobe Illustrator CC/*/BeautifulStrokes
           0x110c02000 -        0x110d0dfff +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 17.0.0 - 17.0.0) <7FFC0B96-B13F-3BCA-80FC-28947C93CB01> /Applications/Adobe Illustrator CC/*/ColorHarmony
           0x110d3a000 -        0x110d56ff7 +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 17.0.0 - 17.0.0) <F91B7DC2-5FDF-3DD2-B8EC-962BA35FDDDB> /Applications/Adobe Illustrator CC/*/ControlPanel
           0x110d60000 -        0x110d96ff7 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 17.0.0 - 17.0.0) <84709A19-401B-3EFF-930A-70CFAD1003B2> /Applications/Adobe Illustrator CC/*/KinsokuDlg
           0x110db0000 -        0x110f4fff7 +com.adobe.illustrator.plugins.PlanetX (Live Paint version 17.0.0 - 17.0.0) <76612D25-AE50-3F5B-8EA8-517494207E0A> /Applications/Adobe Illustrator CC/*/PlanetX
           0x110f5e000 -        0x11103bff7 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 17.0.0 - 17.0.0) <16BB0497-7B38-3186-ABBB-CB215EAE486D> /Applications/Adobe Illustrator CC/*/PaintStyle
           0x111064000 -        0x1110f1ff7 +com.adobe.illustrator.plugins.Perspective (Perspective version 17.0.0 - 17.0.0) <D96B06E0-FFA9-3FAE-AFDD-D06E4FB5F124> /Applications/Adobe Illustrator CC/*/Perspective
           0x1110fb000 -        0x11138fff7 +com.adobe.illustrator.plugins.ScriptingSupport (Scripting Support version 17.0.0 - 17.0.0) <F52E3615-AC0B-3B50-9DFB-A6DDA26F034A> /Applications/Adobe Illustrator CC/*/ScriptingSupport
           0x111439000 -        0x111516fff +com.adobe.AXEXSLT (AdobeAXSLE 3.8.0.30807 - 3.8.0.30807) <6299FB87-471B-3EA2-9E02-6DEA293FA533> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x1115ae000 -        0x11161dff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x111628000 -        0x111769ff7 +com.adobe.illustrator.plugins.SwatchLibs (Swatch Libraries version 17.0.0 - 17.0.0) <4A1F43AB-CE5A-3AAD-B9E0-4761975FA3C7> /Applications/Adobe Illustrator CC/*/SwatchLibs
           0x111797000 -        0x111815fff +c

    Hi montanacowgirl,
    It looks like you are able to reproduce this issue very frequently, can you please let us know few steps what were you doing before it crashes.
    e.g. Create a new document, Select Pen tool, press some modifier, start drag with mouse or pen, etc.
    It will help us narrow down the issue.
    Additionally can you please also submit the crash log to adobe via the crash reporter dialog with a valid email id so that we can search your crash with proper crash stack. and Please send a test mail to [email protected] so that we can get back to you.
    Sanjay.

Maybe you are looking for