Illustrator CS6 - Adding dimensional information to a drawing

How can I add actual dimensions to an object.  I'ver created the drawing, but now want to add the dimension informaiton of a few objects into the drawing, without having to manually add the line and arrow and text.

save the text below to a .jsx file, and run that as a script.
Dimensioning - Nick Blakey 2007
This will add measurement marks and dimensions to any selected item.
This script requires that a swatch already exist for the colour "Cutter" (or "cutter")
var myDocument = app.activeDocument;
var selectedObject = myDocument.selection;
var activeLayer = app.activeDocument.activeLayer;
var layerName = activeLayer.name;
activeLayer.name = "Source4Measure";
// Get position of selection bounds
var myBounds = selectedObject[0].geometricBounds;
// Set up X and Y co-ordinates
var x1 = myBounds[0];
var x2 = myBounds[2];
var y1 = myBounds[1];
var y2 = myBounds[3];
// Set up data for the Measurements
var ptWidth = myBounds[2] - myBounds[0];
var ptHeight = myBounds[1] - myBounds[3];
var tmpWidth = Math.round(ptWidth / 0.02834645);
var tmpHeight = Math.round(ptHeight / 0.02834645);
var finalWidth = tmpWidth / 100;
var finalHeight = tmpHeight / 100;
//Find Centre of Object
var xCentre = x1 + (ptWidth / 2);
var yCentre = y1 - (ptHeight / 2);
// Find Cutter swatch position
var origSwatches = myDocument.swatches;
var swatchesLength = origSwatches.length;
for (i=0;i<swatchesLength;i++) {
  if (origSwatches[i].name == "cutter" || origSwatches[i].name == "Cutter") {
  var cutterSwatch = origSwatches[i];
// Check if Cutter swatch is defined
if (cutterSwatch == undefined) {
  alert("Please create a cutter swatch");
else {
  makeDimensions();
  releaseLayer();
function makeDimensions() {
// Lock the active layer to prevent colour change
activeLayer.locked = true;
// Create Measurements Layer
//Now moved to separate function
/*var mLayer = myDocument.layers.add();
//mLayer.name = "Measurements";*/
mLayerCreate();
// Set Document colors to Cutter
myDocument.defaultFillColor = cutterSwatch.color;
myDocument.defaultStrokeColor = cutterSwatch.color;
// Create White Color Object for Measurement Boxes
newWhite = new CMYKColor();
newWhite.black = 0;
newWhite.cyan = 0;
newWhite.magenta = 0;
newWhite.yellow = 0;
// Create groups for measurements
var yMeasure = mLayer.groupItems.add();
yMeasure.name = "Height";
var xMeasure = mLayer.groupItems.add();
xMeasure.name = "Width";
// X Measurement Line and Endpoints
var xLine1 = xMeasure.pathItems.add();
xLine1.stroked = true;
xLine1.setEntirePath ([[x1,y1+36],[xCentre - 30,y1+36]]);
var xLine2 = xMeasure.pathItems.add();
xLine2.stroked = true;
xLine2.setEntirePath ([[xCentre + 30,y1+36],[x2,y1+36]]);
var xLineEnd1 = xMeasure.pathItems.add();
xLineEnd1.stroked = true;
xLineEnd1.setEntirePath ([[x1,y1+40],[x1,y1+32]]);
var xLineEnd2 = xMeasure.pathItems.add();
xLineEnd2.stroked = true;
xLineEnd2.setEntirePath ([[x2,y1+40],[x2,y1+32]]);
// Y Measurement Line and Endpoints
var yLine1 = yMeasure.pathItems.add();
yLine1.stroked = true;
yLine1.setEntirePath ([[x2+36,y1],[x2+36,yCentre + 30]]);
var yLine2 = yMeasure.pathItems.add();
yLine2.stroked = true;
yLine2.setEntirePath ([[x2+36,yCentre - 30],[x2+36,y2]]);
var yLineEnd1 = yMeasure.pathItems.add();
yLineEnd1.stroked = true;
yLineEnd1.setEntirePath ([[x2+32,y1],[x2+40,y1]]);
var yLineEnd2 = yMeasure.pathItems.add();
yLineEnd2.stroked = true;
yLineEnd2.setEntirePath ([[x2+32,y2],[x2+40,y2]]);
/* Create Box for X Measurement text
Deprecated by use of two lines in measurement line
var xBox = xMeasure.pathItems.rectangle (y1 + 46, xCentre - 30, 60, 20);
xBox.filled = true;
xBox.fillColor = newWhite;
xBox.fillOverprint = false;
xBox.stroked = false;*/
// Create Text for X Measurement
var xText = xMeasure.textFrames.add();
xText.contents = finalWidth + "mm";
xText.top = y1 + 42;
xText.left = xCentre;
xText.paragraphs[0].paragraphAttributes.justification = Justification.CENTER;
for (i=0;i<xText.textRange.characters.length;i++) {
  xText.characters[i].characterAttributes.fillColor = cutterSwatch.color;
/* Create Box for Y Measurement Text
Deprecated by use of two lines in measurement line
var yBox = yMeasure.pathItems.rectangle (yCentre + 30, x2 + 26, 20, 60);
yBox.filled = true;
yBox.fillColor = newWhite;
yBox.fillOverprint = false;
yBox.stroked = false;*/
// Create Text for Y Measurement
var yText = yMeasure.textFrames.add();
yText.contents = finalHeight + "mm";
yText.rotate (-90); //, true, false, false, false, Transformation.CENTER);
yText.top = yCentre;
yText.left = x2 + 30;
yText.paragraphs[0].paragraphAttributes.justification = Justification.CENTER;
for (i=0;i<yText.textRange.characters.length;i++) {
  yText.characters[i].characterAttributes.fillColor = cutterSwatch.color;
function mLayerCreate() {
  var mLayerNotExists = true;
// Check if measurements layer exists
for(i = 0; i < activeDocument.layers.length; i++){
  if(activeDocument.layers[i].name == "Measurements"){
  mLayer = activeDocument.activeLayer = activeDocument.layers[i]; // not using var to declare makes it global
  mLayerNotExists = false;
// Create Measurements Layer
if(mLayerNotExists){
mLayer = myDocument.layers.add();// not using var to declare makes it global
mLayer.name = "Measurements";
function releaseLayer(){
  for(i = 0; i < activeDocument.layers.length; i++) {
  if(activeDocument.layers[i].name == "Source4Measure") {
  activeDocument.layers[i].name = layerName;
  activeDocument.layers[i].locked = false;
  activeDocument.activeLayer = activeDocument.layers[i];
  // Set Document colors back to Default
  black = new CMYKColor();
  black.black = 100;
  myDocument.defaultFillColor = newWhite;
  myDocument.defaultStrokeColor = black;

Similar Messages

  • Illustrator CS6 - Export jpg without adding artboard to name

    Is there a way in Illustrator CS6 to export as jpg with Use Artboard check to not have illustrator add the name of the artboard to your file name?
    Example -
    File name "redboat.ai"
    Export jpg "redboat.jpg" with Use Artboard option selected
    File name becomes "redboat-01.jpg"
    This is not a huge problem when I only have 1 or two files but when I have to rename 100+ file names it can be a pain.
    I do understand that I can batch rename in Bridge but it would be nice if I could have these files saved without the artboard name on them.
    Any help appreciated.

    Export to .jog with use artbaords, needs to add to the name, so shen you export imaegs with multiple artbaords you do not have reapeated names.
    You can do a save for web, and turn on clip to artboard and you will get the filename you need. Record an action to save the file to your desktop, and you will save even more time running this as a batch command on a folder of images.

  • Unknown error: [UNKN] - Illustrator cs6

    I'm a Illustrator cs6 user, and the last days, I'm getting this error when I'm saving some files...
    The file seems to be ok, I didn't find yet what this error does especifically, but the MB size turns bigger than a regular/similar file without the error.
    Then, I tried to start again from zero, and when I finally rebuild the files, I get that error again at the end. Could you explain me the meaning of that error and how to fix it? - even if I have to fix it by code ?-. I didn't find useful information with a regular google search.
    Thank you very much for your answer.

    Hi!
    I'm a designer, so the file contains the usual: some text (I already checked the font and has no problems), a 'tab' with a drop shadow, a vector draw and a link low res in .psd format. Let's say nothing unusual.
    I usually save my files like this:
    (Because I concern about the size and I check the first ones only when it's necesary).
    I won't show the name of the files, but I've made this experiment:
    1. Shows the size of the file that I've made from zero after I found out about the error. (But there's no time to do that every time).
    2. The second shows the size of the original file that shows the 'error'.
    3. That's the file you told me to save turning off the compression option, but ICC Profiles is on.
    4. In this file compression is on but ICC Profiles is off.
    5. Finally... in this file everything is off.
    ...I didn't find out YET what this error does 'inside' the file... but I'm sure it does something more besides the size of the file, because if I copy and paste any element of the file with error in another one, no matter if I start from zero the other things, it shows the error when I save :S

  • Illustrator CS6 - saving to jpeg (distored)

    Hi
    I am new to Illustrator.  I have designed a new logo using Illustrator CS6 to the best of my knowledge.  I now need to create business cards etc for printing but when I save it to jpeg it becomes very distorted after the file is uploaded to the printing site.  Even if I cut and paste to another artboard it become distored as well.
    If anyone can please help me I am getting desperate to have this finished by today for a client.
    Thanks.

    Hi thank you for replying ... I used the default settings - added the text then drew the two figures - grouped and exported to a jpeg ... I am a total novice in Illustrator I normally use photoshop but need to make business cards, postcards and will upload the jpeg to vistaprint ...
    the colours aren't the same as my original file (above) ... but when I upload to vistaprint it looks distorted ...
    If you need more information can you let me know ... thank again

  • Error updating Illustrator CS6 now it can't be used

    I tried to apply the latest updates to CS6 but the update to Illustrator failed with the error:
    Adobe Illustrator CS6 Update (version 16.0.3)
    Installation failed. Error Code: U44M1P7
    When I try to run Illustrator now it crashes and gives the following error:
    Process:         Adobe Illustrator
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         690 (16.0.3)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd
    Date/Time:       2012-12-14 10:51:01.960 +0000
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          140082 sec
    Crashes Since Last Report:           3
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      AF171280-6487-4EAF-B5A3-3862A0E67D49
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
      Referenced from: /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
      Reason: image not found
    Binary Images:
           0x100000000 -        0x10186cfe7 +com.adobe.illustrator (690 - 16.0.3) <8F6F07B7-9649-7267-D555-D35E1326F0C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101aae000 -        0x1027f3ff7 +libicudata.40.0.dylib (40.0.0 - compatibility 40.0.0) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x102806000 -        0x102874fef +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
        0x7fff68e2c000 -     0x7fff68e60baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff8af39000 -     0x7fff8bb3ffff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c3a3000 -     0x7fff8c3a3fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9092f000 -     0x7fff9092ffff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff920ca000 -     0x7fff923e3fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92829000 -     0x7fff92829fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff950e9000 -     0x7fff950e9fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 2.93 GHz, 8 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393955353432382D3034372E4130304C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393955353432382D3034372E4130304C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS723232L9SA62, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 3
    USB Device: hub_device, apple_vendor_id, 0x9131, 0x24100000 / 2
    USB Device: USB-SATA Bridge, 0x0411  (Melco, Inc.), 0x019b, 0x24130000 / 6
    USB Device: USB 3.0 SATA Bridge, 0x2109  (VIA Labs, Inc.), 0x0700, 0x24110000 / 5
    USB Device: Apple Cinema HD Display, apple_vendor_id, 0x9223, 0x24120000 / 4
    USB Device: iPhone, apple_vendor_id, 0x12a8, 0x26400000 / 3
    USB Device: My Passport 0748, 0x1058  (Western Digital Technologies, Inc.), 0x0748, 0x26200000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8217, 0x06110000 / 5

    Thanks very much for the reply, I tried it but it wouldn't install the error I now get it:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF024, DW063 ... WARNING: DS012 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 4 warning(s)
    ----------- Payload: {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0 -----------
    WARNING: DS012: LocalizeFile: Localized string not found for locale 'en_GB' try fetching for en_US(Seq 11)
    WARNING: DS012: LocalizeFile: Localized string not found for locale 'en_GB' try fetching for en_US(Seq 12)
    ----------- Payload: {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0 -----------
    WARNING: DS012: LocalizeFile: Localized string not found for locale 'en_GB' try fetching for en_US(Seq 21)
    WARNING: DS012: LocalizeFile: Localized string not found for locale 'en_GB' try fetching for en_US(Seq 22)
    ----------- Payload: {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core 16.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/AdobeCrashReporter" (Seq 1649)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 1649)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core_AdobeIllustrator16en_GBLanguagePack: Install failed
    ERROR: DW050:  - Adobe Illustrator CS6 Core: Failed due to Language Pack installation failure

  • Creative Cloud - Illustrator CS6 crashing after successful installation

    Below is the full error report - please help!
    Process:         Adobe Illustrator [353]
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         682 (16.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [132]
    Date/Time:       2012-05-22 09:28:52.009 -0500
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          121548 sec
    Crashes Since Last Report:           259
    Per-App Interval Since Last Report:  829 sec
    Per-App Crashes Since Last Report:   27
    Anonymous UUID:                      4F9FE876-5626-41AA-9117-B3167D332635
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000023a57c2ff
    VM Regions Near 0x23a57c2ff:
        CG shared images       00000001cbf90000-00000001cbf98000 [   32K] r--/r-- SM=SHM 
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Application Specific Information:
    objc[353]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.CoolType                      0x00000001035dd62b CTInit + 1175509
    1   com.adobe.CoolType                      0x00000001035ca415 CTInit + 1097151
    2   com.adobe.CoolType                      0x000000010346c044 0x10345a000 + 73796
    3   com.adobe.CoolType                      0x0000000103545e64 CTInit + 555022
    4   com.adobe.CoolType                      0x000000010351b54f CTInit + 380665
    5   com.adobe.CoolType                      0x00000001034c6212 CTInit + 31676
    6   com.adobe.CoolType                      0x00000001034c6807 CTInit + 33201
    7   com.adobe.CoolType                      0x00000001034ccdcc CTInit + 59254
    8   com.adobe.illustrator                   0x00000001009154f5 0x100000000 + 9524469
    9   com.adobe.illustrator                   0x000000010091ed4f 0x100000000 + 9563471
    10  com.adobe.illustrator                   0x000000010075e5f2 0x100000000 + 7726578
    11  com.adobe.illustrator                   0x000000010075f4b0 0x100000000 + 7730352
    12  com.adobe.illustrator                   0x000000010075fb2f 0x100000000 + 7732015
    13  com.adobe.illustrator                   0x0000000100919c55 0x100000000 + 9542741
    14  com.adobe.illustrator                   0x000000010091c1bb 0x100000000 + 9552315
    15  com.adobe.illustrator                   0x000000010091c4ae 0x100000000 + 9553070
    16  com.adobe.illustrator                   0x000000010091cb59 0x100000000 + 9554777
    17  com.adobe.illustrator                   0x000000010090d2db 0x100000000 + 9491163
    18  com.adobe.illustrator                   0x000000010083cfde 0x100000000 + 8638430
    19  com.adobe.illustrator                   0x000000010090cd7e 0x100000000 + 9489790
    20  com.adobe.illustrator                   0x000000010090cfbc 0x100000000 + 9490364
    21  com.adobe.illustrator                   0x000000010070044b 0x100000000 + 7341131
    22  com.adobe.illustrator                   0x000000010083cfde 0x100000000 + 8638430
    23  com.adobe.illustrator                   0x00000001006ff33c 0x100000000 + 7336764
    24  com.adobe.illustrator                   0x00000001006ef5d4 0x100000000 + 7271892
    25  com.adobe.illustrator                   0x00000001001635f8 0x100000000 + 1455608
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8fd427e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff9129f78a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff9129e31a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff8e0c1a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff8e053ea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e098e81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8e099ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.AGM                           0x0000000102ed4d5b AGMInitialize + 3255471
    3   com.adobe.AGM                           0x0000000102ed5b5c AGMInitialize + 3259056
    4   com.adobe.AGM                           0x0000000102edcdeb AGMInitialize + 3288383
    5   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine                    0x0000000122a9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000122848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine                    0x0000000122a9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000122848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine                    0x0000000122a9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000122848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.ape.engine                    0x0000000122a9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000122848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8fd4067a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3fd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ec2850c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ec30c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ec30486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO                   0x00007fff92d09fe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO                   0x00007fff92d0015a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b22a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine                    0x0000000122a9abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x0000000122ab2ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b22a6 _pthread_cond_wait + 890
    2   com.adobe.ape.engine                    0x0000000122a9abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x0000000122c2d2c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine                    0x0000000122a9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x0000000122a9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x0000000122a9ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8fd41bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff918b2274 _pthread_cond_wait + 840
    2   com.adobe.AFlame                        0x000000013359b5f5 Flame_Terminate + 1642661
    3   com.adobe.AFlame                        0x000000013357c4cb Flame_Terminate + 1515387
    4   com.adobe.AFlame                        0x000000013353428a Flame_Terminate + 1219898
    5   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8fd41e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff91864dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff91864bb5 usleep + 53
    3   com.adobe.illustrator.plugins.dBrushTool          0x000000012772f2d2 PluginMain + 364210
    4   libsystem_c.dylib                       0x00007fff918ae8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff918b1b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff8fd406b6 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x00000001277317ea PluginMain + 373706
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000013a56443c  rbx: 0x00007fff5fbfda68  rcx: 0x000000023a57c2ff  rdx: 0x00007fff5fbfda74
      rdi: 0x00007fff5fbfda70  rsi: 0x0000000000000004  rbp: 0x00007fff5fbfde60  rsp: 0x00007fff5fbfd330
       r8: 0x0000000000000000   r9: 0x0000000000000053  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x00007fff5fbfda60  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000080000000
      rip: 0x00000001035dd62b  rfl: 0x0000000000010206  cr2: 0x000000023a57c2ff
    Logical CPU: 4
    Binary Images:
           0x100000000 -        0x10186cfe7 +com.adobe.illustrator (682 - 16.0.0) <8F6F07B7-9649-7267-D555-D35E1326F0C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101aae000 -        0x1027f3ff7 +libicudata.40.0.dylib (40.0.0 - compatibility 40.0.0) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x102806000 -        0x102874fef +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1028c8000 -        0x1028ccff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x1028d2000 -        0x10292fff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.682) <013A7667-AC54-C394-36EC-DE3E058EBBB8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
           0x102956000 -        0x1029bbff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.682) <4D4BAF9C-D816-167D-C653-3E61955725A9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
           0x1029e9000 -        0x1029e9ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.682) <6344CAA3-C943-9DF3-CCCB-AB443149DF6A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x1029ed000 -        0x102b66fff +com.adobe.ACE (AdobeACE 2.19.18.19822 - 2.19.18.19822) <01A168B2-A4AA-71B3-D8F1-2F4A367485BB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x102b79000 -        0x103181fff +com.adobe.AGM (AdobeAGM 4.26.20.19822 - 4.26.20.19822) <4AB2E56F-811A-C769-4F3C-CBE1530C8A56> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10321d000 -        0x10325fff7 +com.adobe.ARE (AdobeARE 1.5.02.19822 - 1.5.02.19822) <FB3356DF-DBCD-CE4C-DC16-63540BC96C5C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x103267000 -        0x103361fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103405000 -        0x103424fff +com.adobe.BIB (AdobeBIB 1.2.02.19822 - 1.2.02.19822) <7EC75BFC-1A1C-8FD3-56BB-D6B6EB5CA9A1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10342b000 -        0x103453ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4886F3FC-D31A-6149-1E03-EBA15E262086> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
           0x10345a000 -        0x1037bbfef +com.adobe.CoolType (AdobeCoolType 5.10.31.19822 - 5.10.31.19822) <14E82AD0-5994-21FA-D963-D3FB2A113349> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x103808000 -        0x103c4eff7 +com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) <E63AFCA8-3E74-1745-8C74-8B0A78073BE5> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103cca000 -        0x104dc8fef +com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) <8029DA17-402C-301F-02E9-D0EC8DF48BE8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104f88000 -        0x104fe8ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x104ff2000 -        0x1050aafe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1050dd000 -        0x105187fe7 +libicucnv.40.0.dylib (40.0.0 - compatibility 40.0.0) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x1051ae000 -        0x1052eefe7 +libicui18n.40.0.dylib (40.0.0 - compatibility 40.0.0) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10536d000 -        0x10546ffef +libicuuc.40.0.dylib (40.0.0 - compatibility 40.0.0) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x1054b7000 -        0x105604ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x105678000 -        0x1058c1fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105944000 -        0x10594bfef +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <E678CE59-3C6E-386B-92F1-48B49B1727E0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x105955000 -        0x105981fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1059a4000 -        0x105a61fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x105aab000 -        0x105b70fff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bbd000 -        0x105dcbfff +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105e0d000 -        0x1065e0ff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106698000 -        0x106798ff7 +com.adobe.PDFPort (AdobePDFPort 2.1.0.19734 - 2.1.0.19734) <8C850D5F-FCF1-8620-6DAE-240667C80F9A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x1067ac000 -        0x1067d1ffe +adobepdfsettings (??? - ???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/adobepdfsetting s
           0x10680d000 -        0x106853fe7 +com.adobe.pip (??? - 6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x106860000 -        0x10690efef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10694b000 -        0x106a07fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x106a29000 -        0x106d3ffff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x106e0b000 -        0x106e25ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x106e2e000 -        0x106e47fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <0EDFCF84-BC82-4466-D878-69327B1722AF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x106e4e000 -        0x106f32fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106f43000 -        0x106f4bfef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <C4819F09-AB6C-1282-F489-48671509CE71> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106f65000 -        0x106f7eff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <CD4FF487-E0AA-0D76-A87D-9252F242C314> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106fa0000 -        0x107054fef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <FD24C4C8-AA95-3FB1-6350-639D50D7ACEF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1070e0000 -        0x10714dfef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <4BD779CA-98D8-9DC5-4B79-2E30E102EE31> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x107250000 -        0x10725dfff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <B0761444-05C8-F8AC-B3F3-CBA2C83129AC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x107272000 -        0x107274ff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <5A598FE6-82A6-D73A-B509-9A2902097AFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10727b000 -        0x107287fff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <92B1610F-451D-3684-8882-599DB6B00C23> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1072a5000 -        0x1076efff7 +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <3921F600-9022-192D-BC1B-D5D2A3A96CBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x107d4a000 -        0x107e35fe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <E9ECB4F4-B4C8-8D8F-1362-255FC8986938> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x107ee1000 -        0x1080d5fff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <E0CC2892-B8B1-7439-494E-0FFB4D07E7F9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10829d000 -        0x1087bdfff +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <86B829A9-FF1A-DEDA-26F7-D3BA4EF7AF35> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x108ccb000 -        0x108d98ff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <92204BF4-539F-C35E-8F5C-DA4AD4B48568> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108e8c000 -        0x108f78ff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <D136ACCA-E1C5-6D39-16DE-411471D06AED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1090c2000 -        0x109140fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x109151000 -        0x10917dff7 +libtbb.dylib (??? - ???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x109196000 -        0x1091a4ff3 +libtbbmalloc.dylib (??? - ???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x1091ba000 -        0x1091c0fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1091c7000 -        0x1091c7fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
           0x1091ca000 -        0x1091d3fff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <841D0780-EF72-47D9-1D87-73F4528EB337> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1091e1000 -        0x1091e5ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
           0x10921c000 -        0x10921efff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1097b2000 -        0x1097b2fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 16.0.0 - 16.0.0) <432D5AA2-CBB3-C291-F72C-24C96E089AEB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Resources/en_US/PlugInRes.aip/Contents/MacOS/PlugInRes
           0x10b5f8000 -        0x10b5fbff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 16.0.0 - 16.0.0) <D6B27686-EA36-7158-33DC-89D152E3F9DD> /Applications/Adobe Illustrator CS6/*/Geometry
           0x10d989000 -        0x10d993fff +com.adobe.illustrator.plugins.Action (Action version 16.0.0 - 16.0.0) <4ECED593-19C4-5487-B0C6-FC0419A85C9C> /Applications/Adobe Illustrator CS6/*/Action
           0x10d998000 -        0x10d9a3fff +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 16.0.0 - 16.0.0) <A0C06245-F4C1-073A-39F6-A5CE19504271> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS
           0x10dcdb000 -        0x10dcecfef +com.adobe.illustrator.plugins.BNPlugin (BNPlugin version 16.0.0 - 16.0.0) <1D9C6C0D-06A8-D2B1-91A6-48E857916DA9> /Applications/Adobe Illustrator CS6/*/BNPlugin
           0x10dcf3000 -        0x10dd2afff +com.adobe.illustrator.plugins.ArtboardPanel (Artboard Panel version 16.0.0 - 16.0.0) <E0FEB39E-95E1-2032-4EE9-6EB032267BE6> /Applications/Adobe Illustrator CS6/*/ArtboardPanel
           0x10dd42000 -        0x10dd4cfef +com.adobe.illustrator.plugins.AppBarControls (AppBarControls version 16.0.0 - 16.0.0) <37D9196F-E5F9-19D0-EA47-83DE1222BFFB> /Applications/Adobe Illustrator CS6/*/AppBarControls
           0x10dde1000 -        0x10ddeafe7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 16.0.0 - 16.0.0) <6F8F36CF-5D64-0711-B04F-29A716ACB303> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
           0x10ddef000 -        0x10ddf4fff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 16.0.0 - 16.0.0) <7BB920D3-6B17-BBC0-D697-9C035A4F1174> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/FlattenTransparency
           0x10fe42000 -        0x10fe5afff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 16.0.0 - 16.0.0) <D5A47E68-502F-D194-88CA-20397F945D0F> /Applications/Adobe Illustrator CS6/*/BrushManager
           0x10ff79000 -        0x10ffe8ff7 +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 16.0.0 - 16.0.0) <62D16574-674D-99C0-9E58-CF5A7B97C87F> /Applications/Adobe Illustrator CS6/*/PhotoshopAdapter
           0x10fff7000 -        0x110027ff7 +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 16.0.0 - 16.0.0) <A3E354F5-DFCE-1CC1-3246-495639338CBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
           0x1101e2000 -        0x1101e6fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x1101eb000 -        0x1101f0fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x1106d8000 -        0x110747fef +com.adobe.illustrator.plugins.UserInterface (User Interface version 16.0.0 - 16.0.0) <03D3CBDC-B773-1382-6FAA-533C93CF95A9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface
           0x110775000 -        0x110790fe7 +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 16.0.0 - 16.0.0) <A559C8DF-ECFD-90FA-50D5-C2EC43611DE4> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
           0x11079d000 -        0x1107acff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1123d1000 -        0x112436fe7 +com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 16.0.0 - 16.0.0) <745D368B-7F75-A445-0D6B-471D23370B01> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDFSuite
           0x112448000 -        0x11246bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 16.0.0 - 16.0.0) <11334147-4CAA-EB04-CE8D-1971C3624896> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
           0x112473000 -        0x112490ff7 +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 16.0.0 - 16.0.0) <2C742D8A-9F05-E9FA-A8B1-949583EF2B59> /Applications/Adobe Illustrator CS6/*/ControlPanel
           0x112498000 -        0x1124d6fe7 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 16.0.0 - 16.0.0) <3D8AF518-4B60-8BAE-6448-011334D1BF97> /Applications/Adobe Illustrator CS6/*/KinsokuDlg
           0x1124f5000 -        0x1124fbfe7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 16.0.0 - 16.0.0) <DC333FC0-E5F1-693A-1CE0-BF584154C5E3> /Applications/Adobe Illustrator CS6/*/ToolSelector
           0x112600000 -        0x112703ff7 +com.adobe.illustrator.plugins.BeautifulStrokes (Beautiful Strokes Suite version 16.0.0 - 16.0.0) <E17B02FF-FF7C-3871-5E8F-0DF478D247F6> /Applications/Adobe Illustrator CS6/*/BeautifulStrokes
           0x112711000 -        0x1127a0fff +com.adobe.illustrator.plugins.Perspective (Perspective version 16.0.0 - 16.0.0) <12269641-7367-2224-B019-E477232879A0> /Applications/Adobe Illustrator CS6/*/Perspective
           0x1127ab000 -        0x1127d1ff7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x1127e3000 -        0x1127f5ff7  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <66A3625A-6918-3C14-8DF3-2F4924C389EA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1127f9000 -        0x1127faff7  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <C8D0607A-A668-36EE-AF03-866BD04B5611> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x114cef000 -        0x114d69fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x114dfb000 -        0x114dfcfff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 16.0.0 - 16.0.0) <7CE4FC8A-FE54-9ECC-7510-2B7C9A5C8388> /Applications/Adobe Illustrator CS6/*/MPSCommon
           0x114f83000 -        0x114fadff7  com.apple.cmio.DAL.VDC_4 (212.0 - 3199.1.1) <143A9719-FB00-3476-9863-F4D9E3769A42> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
           0x114fd8000 -        0x114ff3fff  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <59FCE9C0-27E6-34CE-89E5-3A83B843B36C> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x119ec0000 -        0x119fb3ff7 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 16.0.0 - 16.0.0) <9ED937F6-A136-2DE4-CA82-82C52087EBA7> /Applications/Adobe Illustrator CS6/*/PaintStyle
           0x119fe2000 -        0x119fedfef +com.adobe.illustrator.plugins.DiffusionRasterSuite (DiffusionRaster version 16.0.0 - 16.0.0) <1229AE82-DB89-5D31-0DC4-6FD0734840CC> /Applications/Adobe Illustrator CS6/*/DiffusionRasterSuite
           0x11b08b000 -        0x11b0acfff  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <25FF31F5-9D1E-35EB-8085-F0AC25C38DAC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11b0b0000 -        0x11b0cefe7 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 16.0.0 - 16.0.0) <C396F193-6B6C-C946-61E4-83EBDB55ABDB> /Applications/Adobe Illustrator CS6/*/VariablesPalette
           0x11b0d5000 -        0x11b0ecfff +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 16.0.0 - 16.0.0) <27B658AF-3796-4725-D1E3-93F460053512> /Applications/Adobe Illustrator CS6/*/TextWrapDlg
           0x11b783000 -        0x11b7bbfff +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 16.0.0 - 16.0.0) <CE12B42F-0E0E-0138-3C0D-67B50E8F8C99> /Applications/Adobe Illustrator CS6/*/Mojikumi
           0x11b7d4000 -        0x11b7dafff +com.adobe.illustrator.plugins.ShapeSuite (Shape Construction Suite version 16.0.0 - 16.0.0) <F404EF55-D9B3-DC23-67B1-7FD6629838C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeSuite
           0x11b7e5000 -        0x11b7edfff +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 16.0.0 - 16.0.0) <7831D239-5D12-9652-91AF-C9ACEB5E7B77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
           0x11b7f2000 -        0x11b7fafff +com.adobe.illustrator.plugins.Colors (Colors version 16.0.0 - 16.0.0) <189D38EB-0C11-D380-F2FB-2DB0AE5E301C> /Applications/Adobe Illustrator CS6/*/Colors
           0x11d783000 -        0x11d79cfef +com.adobe.illustrator.plugins.DxfDwgUI (DxfDwgUI version 16.0.0 - 16.0.0) <9841F2BF-672A-67B1-8F04-41B24CE599BA> /Applications/Adobe Illustrator CS6/*/DxfDwgUI
           0x11d7b0000 -        0x11d7e5fff +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 16.0.0 - 16.0.0) <2E6FFCDF-676F-126B-4071-F95937B85AFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAttributes
           0x11d7ee000 -        0x11d7f2ff7 +com.adobe.illustrator.plugins.TrimMark (Crop Marks version 16.0.0 - 16.0.0) <6C07C9BF-DCE9-2723-8AFF-A769575A8243> /Applications/Adobe Illustrator CS6/*/TrimMark
           0x11d7f7000 -        0x11d7fbff7 +com.adobe.illustrator.plugins.Distort (Free Distort version 16.0.0 - 16.0.0) <6D3C5B07-8FE9-B229-DF8C-DBF4749387FC> /Applications/Adobe Illustrator CS6/*/Distort
           0x12019f000 -        0x1201d9ff7 +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 16.0.0 - 16.0.0) <53D2A31E-74AB-C5D0-5A0A-58F1E102227E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
           0x1201e2000 -        0x1201f1ff7 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 16.0.0 - 16.0.0) <3AE0FCDD-507D-DAFF-2868-08C4DF8FC9B6> /Applications/Adobe Illustrator CS6/*/DropShadow
           0x121400000 -        0x12152bfff +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 16.0.0 - 16.0.0) <E4BD81A9-61FC-1EF1-B568-DB50964B8518> /Applications/Adobe Illustrator CS6/*/ColorHarmony
           0x121560000 -        0x121738fef +com.adobe.illustrator.plugins.PlanetX (Live Paint version 16.0.0 - 16.0.0) <841FD3FF-6943-49E8-6DF3-28DBAF89A497> /Applications/Adobe Illustrator CS6/*/PlanetX
           0x1217cf000 -        0x1217e7fef +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 16.0.0 - 16.0.0) <2254E6D5-9C4A-10C5-709E-A75357ADE747> /Applications/Adobe Illustrator CS6/*/AssetMgmt
           0x1217f1000 -        0x1217f6fff +com.adobe.illustrator.plugins.TwirlTool (Twist Tool version 16.0.0 - 16.0.0) <48669BD1-D1E2-D2C1-70C8-494C7DFB6D22> /Applications/Adobe Illustrator CS6/*/TwirlTool
           0x122000000 -        0x1222a1fef +com.adobe.illustrator.plugins.ScriptingSupport (Scripting Support version 16.0.0 - 16.0.0) <752836AF-2036-C3CD-E060-9204A88B9953> /Applications/Adobe Illustrator CS6/*/ScriptingSupport
           0x12237b000 -        0x12245afef +com.adobe.AXEXSLT (AdobeAXSLE 3.7.101.18636 - 3.7.101.18636) <F0116E90-5C45-DFA3-9C17-9B5D1BF0FD1F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x1224ec000 -        0x1225ddfff +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.2.29 - 6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFle x
           0x1226ec000 -        0x1226f8ff7 +com.adobe.illustrator.plugins.Lasso (Lasso version 16.0.0 - 16.0.0) <7257BF10-8085-9640-48A8-39387FDAE8F3> /Applications/Adobe Illustrator CS6/*/Lasso
           0x122800000 -        0x123785fd7 +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
           0x1239d2000 -        0x123ab5fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x125e19000 -        0x125f64ff7 +com.adobe.illustrator.plugins.SwatchLibs (Swatch Libraries version 16.0.0 - 16.0.0) <8E8BCE2E-9051-04A6-CCAC-8D5F7424D716> /Applications/Adobe Illustrator CS6/*/SwatchLibs
           0x125f97000 -        0x12601efe7 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 16.0.0 - 16.0.0) <221130E5-082F-18F7-61B1-AA6E11FD4A97> /Applications/Adobe Illustrator CS6/*/SymbolPalette
           0x12603e000 -        0x126343ff7 +com.adobe.illustrator.plugins.Vectorize (TracingSuite version 16.0.0 - 16.0.0) <6475A907-C0B6-F86C-623A-11BE77D1D499> /Applications/Adobe Illustrator CS6/*/Vectorize
           0x12635e000 -        0x126f71fe7 +com.adobe.illustrator.plugins.DxfDwg (DxfDwg version 16.0.0 - 16.0.0) <17FD7B87-844B-2F4F-8C95-F664B52452AC> /Applications/Adobe Illustrator CS6/*/DxfDwg
           0x1270f7000 -        0x127212fe7 +com.adobe.illustrator.plugins.svgFileFormat ( SVG Format version 16.0.0 - 16.0.0) <7E1F2008-93E1-ECF2-49C9-D85BF2CB79DF> /Applications/Adobe Illustrator CS6/*/svgFileFormat
           0x127234000 -        0x127295fff +com.adobe.illustrator.plugins.Deform (Envelope and Warp version 16.0.0 - 16.0.0) <79E1E95F-9D21-DD1D-F241-4FE6D83865B3> /Applications/Adobe Illustrator CS6/*/Deform
           0x1272a1000 -        0x1272c3ff7 +com.adobe.illustrator.plugins.DocInfo (Document Info version 16.0.0 - 16.0.0) <27FC54EB-3F7A-2604-D2D1-B1E5E7DA3FDD> /Applications/Adobe Illustrator CS6/*/DocInfo
           0x1272ce000 -        0x127318fe7 +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 16.0.0 - 16.0.0) <00086DF0-EB5D-0D9F-605B-AD72F6817ACC> /Applications/Adobe Illustrator CS6/*/LinkPalette
           0x127334000 -        0x12738cfff +com.adobe.illustrator.plugins.Snapomatic (Snap version 16.0.0 - 16.0.0) <BFB48EDA-0C29-B6FA-CF1C-330CE683230D> /Applications/Adobe Illustrator CS6/*/Snapomatic
           0x12739a000 -        0x1273c8fe7 +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 16.0.0 - 16.0.0) <3FA9C55B-42C0-D55A-8FD0-2ECA9E2B2F41> /Applications/Adobe Illustrator CS6/*/EyeBucketTool
           0x1273de000 -        0x1273edff7 +com.adobe.illustrator.plugins.Simplify (Simplify version 16.0.0 - 16.0.0) <A9D791B2-4385-B1D7-F309-402D5CA9C8CF> /Applications/Adobe Illustrator CS6/*/Simplify
           0x127500000 -        0x127525ff7 +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 16.0.0 - 16.0.0) <205691D7-027C-32F6-3408-355EF967A4C8> /Applications/Adobe Illustrator CS6/*/ShapeTool
           0x12753b000 -        0x127568fff +com.adobe.illustrator.plugins.SimpleTools (Segment Tools version 16.0.0 - 16.0.0) <F2E38DA5-27F0-91AB-0D3D-1B97D645AA83> /Applications/Adobe Illustrator CS6/*/SimpleTools
           0x12757d000 -        0x12759dfff +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 16.0.0 - 16.0.0) <95AC109F-40FB-6F65-490A-B516BF98ABB9> /Applications/Adobe Illustrator CS6/*/ScatterBrushTool
           0x1275a5000 -        0x1275c2ff7 +com.adobe.illustrator.plugins.GlobAdjTool (Reshape Tool version 16.0.0 - 16.0.0) <44A4EF2B-9C92-5B4C-9AA0-A8EB35A4EAF5> /Applications/Adobe Illustrator CS6/*/GlobAdjTool
           0x1275c8000 -        0x1275f0fef +com.adobe.illustrator.plugins.ParticleSystem (Symbolism version 16.0.0 - 16.0.0) <ECA3A7A3-9258-4AA7-F930-7E78C28B3455> /Applications/Adobe Illustrator CS6/*/ParticleSystem
           0x1275fa000 -        0x127616ff7 +com.adobe.illustrator.plugins.MagicWand (Magic Wand version 16.0.0 - 16.0.0) <D6CB6CF3-E823-65E6-BDE4-056656595EAB> /Applications/Adobe Illustrator CS6/*/MagicWand
           0x12761e000 -        0x127638fff +com.adobe.illustrator.plugins.LiquifyTool (Liquify version 16.0.0 - 16.0.0) <150983BB-B6C7-4E89-7814-0C14A7C1BCA0> /Applications/Adobe Illustrator CS6/*/LiquifyTool
           0x127644000 -        0x12764bff7 +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 16.0.0 - 16.0.0) <2CC37E82-1C82-79CF-2323-412B2EEAD6B0> /Applications/Adobe Illustrator CS6/*/KnifeTool
           0x127651000 -        0x127663fef +com.adobe.illustrator.plugins.Flare (Flare version 16.0.0 - 16.0.0) <5BE7AB8A-4285-BAE4-832C-CB7FE531EFBA> /Applications/Adobe Illustrator CS6/*/Flare
           0x127669000 -        0x1276bafef +com.adobe.illustrator.plugins.EraserTool (EraserTool version 16.0.0 - 16.0.0) <2AFAA4ED-CE77-9E71-D57A-C4C39EF18ADD> /Applications/Adobe Illustrator CS6/*/EraserTool
           0x1276d2000 -        0x12775ffe7 +com.adobe.illustrator.plugins.dBrushTool (Bristle Brush Tool version 16.0.0 - 16.0.0) <C8ACE46D-AC4B-9BAE-1B4E-F2B6A405EDFF> /Applications/Adobe Illustrator CS6/*/dBrushTool
           0x127777000 -        0x1277cdfff +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 16.0.0 - 16.0.0) <667076C9-E5B7-F554-CE18-A3B7071B2216> /Applications/Adobe Illustrator CS6/*/CropAreaTool
           0x1277e7000 -        0x127824fff +com.adobe.illustrator.plugins.CalligraphicBrushTool (Calligraphic Brush Tool version 16.0.0 - 16.0.0) <B787FB6C-39DA-ADB6-8932-6C40D7015FAF> /Applications/Adobe Illustrator CS6/*/CalligraphicBrushTool
           0x12783a000 -        0x127855ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 16.0.0 - 16.0.0) <A6E7E18C-4B89-99F3-4ED0-37EFB11077E6> /Applications/Adobe Illustrator CS6/*/BoundingBox
           0x12786b000 -        0x12788cfef +com.adobe.illustrator.plugins.ArtOnPathBrushTool (Art Brush Tool version 16.0.0 - 16.0.0) <69484EA9-036C-FBEB-9878-09A2232CD9A0&gt

    Did you contact ech support? What did they say?
    Did you try a new user account? Did you boot into safe mode?
    What have you trued?
    Did you repair the permissions?

  • Photoshop CS6 and Illustrator CS6 crash unexpectedly when trying to open a file

    Photoshop CS6 and Illustrator CS6 crash unexpectedly when trying to open a file.  I'm on OSX 10.6.8.  I installed the software through Creative Cloud.  I tried deleting preferences and it still doesn't work.  Here is the error details.
    Process:         Adobe Photoshop CS6 [254]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2012-09-19 09:50:58.644 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          53721 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  3290 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      420A7D57-F2CF-4101-9FAD-545C1E92B4BA
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x1084e9208: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff891410b6 __kill + 10
    1   ???                                     0x00000001039c11d0 0 + 4355527120
    2   libSystem.B.dylib                       0x00007fff891e19f6 abort + 83
    3   libSystem.B.dylib                       0x00007fff891d062d szone_error + 519
    4   libSystem.B.dylib                       0x00007fff890fa854 small_malloc_from_free_list + 473
    5   libSystem.B.dylib                       0x00007fff890f71e1 szone_malloc_should_clear + 2070
    6   libSystem.B.dylib                       0x00007fff890f8d1a malloc_zone_calloc + 92
    7   libSystem.B.dylib                       0x00007fff890fc7bb calloc + 57
    8   com.apple.ColorSync                     0x00007fff85240d37 CMMMemMgr::New(unsigned long) + 89
    9   com.apple.ColorSync                     0x00007fff85240d8d CMMBase::NewInternal(unsigned long, CMMMemMgr&, char const*) + 23
    10  com.apple.ColorSync                     0x00007fff85240de6 CMMTable::CMMTable(unsigned long, CMMMemMgr&) + 60
    11  com.apple.ColorSync                     0x00007fff8524da37 CMMCurveTag::MakeLutTable(CMMFloatLutInfo*, CMMMemMgr&, CMMLutRangeMapping, double) + 517
    12  com.apple.ColorSync                     0x00007fff8523af68 CMMRGBCurves::MakeLutTable(CMMFloatLutInfo*, CMMMemMgr&, unsigned int) + 128
    13  com.apple.ColorSync                     0x00007fff8524f3af ConversionManager::AddMatrixConv(CMMXYZTag* (&) [3], CMMRGBCurves&) + 69
    14  com.apple.ColorSync                     0x00007fff8525c4fa ConversionManager::MakeConversionSequence(CMMProfileInfoContainer*, CMMColorConversionInfo*) + 990
    15  com.apple.ColorSync                     0x00007fff8525dc35 DoInitializeTransform + 765
    16  com.apple.ColorSync                     0x00007fff8525e359 AppleCMMInitializeTransform + 164
    17  com.apple.ColorSync                     0x00007fff8528bd08 ColorSyncCMMInitializeTransform + 112
    18  com.apple.ColorSync                     0x00007fff8523227b ColorSyncTransformCreate + 1964
    19  libCSync.A.dylib                        0x00007fff89784126 create + 1059
    20  libCSync.A.dylib                        0x00007fff8977dbb2 aquireColorWorldByAttributes + 379
    21  libCSync.A.dylib                        0x00007fff8977d9c0 acquireColorWorld + 107
    22  libCSync.A.dylib                        0x00007fff8977d863 CMSTransformConvertComponents + 84
    23  com.apple.CoreGraphics                  0x00007fff801e6ff4 CGCMSInterfaceTransformConvertColorComponents + 56
    24  com.apple.CoreGraphics                  0x00007fff801e6196 CGColorTransformConvertColorFloatComponents + 370
    25  com.apple.CoreGraphics                  0x00007fff801e5fa3 CGColorTransformConvertColorComponents + 143
    26  com.apple.CoreGraphics                  0x00007fff8021159c CGColorTransformConvertColor + 185
    27  com.apple.AppKit                        0x00007fff829e4d5c convertColorToColorSpaceNamed + 375
    28  com.apple.AppKit                        0x00007fff829e4ac5 -[NSCalibratedWhiteColor colorUsingColorSpaceName:device:] + 262
    29  com.apple.AppKit                        0x00007fff82a39b3b -[NSTextFieldCell drawWithFrame:inView:] + 227
    30  com.apple.AppKit                        0x00007fff82a34444 -[NSControl drawRect:] + 405
    31  com.apple.AppKit                        0x00007fff82a2ccc5 -[NSView _drawRect:clip:] + 3390
    32  com.apple.AppKit                        0x00007fff82a2b938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    33  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    34  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    35  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    36  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    37  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    38  com.apple.AppKit                        0x00007fff82a2a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 767
    39  com.apple.AppKit                        0x00007fff82a29b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 254
    40  com.apple.AppKit                        0x00007fff82a263de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    41  com.apple.AppKit                        0x00007fff8299fc0e -[NSView displayIfNeeded] + 969
    42  com.apple.AppKit                        0x00007fff82967c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    43  com.apple.AppKit                        0x00007fff82ba927f -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 734
    44  com.apple.AppKit                        0x00007fff82ba8ce7 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextIn fo:] + 714
    45  com.apple.AppKit                        0x00007fff82ba8a18 -[NSApplication beginModalSessionForWindow:] + 36
    46  com.apple.AppKit                        0x00007fff82ba893a -[NSApplication runModalForWindow:] + 106
    47  com.apple.AppKit                        0x00007fff82e0e112 -[NSSavePanel runModal] + 318
    48  com.adobe.Photoshop                     0x000000010192f56e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17667086
    49  com.adobe.Photoshop                     0x00000001005b3050 0x100000000 + 5976144
    50  com.adobe.Photoshop                     0x0000000100c4dcc5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4160357
    51  com.adobe.Photoshop                     0x00000001005b3f4a 0x100000000 + 5979978
    52  com.adobe.Photoshop                     0x0000000100c51b02 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4176290
    53  com.adobe.Photoshop                     0x000000010061b102 boost::system::system_error::what() const + 338690
    54  com.adobe.Photoshop                     0x00000001006145b7 boost::system::system_error::what() const + 311223
    55  com.adobe.Photoshop                     0x0000000100614674 boost::system::system_error::what() const + 311412
    56  com.adobe.Photoshop                     0x00000001005b0c02 0x100000000 + 5966850
    57  com.adobe.Photoshop                     0x00000001005b77ec 0x100000000 + 5994476
    58  com.adobe.Photoshop                     0x00000001005ad3ae 0x100000000 + 5952430
    59  com.adobe.Photoshop                     0x000000010001faa2 0x100000000 + 129698
    60  com.adobe.Photoshop                     0x0000000101920e04 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17607844
    61  com.apple.AppKit                        0x00007fff829356de -[NSApplication run] + 474
    62  com.adobe.Photoshop                     0x0000000101920402 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282
    63  com.adobe.Photoshop                     0x000000010192266e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094
    64  com.adobe.Photoshop                     0x00000001005ae27c 0x100000000 + 5956220
    65  com.adobe.Photoshop                     0x00000001007b074f boost::system::system_error::what() const + 1999183
    66  com.adobe.Photoshop                     0x00000001007b0999 boost::system::system_error::what() const + 1999769
    67  com.adobe.Photoshop                     0x000000010054b24c 0x100000000 + 5550668
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8910dadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8910d7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 2:  Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8912d8f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff8912d863 usleep + 57
    3   com.apple.DesktopServices               0x00007fff88abce1e TNode::WaitToBeSynced(bool) + 156
    4   com.apple.DesktopServices               0x00007fff88abcbfa TNode::StSynchronize::StSynchronize(TNodePtr const&, unsigned int) + 200
    5   com.apple.DesktopServices               0x00007fff88af6ea7 TNode::GetNodeFromPathName(TUString const&, TNodePtr&) + 83
    6   com.apple.DesktopServices               0x00007fff88ac66ba TNode::FindUserFolder(unsigned int, bool, TNodePtr&) + 212
    7   com.apple.DesktopServices               0x00007fff88ac6419 TNode::SetSpecialNodeFromOStype(unsigned int) + 133
    8   com.apple.DesktopServices               0x00007fff88ac6313 TNode::SetSpecialNode(unsigned int, TNodePtr&) + 263
    9   com.apple.DesktopServices               0x00007fff88ac052c TNode::GetSpecialNodeWithStatus(unsigned int, OpaqueNodeRequest* const&, unsigned int, TNodePtr&) + 552
    10  com.apple.DesktopServices               0x00007fff88ad6b94 TNode::GetSpecialNode(unsigned int, OpaqueNodeRequest* const&, unsigned int) + 44
    11  com.apple.DesktopServices               0x00007fff88ad6b09 TNode::IsDesktop() const + 103
    12  com.apple.DesktopServices               0x00007fff88ad646d TNode::ResolveSharedFileListAliasIfNeeded() + 739
    13  com.apple.DesktopServices               0x00007fff88abe6d5 TNode::SynchronizeChildren(unsigned int, TNodeEventPtrSet&) + 4139
    14  com.apple.DesktopServices               0x00007fff88abd242 TNode::HandleSync(unsigned int) + 736
    15  com.apple.DesktopServices               0x00007fff88abcf33 TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 45
    16  com.apple.DesktopServices               0x00007fff88afb964 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1052
    17  com.apple.DesktopServices               0x00007fff88abb4a8 __PostNodeTaskRequest_block_invoke_2 + 98
    18  libSystem.B.dylib                       0x00007fff8912ed64 _dispatch_call_block_and_release + 15
    19  libSystem.B.dylib                       0x00007fff8910d8d2 _dispatch_queue_drain + 251
    20  libSystem.B.dylib                       0x00007fff8910d734 _dispatch_queue_invoke + 57
    21  libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    22  libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    23  libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8910ca2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8910ce3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 37:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 38:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 39:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 40:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 41:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 42:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.Photoshop                     0x0000000101958e99 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17837369
    3   com.adobe.Photoshop                     0x000000010195837e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17834526
    4   com.adobe.Photoshop                     0x00000001017de496 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16286518
    5   com.adobe.Photoshop                     0x0000000101958160 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17833984
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 43:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8912d8f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x00000001390089cb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x0000000138fee7c9 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.PSAutomate                    0x0000000139008d36 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 44:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 45:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 46:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 47:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 48:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 49:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine      

    Hi Chris,
    I just tried to create and save a new custom color setting in Photoshop and it crashed on me as soon as I hit save.  I was using a custom color setting that I had created a couple of days ago.  I tried deleting preferences again which doesn't seem to help.  Here's the problem details.
    Process:         Adobe Photoshop CS6 [845]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.1 (13.0.1.519)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [102]
    Date/Time:       2012-09-19 13:47:34.159 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          66277 sec
    Crashes Since Last Report:           32
    Per-App Interval Since Last Report:  2012 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      420A7D57-F2CF-4101-9FAD-545C1E92B4BA
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff890fa9c7 small_malloc_from_free_list + 844
    1   libSystem.B.dylib                       0x00007fff890f71e1 szone_malloc_should_clear + 2070
    2   libSystem.B.dylib                       0x00007fff890f698a malloc_zone_malloc + 82
    3   com.apple.Foundation                    0x00007fff88e5fb08 allocateCollectableUnscannedStorage + 51
    4   com.apple.Foundation                    0x00007fff88e6d2b5 -[NSConcreteMapTable grow] + 187
    5   com.apple.Foundation                    0x00007fff88e6bf56 -[NSConcreteMapTable setObject:forKey:] + 159
    6   com.apple.AppKit                        0x00007fff82a2b7c9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 958
    7   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    8   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    9   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    10  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    11  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    12  com.apple.AppKit                        0x00007fff82a2a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 767
    13  com.apple.AppKit                        0x00007fff82a29b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 254
    14  com.apple.AppKit                        0x00007fff82a263de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    15  com.apple.AppKit                        0x00007fff8299fc0e -[NSView displayIfNeeded] + 969
    16  com.apple.AppKit                        0x00007fff82967c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    17  com.apple.AppKit                        0x00007fff82ba927f -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 734
    18  com.apple.AppKit                        0x00007fff82ba8ce7 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextIn fo:] + 714
    19  com.apple.AppKit                        0x00007fff82ba8a18 -[NSApplication beginModalSessionForWindow:] + 36
    20  com.apple.AppKit                        0x00007fff82ba893a -[NSApplication runModalForWindow:] + 106
    21  com.apple.AppKit                        0x00007fff82e0e112 -[NSSavePanel runModal] + 318
    22  com.adobe.Photoshop                     0x000000010039402d 0x100000000 + 3751981
    23  com.adobe.Photoshop                     0x00000001000c4379 0x100000000 + 803705
    24  com.adobe.Photoshop                     0x000000010059e4db 0x100000000 + 5891291
    25  com.adobe.Photoshop                     0x000000010059b40e 0x100000000 + 5878798
    26  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    27  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    28  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    29  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    30  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    31  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    32  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    33  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    34  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    35  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    36  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    37  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    38  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    39  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    40  com.adobe.Photoshop                     0x0000000101917ba8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17568264
    41  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    42  com.adobe.Photoshop                     0x0000000101920088 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17602280
    43  com.apple.AppKit                        0x00007fff82ac4eda -[NSApplication sendAction:to:from:] + 95
    44  com.adobe.Photoshop                     0x0000000101922f8c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614316
    45  com.apple.AppKit                        0x00007fff82ac4e39 -[NSControl sendAction:to:] + 94
    46  com.apple.AppKit                        0x00007fff82b5084b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    47  com.apple.AppKit                        0x00007fff82b8137a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    48  com.apple.AppKit                        0x00007fff82b4f2f5 -[NSControl mouseDown:] + 624
    49  com.apple.AppKit                        0x00007fff82a693a7 -[NSWindow sendEvent:] + 5409
    50  com.adobe.Photoshop                     0x00000001019b1c47 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18199207
    51  com.apple.AppKit                        0x00007fff8299eafa -[NSApplication sendEvent:] + 4719
    52  com.adobe.Photoshop                     0x0000000101922dcd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17613869
    53  com.adobe.Photoshop                     0x00000001019222ae AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17611022
    54  com.adobe.Photoshop                     0x00000001005be155 0x100000000 + 6021461
    55  com.adobe.Photoshop                     0x00000001005ad63e 0x100000000 + 5953086
    56  com.adobe.Photoshop                     0x000000010001f312 0x100000000 + 127762
    57  com.adobe.Photoshop                     0x00000001005ba9ca 0x100000000 + 6007242
    58  com.adobe.Photoshop                     0x000000010018d11e 0x100000000 + 1626398
    59  com.adobe.Photoshop                     0x000000010018d3dc 0x100000000 + 1627100
    60  com.adobe.Photoshop                     0x000000010055bffa 0x100000000 + 5619706
    61  com.adobe.Photoshop                     0x00000001005a0d03 0x100000000 + 5901571
    62  com.adobe.Photoshop                     0x0000000100591c0f 0x100000000 + 5839887
    63  com.adobe.Photoshop                     0x0000000100023e98 0x100000000 + 147096
    64  com.adobe.Photoshop                     0x000000010061493e boost::system::system_error::what() const + 311358
    65  com.adobe.Photoshop                     0x0000000100614974 boost::system::system_error::what() const + 311412
    66  com.adobe.Photoshop                     0x00000001005b0ed2 0x100000000 + 5967570
    67  com.adobe.Photoshop                     0x00000001005b7abc 0x100000000 + 5995196
    68  com.adobe.Photoshop                     0x00000001005ad63e 0x100000000 + 5953086
    69  com.adobe.Photoshop                     0x000000010001f312 0x100000000 + 127762
    70  com.adobe.Photoshop                     0x00000001019218a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17608452
    71  com.apple.Foundation                    0x00007fff88ebdcb5 __NSFireTimer + 114
    72  com.apple.CoreFoundation                0x00007fff827b1be8 __CFRunLoopRun + 6488
    73  com.apple.CoreFoundation                0x00007fff827afdbf CFRunLoopRunSpecific + 575
    74  com.apple.HIToolbox                     0x00007fff86f2c7ee RunCurrentEventLoopInMode + 333
    75  com.apple.HIToolbox                     0x00007fff86f2c551 ReceiveNextEventCommon + 148
    76  com.apple.HIToolbox                     0x00007fff86f2c4ac BlockUntilNextEventMatchingListInMode + 59
    77  com.apple.AppKit                        0x00007fff8296feb2 _DPSNextEvent + 708
    78  com.apple.AppKit                        0x00007fff8296f801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    79  com.apple.AppKit                        0x00007fff8293568f -[NSApplication run] + 395
    80  com.adobe.Photoshop                     0x00000001019219d2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17608754
    81  com.adobe.Photoshop                     0x0000000101923c3e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17617566
    82  com.adobe.Photoshop                     0x00000001005ae50c 0x100000000 + 5956876
    83  com.adobe.Photoshop                     0x00000001007b0f8f boost::system::system_error::what() const + 2000527
    84  com.adobe.Photoshop                     0x00000001007b11d9 boost::system::system_error::what() const + 2001113
    85  com.adobe.Photoshop                     0x000000010054b4dc 0x100000000 + 5551324
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8910dadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8910d7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   ...dobe.dvatransport.framework          0x0000000127fbd5b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   ...dobe.dvatransport.framework          0x0000000127fc927b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   ...dobe.dvatransport.framework          0x0000000127fb1ab5 SkyConnectionEnv::MainLoop() + 117
    4   ...dobe.dvatransport.framework          0x0000000127fb1b19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...dobe.dvatransport.framework          0x0000000127fc94df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   ...dobe.dvatransport.framework          0x0000000127fc9acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   ...dobe.dvatransport.framework          0x0000000127fbbd99 boost_asio_detail_posix_thread_function + 25
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   ...dobe.dvatransport.framework          0x0000000127fbd5b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   ...dobe.dvatransport.framework          0x0000000127fc927b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   ...dobe.dvatransport.framework          0x0000000127fb1ab5 SkyConnectionEnv::MainLoop() + 117
    4   ...dobe.dvatransport.framework          0x0000000127fb1b19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 37:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 38:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 39:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 40:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 41:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 42:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 43:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 44:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 45:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 46:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 47:
    0   libSystem.B.dylib                       0x00007fff8

  • Illustrator CS6 and Bridge do no open in creative cloud subscription

    Subsribed to Creative Clou but never could install and open Illustrator and Bridge giving error below.
    Read forums, used AdobeCreativeSuiteCleanerTool, re-installed but same problem continue...
    Can you help?
    Process:         Adobe Illustrator [45238]
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         722 (16.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [135]
    User ID:         501
    Date/Time:       2013-01-25 12:15:25.073 +0200
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          348806 sec
    Crashes Since Last Report:           212
    Per-App Interval Since Last Report:  69 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      50A92178-2EC1-00B5-A442-DA8CD95F6233
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8d402212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8cec4af4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8cf08dce abort + 143
    3   libc++abi.dylib                         0x00007fff894b5a17 abort_message + 257
    4   libc++abi.dylib                         0x00007fff894b33c6 default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff886b6887 _objc_terminate() + 111
    6   libc++abi.dylib                         0x00007fff894b33f5 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff894b3450 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff894b4647 __cxa_rethrow + 85
    9   com.adobe.illustrator                   0x000000010084ce60 0x100000000 + 8703584
    10  com.adobe.illustrator                   0x0000000100707ec4 0x100000000 + 7372484
    11  com.adobe.illustrator                   0x00000001006f893c 0x100000000 + 7309628
    12  com.adobe.illustrator                   0x00000001001630e8 0x100000000 + 1454312
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8d402d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff915d4dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff915d49ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8d4026d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cec5eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cec5cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8ceb0171 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8d4026d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cec5eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cec5cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8ceb0171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8d4026d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cec5eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cec5cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8ceb0171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8d4020fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cec7f89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff87f65214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff87f653eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff87ec7b24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a362c9 0x1029fd000 + 234185
    6   com.adobe.ACE                           0x0000000102a355da 0x1029fd000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff87f3c7e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8cec3742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8ceb0181 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbff8f8  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbff920  rsp: 0x00007fff5fbff8f8
       r8: 0x00007fff77663278   r9: 0x000000000000000b  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbffa80  r13: 0x0000000000000000  r14: 0x00007fff77664180  r15: 0x00007fff5fbff960
      rip: 0x00007fff8d402212  rfl: 0x0000000000000206  cr2: 0x00007fff7765cfe8
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x10187aff7 +com.adobe.illustrator (722 - 16.0.0) <C1330795-8FA8-BB65-C941-AA36D03394E3> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101abe000 -        0x102803ff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x102816000 -        0x102884fef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1028d8000 -        0x1028dcff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120720) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x1028e2000 -        0x10293fff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.722) <DAF9D4A3-5A37-2550-D7E6-DDCED7B15830> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/aiport.framework/Versions/A/aiport
           0x102966000 -        0x1029cbff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.722) <FFD7F1F4-6646-6E53-2C27-6F1833B7D840> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/filterport.framework/Versions/A/filterport
           0x1029f9000 -        0x1029f9ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.722) <88F53468-DA62-3334-1187-61752A380FFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x1029fd000 -        0x102b76fff +com.adobe.ACE (AdobeACE 2.19.18.20990 - 2.19.18.20990) <48C7C467-93A7-F609-1083-D0DD3C0B8988> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x102b89000 -        0x103191fff +com.adobe.AGM (AdobeAGM 4.26.20.20990 - 4.26.20.20990) <8F9BD5CF-287E-9EF1-926D-728359878CAC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10322d000 -        0x10326fff7 +com.adobe.ARE (AdobeARE 1.5.02.20990 - 1.5.02.20990) <2FF36232-F715-2228-ACC0-BABFC0D6F779> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x103277000 -        0x103371fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103415000 -        0x103434fff +com.adobe.BIB (AdobeBIB 1.2.02.20990 - 1.2.02.20990) <84AEC009-ED37-875D-BA3B-19FF2A53F9EF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10343b000 -        0x103463ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4D9551F1-B07C-3BAF-0CED-1F83C866BCAA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10346a000 -        0x1037ceff7 +com.adobe.CoolType (AdobeCoolType 5.10.34.20990 - 5.10.34.20990) <3D5F8577-39F8-D1D0-81FE-6DC4203A9719> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10381a000 -        0x103c60fff +com.adobe.MPS (AdobeMPS 5.8.0.24821 - 5.8.0.24821) <E8E87710-F66B-32B5-97C6-A35D20867697> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103cdd000 -        0x104ddbfef +com.adobe.psl (AdobePSL 13.0.0.21041 - 13.0.0.21041) <910C283A-607C-F863-97EF-07FB2EEB38AD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104f9c000 -        0x104ffcff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105006000 -        0x1050befe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1050f1000 -        0x10519bfe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x1051c2000 -        0x105302fe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x105381000 -        0x105483fef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x1054cb000 -        0x105618ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10568c000 -        0x1058d5fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105958000 -        0x10595ffff +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <51536CCA-D34E-51D7-2031-5757EBA5AEF9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x105969000 -        0x105995fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1059b8000 -        0x105a75fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x105abf000 -        0x105b84fff +com.adobe.JP2K (2.0.0 - 2.0.0.25990) <1D61D0B2-F263-72E6-C2BB-C8BA6EBB9BAD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bd3000 -        0x105d9cfff +com.adobe.owl (AdobeOwl version 5.0.3 - 5.0.3) <1DEEBFAD-1C6D-303B-9F68-B39677534527> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105dde000 -        0x1065b1ff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106669000 -        0x10676afff +com.adobe.PDFPort (AdobePDFPort 2.1.0.20993 - 2.1.0.20993) <4356804E-2D42-1280-DC3B-66448D57F05A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x10677e000 -        0x1067a3ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsetting s
           0x1067df000 -        0x106825fe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x106832000 -        0x1068e0fef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10691d000 -        0x1069d9fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x1069fb000 -        0x106d11fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x106ddd000 -        0x106df7ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x106e00000 -        0x106e19fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <F61B0C46-58B8-B22C-8D68-BD907307AD02> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x106e20000 -        0x106f04fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106f15000 -        0x106f1dfef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <115FE7FA-3CD2-0E93-4E98-AEF475EE38FC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106f37000 -        0x106f50ff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <C43579CF-8992-A347-43DA-C0A4E811F0BA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106f72000 -        0x107026fef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <AD024D5E-3C89-5980-33C4-7AB355E81E00> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1070b2000 -        0x10711ffef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <C9185142-EB21-6C02-330C-02C40D8C19AB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x107223000 -        0x107230fff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <51D9E37F-A619-075C-310C-7A23812C559C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x107245000 -        0x107247ff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <D36A5C9D-869E-4493-3105-7659ECF4F0B2> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10724e000 -        0x10725afff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <F69443FF-E9DF-0EE6-CBC9-7E93FB06416A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x107278000 -        0x1076c3fef +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <C11B696F-8413-184E-76BE-687FEF337DF2> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x107d1e000 -        0x107e0afe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <09B2691C-AB50-8014-3644-631B28F30ECC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x107eb6000 -        0x1080aafff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <062B4270-A1D5-3B16-D19C-7FD62762DE0C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x108272000 -        0x108795fef +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <1FF12081-8F4F-513F-5803-19C178E1FC6E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x108ca9000 -        0x108d76ff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <238EBCBE-E966-BBC8-A0A8-4D8207AB3942> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108e6a000 -        0x108f56ff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <A5114324-B07E-5DAE-5E08-4B11D42D9685> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1090a1000 -        0x10911ffff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x109130000 -        0x10915cff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x109175000 -        0x109183ff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x109199000 -        0x10919efff  com.apple.agl (3.2.1 - AGL-3.2.1) <1A57AE22-37F6-3A2E-8098-183B280EEEA9> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1091a5000 -        0x1091aefff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <EE260496-3570-A6FC-32D3-25809F7476FA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1091bc000 -        0x1091c0ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x10935c000 -        0x10935eff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
        0x7fff622b1000 -     0x7fff622e593f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff86b3b000 -     0x7fff86b8aff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff87b45000 -     0x7fff87b45fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87be7000 -     0x7fff87bf2fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff87bf5000 -     0x7fff87e99fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff87eb8000 -     0x7fff881cfff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff881d0000 -     0x7fff881e3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff881e4000 -     0x7fff881ecfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8822a000 -     0x7fff882c4fff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff88330000 -     0x7fff88332fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff88333000 -     0x7fff8838dfff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff8841f000 -     0x7fff8842dff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8842e000 -     0x7fff884dffff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff884e5000 -     0x7fff884e5fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff884e6000 -     0x7fff884f9ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff884fa000 -     0x7fff885f7fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff885f8000 -     0x7fff88655ff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff886a5000 -     0x7fff887bd92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff887be000 -     0x7fff887befff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff8881c000 -     0x7fff888baff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff888fd000 -     0x7fff88954ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff88ae2000 -     0x7fff88aecfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff88aed000 -     0x7fff88c06ff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff88c07000 -     0x7fff88c24fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff88c25000 -     0x7fff88cf7ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88cf8000 -     0x7fff88e7efff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff89279000 -     0x7fff893edfff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff893ee000 -     0x7fff8942bfe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff89474000 -     0x7fff89478fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff894b2000 -     0x7fff894d7ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff894d8000 -     0x7fff89517ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff895ec000 -     0x7fff89821ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89c31000 -     0x7fff89c8dff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff89c9a000 -     0x7fff89c9ffff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff89ca0000 -     0x7fff89f70fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a0e3000 -     0x7fff8a150ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8a154000 -     0x7fff8a154fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8a19a000 -     0x7fff8a25fff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a29b000 -     0x7fff8a2deff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8a311000 -     0x7fff8a320ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8a37f000 -     0x7fff8a3ecfff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8a3ed000 -     0x7fff8a3eefff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a3ef000 -     0x7fff8a47cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff8a48c000 -     0x7fff8a50dfff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff8a50e000 -     0x7fff8b13bff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8b74d000 -     0x7fff8b74eff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff8b74f000 -     0x7fff8b751ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff8b752000 -     0x7fff8b788fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff8ba36000 -     0x7fff8ba58ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8bcd9000 -     0x7fff8bd41fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8bd42000 -     0x7fff8bd44ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8bd45000 -     0x7fff8be47fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8bf58000 -     0x7fff8bf7fff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff8bf8d000 -     0x7fff8bfb4fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff8c040000 -     0x7fff8c9d0c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8c9d1000 -     0x7fff8c9e0ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ca4b000 -     0x7fff8ca7cff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff8cb9c000 -     0x7fff8cbbdfff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8cbbe000 -     0x7fff8cbc2ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8cbc3000 -     0x7fff8cbc8fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cbc9000 -     0x7fff8cbcbfff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
        0x7fff8cbcc000 -     0x7fff8cc89ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff8ccbf000 -     0x7fff8cccbfff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff8cccc000 -     0x7fff8cce1fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff8cce2000 -     0x7fff8ce33fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ce38000 -     0x7fff8ce3ffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8ce47000 -     0x7fff8ce47fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8ce48000 -     0x7fff8ce53fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ce54000 -     0x7fff8ce55ff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff8ce80000 -     0x7fff8ce83fff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8ce84000 -     0x7fff8ce84fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8ce8d000 -     0x7fff8ceaeff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8ceaf000 -     0x7fff8cf7bfe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8cfc5000 -     0x7fff8d014ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8d267000 -     0x7fff8d268fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8d2b0000 -     0x7fff8d2d0fff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d2d1000 -     0x7fff8d3c6fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8d3c9000 -     0x7fff8d3e0fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff8d3e1000 -     0x7fff8d3efff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8d3f0000 -     0x7fff8d40bff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8d40c000 -     0x7fff8d434fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8d451000 -     0x7fff8d848fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff8d849000 -     0x7fff8d84ffff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8d850000 -     0x7fff8d89cff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8d93b000 -     0x7fff8d93eff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8d93f000 -     0x7fff8d95eff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff8d95f000 -     0x7fff8d95ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d960000 -     0x7fff8d96bff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff8d96c000 -     0x7fff8d972ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8dc0e000 -     0x7fff8dce8ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8dd00000 -     0x7fff8dda6ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff8de37000 -     0x7fff8de39fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff8defb000 -     0x7fff8df35fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8e0b6000 -     0x7fff8e1b3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8e1b5000 -     0x7fff8e1e0fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8e2e8000 -     0x7fff8e345fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e346000 -     0x7fff8e390ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e391000 -     0x7fff8e413fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e41d000 -     0x7fff8e53dfff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8edbf000 -     0x7fff8ef5afef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff8ef5b000 -     0x7fff8efb0ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f1f2000 -     0x7fff8f2fdfff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8f304000 -     0x7fff8f347fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff8f360000 -     0x7fff8f361ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8f362000 -     0x7fff8f36fff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f370000 -     0x7fff8f378ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f401000 -     0x7fff8f445fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff8f446000 -     0x7fff8f45cfff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8f45d000 -     0x7fff8f463fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8f464000 -     0x7fff8f465ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff8f46e000 -     0x7fff8f657fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f658000 -     0x7fff8f665fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8f666000 -     0x7fff8f66afff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8f66b000 -     0x7fff8f66dfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff8f906000 -     0x7fff8f930ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f96c000 -     0x7fff8fb1afff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8fb1b000 -     0x7fff8fb99ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8fb9a000 -     0x7fff8fb9ffff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8fba0000 -     0x7fff8fba6fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8fc8a000 -     0x7fff8fc8eff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff8fc8f000 -     0x7fff8fc93fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff8fc94000 -     0x7fff8fc94fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8fe47000 -     0x7fff8ff49fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8ff4a000 -     0x7fff8ff53fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8ff84000 -     0x7fff8ff85fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ff87000 -     0x7fff8ffe3fff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8ffe4000 -     0x7fff9001afff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff9001b000 -     0x7fff9001ffff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff9002b000 -     0x7fff9002bfff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff901d8000 -     0x7fff901f7ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff9024a000 -     0x7fff902b3fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff90330000 -     0x7fff90333fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff90389000 -     0x7fff9039dfff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff904ba000 -     0x7fff904dcff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff90d96000 -     0x7fff90e30fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff90e31000 -     0x7fff90e87ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff9111a000 -     0x7fff9111affd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9144a000 -     0x7fff91461fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff91462000 -     0x7fff91476fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff914c5000 -     0x7fff91545ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff91546000 -     0x7fff9159cfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff9159d000 -     0x7fff915abfff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff915ac000 -     0x7fff915bafff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff915bb000 -     0x7fff915c2fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff915d0000 -     0x7fff915e5ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff915e6000 -     0x7fff91916ff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff92086000 -     0x7fff92286fff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
        0x7fff92287000 -     0x7fff926a4fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
        0x7fff926a6000 -     0x7fff926f7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff92bc5000 -     0x7fff92bd7ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff92bd8000 -     0x7fff92c40ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff92f7b000 -     0x7fff92fa9ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff93063000 -     0x7fff93070fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff93579000 -     0x7fff938d5fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 28692
        thread_create: 9
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=283.0M resident=102.2M(36%) swapped_out_or_unallocated=180.8M(64%)
    Writable regions: Total=42.7M written=11.1M(26%) resident=13.3M(31%) swapped_out=4K(0%) unallocated=29.5M(69%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    128K
    CoreServices                       3932K
    MALLOC                             28.2M
    MALLOC guard page                    48K
    Memory tag=242                       12K
    STACK GUARD                        56.0M
    Stack                              10.5M
    VM_ALLOCATE                         960K
    __DATA                             18.0M
    __IMAGE                             528K
    __LINKEDIT                         76.5M
    __TEXT                            206.5M
    __UNICODE                           544K
    mapped file                        18.8M
    shared memory                       308K
    ===========                      =======
    TOTAL                             420.9M

    3D can be disabled on older OSes (XP) and if your video card doesn't meet the minimum requirements.

  • My Illustrator CS6 will not launch

    I was working with an AI file in Illustrator today. Everything was working fine and I made some edits and placed the file in my inDesign document.  I saw another change I wanted to make so I right clicked on the file and selected Edit with Illustrator.  I received a Windows pop up box that said, "Adobe Illustrator CS6 has stopped working A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available." The only option was to click the "Close program" button.  No other info was given.  For the last two  hours I have been searching Google, these forums and asking some of my Illustrator friends if they had any ideas.
    I can open the program by holding down the shift key and I can even open a file but no features are available  (See image)  As you can see most of the options in the windows are missing.  Even if I open a file, nothing in the Window menu is available and even preferences will not open.  I can't even use shortcuts.
    Google says you can reset/delete preferences by holding shift - control - at while opening the program. This still doesn't work and the system crashes on the load of ColorHarmony.aip
    I have not reinstalled the software because after reading other issues on the net that were very similar to mine, this did not help.  I was working with fonts and deleted one because it didn't work at all.  I don't remember the name but I know it started with a T.  When I went to Windows/Fonts the font only came up as hahahah hahaha instead of characters of the alphabet.  So, I deleted it thinking something is up with this font.  Maybe I've messed up a required font?
    I am running Illustrator CS6 16.0.3 64bit.
    I finally found an article that pointed me to three logs.  There was nothing with the date and time of my last attempt to open the software in PDApp.log.  The file oobelib.log had the following info from my last attempt to open the program:
    2015-02-27 00:15:20 [6512]  Adobe Silent Activator: ***********Silent Activator Launched = 7.0.1.107,7.1 ************
    2015-02-27 00:15:20 [6512]  SLCoreService: Starting up SLCore 2.0 Release (build 2.0.1.360321).
    2015-02-27 00:15:20 [6512]  SLCoreService: Service construction took 0.0 ms and succeed.
    2015-02-27 00:15:20 [6512]  PCDService: PCD Service in non-threaded mode
    2015-02-27 00:15:20 [6512]  AXFBLicensing: All function pointers successfully retrieved
    2015-02-27 00:15:20 [6512]  Activation: ProcessXMLFile : XML File successfully parsed!
    2015-02-27 00:15:20 [6512]  Activation: LEID=Illustrator-CS6-Win-GM DLEID=DesignWebSuitePremium-CS6-Win-GM ELEID=DesignWebSuitePremium-CS6-Win-GM LOCALE=en_US APPAMT = C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT DAMT = C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT
    2015-02-27 00:15:20 [6512]  HEADLESS MODE: HEADLESS MODE is : LaunchMode_UI
    2015-02-27 00:15:20 [6512]  SLCoreService: Syncing to license store...
    2015-02-27 00:15:20 [6512]  SLCoreService: Found server mkey.
    2015-02-27 00:15:20 [6512]  SLCoreService: Loading license references...
    2015-02-27 00:15:20 [6512]  SLCoreService: Found 4 license file(s)
    2015-02-27 00:15:20 [6512]  SLCoreService: Parsing license file [202753869.lic] succeed.
    2015-02-27 00:15:20 [6512]  SLCoreService: Parsing license file [218912877.lic] succeed.
    2015-02-27 00:15:20 [6512]  SLCoreService: Parsing license file [250161213.lic] succeed.
    2015-02-27 00:15:20 [6512]  SLCoreService: Parsing license file [28738525.lic] succeed.
    2015-02-27 00:15:20 [6512]  SLCoreService: License store synchronization took 44.3 ms and succeed.
    2015-02-27 00:15:20 [6512]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [6512]  Activation: SA functionality for post-chrome mode
    2015-02-27 00:15:20 [6512]  Activation: ExpirySerialNumber : Expiration data found.
    2015-02-27 00:15:20 [6512]  Activation: ExpirySerialNumber : Serial Number not expired.
    2015-02-27 00:15:20 [6512]  SLCoreService: Shutting down SLCore 2.0 Release (build 2.0.1.360321).
    2015-02-27 00:15:20 [6512]  SLCoreService: Service destruction took 0.4 ms and succeed.
    2015-02-27 00:15:20 [6512]  Adobe Silent Activator: Checking for other cached SA jobs....
    2015-02-27 00:15:20 [6512]  PCDService: PCD Service in non-threaded mode
    2015-02-27 00:15:20 [6512]  PCDService: Failed to read value for key [DATA] in hive [SAFILELIST] from cache : 769
    2015-02-27 00:15:20 [6512]  Adobe Silent Activator: No cached jobs found !
    2015-02-27 00:15:20 [6512]  Adobe Silent Activator: ***********Silent Activator End*******************
    **** NEXT LOG - AMT3.LOG ****
    The next next file my resource told me to look at was amt3.log.  This file consist of the following info:
    2015-02-27 00:15:16 [5484]  AMT: START SESSION, library version 6.0.0.75,6.0
    2015-02-27 00:15:16 [5484]  AMT: Initializing C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\
    2015-02-27 00:15:16 [5484]  AMT: Adobe License Manager version 3.5 (build 2.0) RELEASE
    2015-02-27 00:15:16 [5484]  AMT: Virtualization Turned off
    2015-02-27 00:15:16 [5484]  PCDService: PCD Service in non-threaded mode
    2015-02-27 00:15:16 [5484]  performance: AMTPreObtainProductLicense took 1.039846 ms
    2015-02-27 00:15:16 [5484]  AMT: RW check key updated !
    2015-02-27 00:15:16 [5484]  AMT: App Product Locale [0] = en_US
    2015-02-27 00:15:16 [5484]  config: Loading configuration for C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT\application.xml
    2015-02-27 00:15:16 [5484]  config: Found payload code {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}
    2015-02-27 00:15:16 [5484]  PCDService: found driver code {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:16 [5484]  config: config: Host app was installed, using installed license configuration.
    2015-02-27 00:15:16 [5484]  PCDService: Failed to read value for key [FLMap] in hive [Illustrator-CS6-Win-GM{|}ALL] from cache : 769
    2015-02-27 00:15:16 [5484]  config: Setting current license to the driver at startup because no mapping was found.
    2015-02-27 00:15:16 [5484]  config: Setting current license to DesignWebSuitePremium-CS6-Win-GM [ALL]
    2015-02-27 00:15:16 [5484]  config: payload code: {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}
    2015-02-27 00:15:16 [5484]  config: driver payload code: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:16 [5484]  config: driver licensing code: DesignWebSuitePremium-CS6-Win-GM
    2015-02-27 00:15:16 [5484]  config: current licensing code: DesignWebSuitePremium-CS6-Win-GM
    2015-02-27 00:15:16 [5484]  config: current locale code: ALL
    2015-02-27 00:15:16 [5484]  config: Done loading configuration
    2015-02-27 00:15:16 [5484]  config: Setting insalled locales
    2015-02-27 00:15:16 [5484]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2015-02-27 00:15:16 [5484]  AMT: Installed Locale  [0] = en_US
    2015-02-27 00:15:16 [5484]  AMT: Reordered Locale  [0] = en_US
    2015-02-27 00:15:16 [5484]  AMT: config: Finding license info for payload: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:16 [5484]  AMT: config: PayloadCode: {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}
    2015-02-27 00:15:16 [5484]  AMT: config: Driver PayloadCode: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:16 [5484]  AMT: config: Installed LicensingCode: DesignWebSuitePremium-CS6-Win-GM
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [BridgeTalkCode] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [EULA] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Registration] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Registration] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Growl] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Growl] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [EULAForPassive] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [EULAForPassive] in hive [DesignWebSuitePremium-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [Updates] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [SuiteFeatureCount] in hive [DesignWebSuitePremium-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  AMT: Application can be serialized (Non Passive App).
    2015-02-27 00:15:16 [5484]  PCDService: Failed to read value for key [LicensedLocales] in hive [Illustrator-CS6-Win-GM{|}LicLoc] from cache : 769
    2015-02-27 00:15:16 [5484]  config: Setting current license to DesignWebSuitePremium-CS6-Win-GM [en_US]
    2015-02-27 00:15:16 [5484]  config: Enigma Data Found from SLCache
    2015-02-27 00:15:16 [5484]  PCDService: Failed to read value for key [AMTConfigPath] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] from cache : 769
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [ExpirationDate] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  AMT: Subsequent launch (serial [90148713156021585045]).
    2015-02-27 00:15:16 [5484]  AMT: Application state initialized.  Obtaining Product License.
    2015-02-27 00:15:16 [5484]  AMT: Obtaining client features from cache.
    2015-02-27 00:15:16 [5484]  AMT: Obtaining client product info from cache.
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [ExpirationDate] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [ENABLE_GUEST] in hive [DesignWebSuitePremium-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [ExpirationDate] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:16 [5484]  AMT: Running in PROV_APP
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [EULADelay] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [EULADelay] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  PCDService: No value for key [MediaTag] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:16 [5484]  config: No media tag found for payload {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:16 [5484]  config: Using default media policy RET
    2015-02-27 00:15:16 [5484]  uiswitch: EULA has already been accepted.
    2015-02-27 00:15:16 [5484]  AMT: This is a subsequent launch. Deferring services.
    2015-02-27 00:15:16 [5484]  performance: AMTObtainProductLicense took 24.793335 ms
    2015-02-27 00:15:18 [5484]  AMT: Pre-Validating Product License.
    2015-02-27 00:15:18 [5484]  AMT: Services not yet loaded in this session.
    2015-02-27 00:15:18 [5484]  AMT: Loading services in background to get ready for Validate call.
    2015-02-27 00:15:18 [5484]  AMT: Spawning background thread to load services.
    2015-02-27 00:15:18 [5484]  performance: AMTPreValidateProductLicense took 142.779556 ms
    2015-02-27 00:15:18 [5484]  AMT: Starting work on prevalidate thread.
    2015-02-27 00:15:18 [5484]  AMT: Looking for alternate serial if any.
    2015-02-27 00:15:18 [5484]  AMT: Found Serial = 901487131560215850457198
    2015-02-27 00:15:18 [5484]  AMT: AMTPlugPlug : Get Licensing information
    2015-02-27 00:15:18 [5484]  AMT: Looking for alternate serial if any.
    2015-02-27 00:15:18 [5484]  AMT: Found Serial = 901487131560215850457198
    2015-02-27 00:15:18 [5484]  AMT: PlugPlug : AdobeId has been created or SN with no SaaS bit
    2015-02-27 00:15:18 [5484]  AMT: PlugPlug : Can Go Online returned as true
    2015-02-27 00:15:19 [5484]  AMT: AMTPlugPlug : Getting the AdobeID / Timestamp Map
    2015-02-27 00:15:19 [5484]  AMT: AMTPlugPlug : Preparing response for getProductLicenseInfo
    2015-02-27 00:15:19 [5484]  performance: AMTPlugPlugRequest took 1036.806396 ms
    2015-02-27 00:15:19 [5484]  AMT: Looking for alternate serial if any.
    2015-02-27 00:15:20 [5484]  AMT: RW check key updated !
    2015-02-27 00:15:20 [5484]  AMT: AMT: PreValidating Product License.
    2015-02-27 00:15:20 [5484]  AMT: Launch Workflow not yet done in this session.
    2015-02-27 00:15:20 [5484]  AMT: Starting Background Subsequent Launch Workflow
    2015-02-27 00:15:20 [5484]  AMT: Starting ALM workflow.
    2015-02-27 00:15:20 [5484]  AMT: Initializing ALM for serialized activation.
    2015-02-27 00:15:20 [5484]  ALMService: Initializing as licensed app
    2015-02-27 00:15:20 [5484]  ALM: _info_: Start ALM 3.5 Release (build 3.5.2.0)
    2015-02-27 00:15:20 [5484]  SLCoreService: Starting up SLCore 2.0 Release (build 2.0.1.301001).
    2015-02-27 00:15:20 [5484]  SLCoreService: Service construction took 0.0 ms and succeed.
    2015-02-27 00:15:20 [5484]  ALM: _info_: LEID passed DesignWebSuitePremium-CS6-Win-GM is used to configure SLCore = 0
    2015-02-27 00:15:20 [5484]  ALM: _info_: Host app is Licensable App
    2015-02-27 00:15:20 [5484]  AMT: Found Serial = 901487131560215850457198
    2015-02-27 00:15:20 [5484]  AMT: AMTPlugPlug : Get Licensing information
    2015-02-27 00:15:20 [5484]  AMT: Looking for alternate serial if any.
    2015-02-27 00:15:20 [5484]  ALM: _info_: Got DOM List from FA_Set
    2015-02-27 00:15:20 [5484]  AMT: Found Serial = 901487131560215850457198
    2015-02-27 00:15:20 [5484]  ALM: _info_: Found LEID Illustrator-CS6-Win-GM with AMT Path C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT
    2015-02-27 00:15:20 [5484]  ALM: _info_: Found LEID DesignWebSuitePremium-CS6-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT
    2015-02-27 00:15:20 [5484]  ALM: _info_: Found LEID VideoSuitePremium-CS6-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\VideoSuitePremium-CS6-Win-GM
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [MediaTag] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:20 [5484]  config: No media tag found for payload {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:20 [5484]  config: Using default media policy RET
    2015-02-27 00:15:20 [5484]  ALM: _info_: MediaTagPolicy is RET
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [NTL_WO_SN] in hive [DesignWebSuitePremium-CS6-Win-GM] in master : 10
    2015-02-27 00:15:20 [5484]  ALM: _info_: Canonical LEID is Illustrator-CS6-Win-GM
    2015-02-27 00:15:20 [5484]  ALM: _info_: Driver LEID is DesignWebSuitePremium-CS6-Win-GM
    2015-02-27 00:15:20 [5484]  ALM: _info_: Set Running Locale to en_US
    2015-02-27 00:15:20 [5484]  AMT: Performing ALM silent license verification.
    2015-02-27 00:15:20 [5484]  ALM: _info_: Validate license at Post-Chrome time, running locale is en_US
    2015-02-27 00:15:20 [5484]  ALM: _info_: Searching license for locale en_US ...
    2015-02-27 00:15:20 [5484]  AMT: PlugPlug : AdobeId has been created or SN with no SaaS bit
    2015-02-27 00:15:20 [5484]  AMT: PlugPlug : Can Go Online returned as true
    2015-02-27 00:15:20 [5484]  PCDService: Failed to read value for key [901487131560215850457198] in hive [RejectedSNDomain_CS5] from cache : 769
    2015-02-27 00:15:20 [5484]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2015-02-27 00:15:20 [5484]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2015-02-27 00:15:20 [5484]  ALM: _info_: Found existing serialization under LEID DesignWebSuitePremium-CS6-Win-GM, the serial number locale is en_US
    2015-02-27 00:15:20 [5484]  ALM: _info_: This is the running locale, stop the search
    2015-02-27 00:15:20 [5484]  AMT: AMTPlugPlug : Getting the AdobeID / Timestamp Map
    2015-02-27 00:15:20 [5484]  PCDService: Failed to read value for key [901487131560215850457198] in hive [RejectedSNDomain_CS5] from cache : 769
    2015-02-27 00:15:20 [5484]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for en_US
    2015-02-27 00:15:20 [5484]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is installed
    2015-02-27 00:15:20 [5484]  AMT: AMTPlugPlug : Preparing response for getProductLicenseInfo
    2015-02-27 00:15:20 [5484]  performance: AMTPlugPlugRequest took 347.622284 ms
    2015-02-27 00:15:20 [5484]  PCDService: Failed to read value for key [901487131560215850457198] in hive [RejectedSNDomain_CS5] from cache : 769
    2015-02-27 00:15:20 [5484]  PCDService: Failed to read value for key [901487131560215850457198] in hive [RejectedSNDomain_CS5] from cache : 769
    2015-02-27 00:15:20 [5484]  config: Setting current license to DesignWebSuitePremium-CS6-Win-GM [en_US]
    2015-02-27 00:15:20 [5484]  SLCoreService: Syncing to license store...
    2015-02-27 00:15:20 [5484]  SLCoreService: Found server mkey.
    2015-02-27 00:15:20 [5484]  SLCoreService: Loading license references...
    2015-02-27 00:15:20 [5484]  SLCoreService: Found 4 license file(s)
    2015-02-27 00:15:20 [5484]  SLCoreService: Parsing license file [202753869.lic] succeed.
    2015-02-27 00:15:20 [5484]  SLCoreService: Parsing license file [218912877.lic] succeed.
    2015-02-27 00:15:20 [5484]  SLCoreService: Parsing license file [250161213.lic] succeed.
    2015-02-27 00:15:20 [5484]  SLCoreService: Parsing license file [28738525.lic] succeed.
    2015-02-27 00:15:20 [5484]  SLCoreService: License store synchronization took 66.2 ms and succeed.
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  ALM: _info_: License Is Valid.
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [PDApp_WF] in hive [DesignWebSuitePremium-CS6-Win-GM] in cache : 519
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  ALM: _info_: Performing Disabled Check
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Base_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Distiller_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Professional_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_Base_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_CameraRaw_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_ColorSettings_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_MiniBridge_2.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature CreativeSuite_6.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature CreativeSuite_DesignWebPremium_6.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Dreamweaver_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Dreamweaver_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Fireworks_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Fireworks_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_Pro_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Illustrator_16.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Illustrator_Base_16.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature InDesign_8.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature InDesign_Base_8.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature MediaEncoder_Base_3.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_Base_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_Premium_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: No value for key [DataColl] in user dictionary.
    2015-02-27 00:15:20 [5484]  ALM: _info_: No data collection required
    2015-02-27 00:15:20 [5484]  ALM: _info_: Launching Silent Activator in Emergency Mode...
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Base_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Distiller_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Acrobat_Professional_10.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_Base_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_CameraRaw_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_ColorSettings_5.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Bridge_MiniBridge_2.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature CreativeSuite_6.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature CreativeSuite_DesignWebPremium_6.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Dreamweaver_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Dreamweaver_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Fireworks_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Fireworks_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_Base_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Flash_Pro_12.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Illustrator_16.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Illustrator_Base_16.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature InDesign_8.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature InDesign_Base_8.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature MediaEncoder_Base_3.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_Base_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  SLCoreService: Feature Photoshop_Premium_13.0 is enabled.
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [ALM_Info_S1] in hive [DesignWebSuitePremium-CS6-Win-GM{|}en_US] in cache : 519
    2015-02-27 00:15:20 [5484]  ALM: _info_: Performing Block Check
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  ALM: _info_: Block Check ByPassed
    2015-02-27 00:15:20 [5484]  SLCoreService: Query license: type = 3, duration = permanent, remaining = permanent.
    2015-02-27 00:15:20 [5484]  ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.577 sec)
    2015-02-27 00:15:20 [5484]  ALM: _info_: ALM_License_SilentValidate return license status: Valid And Activated
    2015-02-27 00:15:20 [5484]  config: Enigma Data Found from SLCache
    2015-02-27 00:15:20 [5484]  AMT: License check shows serialized product is already activated.
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [STORE_URL] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: Failed to get enigma data from hive [901487007673310060752956]: 769
    2015-02-27 00:15:20 [5484]  PCDService: Failed to get enigma data from hive [901487007673310060752956]: 769
    2015-02-27 00:15:20 [5484]  PCDService: Failed to get enigma data from hive [901487007673310060752956]: 769
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [NTL_WO_SN] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:20 [5484]  AMT: Running in PROV_APP
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value WorkFlowType [SilentActivator]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value LaunchMode [postchrome]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppName [CS6 Design and Web Premium]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppPath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppLaunchPath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppRunningLEID [Illustrator-CS6-Win-GM]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppDriverLEID [DesignWebSuitePremium-CS6-Win-GM]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppLicensingLEID [DesignWebSuitePremium-CS6-Win-GM]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AdobeCode [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value DriverAdobeCode [{402F6F2E-5683-491C-977D-0CA599A07CAF}]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppAMTPath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppDriverAMTPath [C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppLicensingAMTPath [C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppTrialSerialNumber [901487007673310060752956]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ShowEULA [false]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value BuyURL [http://www.adobe.com/go/buy?]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AdobeIDCreated [true]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppAMTBkGndFilePath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT\LMResources\background.png]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppAMTLogoFilePath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AMT\LMResources\adobelogo.png]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppAMTLicenseAFAQFilePath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\OBLRes\en_US\LicenseFAQ.html]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppAMTConnectionFAQFilePath [C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\OBLRes\en_US\ConnectionFAQ.html]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppRunningLocale [en_US]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppListOfLocales [en_US]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppProcessID []
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ProductID [543]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ProductVersion [6.0]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value Platform [0]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppHostAppType [ALM_HostAppType_LicensedProduct]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value AppEULAFolderPath []
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value NoTrial [0]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value UpgradeCheckRequired [0]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ExtendedProfileRegURL [http://www.adobe.com/go/adobemembership?productID=543&release=6.0&platform=0&locale=en_US& source=PCSTHX]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ClaimSource [nag_trial]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value RefreshWF [0]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value TrialGrace [30]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value TrialLeft [30]
    2015-02-27 00:15:20 [5484]  uiswitch: Key Value ApplicationLaunchMode [LaunchMode_UI]
    2015-02-27 00:15:20 [5484]  uiswitch: SilentActivator
    2015-02-27 00:15:20 [5484]  uiswitch: Silent Activator
    2015-02-27 00:15:20 [5484]  uiswitch: Launched
    2015-02-27 00:15:20 [5484]  ALM: _info_: Entered ALM_NeedANAG
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [ADOBEID_EXT_PROFILE] in hive [901487131560215850457198] in cache : 519
    2015-02-27 00:15:20 [5484]  ALM: _info_: Exiting ALM_NeedANAG
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [Updates] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:20 [5484]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2015-02-27 00:15:20 [5484]  ServiceLoader: looking for library C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\updaternotifications.dll
    2015-02-27 00:15:20 [5484]  ServiceLoader: Found library C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\updaternotifications.dll
    2015-02-27 00:15:20 [5484]  AUMService: IsUpdaterEnabled call
    2015-02-27 00:15:20 [5484]  AUMService: IsUpdaterEnabled call succeeded
    2015-02-27 00:15:20 [5484]  ALM: _info_: Deactivation menu is enabled
    2015-02-27 00:15:20 [5484]  AMT: Completed Launch Workflow successfully.
    2015-02-27 00:15:20 [5484]  AMT: Calling AUM API to create scheduler entry to be used by updater.
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [Updates] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:15:20 [5484]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2015-02-27 00:15:20 [5484]  AUMService: IsUpdaterEnabled call
    2015-02-27 00:15:20 [5484]  AUMService: IsUpdaterEnabled call succeeded
    2015-02-27 00:15:20 [5484]  AUMService: Get LEID xml call
    2015-02-27 00:15:20 [5484]  AUMService: Get LEID XML call succeeded
    2015-02-27 00:15:20 [5484]  AMT: AUM GetLEID called with status =0.
    2015-02-27 00:15:20 [5484]  AMT: Checking client features against cache.
    2015-02-27 00:15:20 [5484]  AMT: Feature Illustrator_Base 16.0 is licensed (was licensed).
    2015-02-27 00:15:20 [5484]  AMT: Feature Bridge_Base 4.0 is unlicensed (was unlicensed).
    2015-02-27 00:15:20 [5484]  AMT: Feature MobileCenter_Base 3.0 is unlicensed (was unlicensed).
    2015-02-27 00:15:20 [5484]  AMT: Validating client product info against cache.
    2015-02-27 00:15:20 [5484]  PCDService: No value for key [ExpirationDate] in hive [Illustrator-CS6-Win-GM] in master : 10
    2015-02-27 00:15:20 [5484]  AMT: Starting Data Collection for SWTag_Init()
    2015-02-27 00:15:20 [5484]  AMT: DoISOTagging() productCanonicalLEID = Illustrator-CS6-Win-GM;outMappedLEID =  DesignWebSuitePremium-CS6-Win-GM, unused = DesignWebSuitePremium-CS6-Win-GM
    2015-02-27 00:15:20 [5484]  AMT: DoISOTagging() productPayloadCode = {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582};driverPayloadCode =  {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2015-02-27 00:15:20 [5484]  AMT: SWTag_Init() Tags Arguments CS6 Design and Web Premium; DesignWebSuitePremium-CS6-Win-GM; en_US
    2015-02-27 00:15:20 [5484]  AMT: DoISOTagging() License Status = activated
    2015-02-27 00:15:20 [5484]  AMT: DoISOTagging() Tags 901487131560215850457198; 6.0; VOLUME
    2015-02-27 00:15:20 [5484]  AMT: DoISOTagging() Product Version 6; 0
    2015-02-27 00:15:20 [5484]  AMT: AMT: Product License PreValidated.
    2015-02-27 00:15:20 [5484]  AMT: Prevalidate indicates license is good and no UI required.
    2015-02-27 00:15:20 [5484]  performance: PreValidate thread took 1107.258911 ms
    2015-02-27 00:16:39 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:16:39 [5484]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:16:39 [5484]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master : 10
    2015-02-27 00:16:39 [5484]  PCDService: No value for key [Updates] in hive [{9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}] in master : 10
    2015-02-27 00:16:39 [5484]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2015-02-27 00:16:39 [5484]  AUMService: UpdaterNotificationsLaunchAAMNotifierOnQuitIfReqd call
    2015-02-27 00:16:39 [5484]  AUMService: UpdaterNotificationsLaunchAAMNotifierOnQuitIfReqd call succeeded
    2015-02-27 00:16:39 [5484]  AMT: AUM UpdaterNotificationsLaunchAAMNotifierOnQuitIfReqd called with status =0.
    2015-02-27 00:16:39 [5484]  ALMService: Terminating
    2015-02-27 00:16:39 [5484]  SLCoreService: Shutting down SLCore 2.0 Release (build 2.0.1.301001).
    2015-02-27 00:16:39 [5484]  SLCoreService: Service destruction took 9.4 ms and succeed.
    2015-02-27 00:16:39 [5484]  ALM: _info_: End ALM
    2015-02-27 00:16:39 [5484]  performance: AMTReleaseProductLicense took 10.994947 ms
    2015-02-27 00:16:39 [5484]  AMT: END SESSION.
    Obviously this stuff means absolutely nothing to me.  I only hope it means something to one of you so you can help me get this figured out.
    Thank you in advance.
    Kim

    Kim I reviewed the account you used to post to this forum and there is no registered software titles under the account.  My apologies but this is likely what is leading to the difficulty with the correct contact options being offered to you.
    I would recommend contacting our support team at Contact Customer Care.  This link should allow you to speak with a member of our support team without having a software titled registered.
    Alternately you can register your CS6 software title by following the steps listed in Find your serial number quickly.
    Finally if you continue to face difficulties contacting our support team then please verify the contact information located under your account at http://www.adobe.com/ and I can request a member of our support team contact you directly.  Once you have made this verification if you can either private message me or update this discussion I will submit the request.

  • Illustrator CS6 Crashes at launch OSX 10.7.4

    Have a user on OSX 10.7.4 with CS6 Design Std installed. Several other people on his team have the same version, only his machine will not launch Illustrator. The other applications launch fine.
    -Deleted preferences from /Users/User/Library/Preferences related to Illustrator
    -Deleted Illustrator items from /Users/User/Application Support
    -Uninstalled and reinstalled the whole suite, deleting preferences per the suite check box
    -Tried launching Illustrator prior to updating and after updating
    -Performed a reboot and tried launching CS6 with no other software running
    Still will not launch. Any ideas, please? He has CS5.5 and Illustrator launches fine there.
    Process:         Adobe Illustrator [4760]
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         682 (16.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [259]
    Date/Time:       2013-05-14 15:35:29.453 -0400
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          737666 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  5 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      0B55FD9F-43AB-4F11-B7B0-2F96F050F3C6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[4760]: garbage collection is OFF
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff89840ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff877ea7d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff877dba7a abort + 143
    3   libc++abi.dylib                         0x00007fff89a777bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff89a74fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff91c7f1cd _objc_terminate + 114
    6   libc++abi.dylib                         0x00007fff89a75001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff89a7505c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff89a761e9 __cxa_rethrow + 88
    9   com.adobe.illustrator                   0x000000010083d380 0x100000000 + 8639360
    10  com.adobe.illustrator                   0x00000001006fe7c4 0x100000000 + 7333828
    11  com.adobe.illustrator                   0x00000001006ef5cc 0x100000000 + 7271884
    12  com.adobe.illustrator                   0x00000001001635f8 0x100000000 + 1455608
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff898417e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff9215f78a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff9215e31a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff89841192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff877ea594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff877ebb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff89841192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff877ea594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff877ebb85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff89840bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff877ec274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore          0x00007fff88628a5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore          0x00007fff885baea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore          0x00007fff885ffe81 MPWaitOnQueue + 181
    5   com.adobe.ACE                           0x0000000103cb12c9 0x103c78000 + 234185
    6   com.adobe.ACE                           0x0000000103cb05da 0x103c78000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff88600ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff877e88bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff877ebb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbff8f8  rdx: 0x0000000000000000
      rdi: 0x0000000000004903  rsi: 0x0000000000000006  rbp: 0x00007fff5fbff920  rsp: 0x00007fff5fbff8f8
       r8: 0x00007fff76ec5fb8   r9: 0x00000000000002d4  r10: 0x00007fff89840d0a  r11: 0xffffff80002da8d0
      r12: 0x000000010d06d4a0  r13: 0x0000000000000000  r14: 0x00007fff76ec8960  r15: 0x00007fff5fbffa70
      rip: 0x00007fff89840ce2  rfl: 0x0000000000000246  cr2: 0x0000000101509020
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x10186cfe7 +com.adobe.illustrator (682 - 16.0.0) <8F6F07B7-9649-7267-D555-D35E1326F0C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101aae000 -        0x1026b4ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x102d39000 -        0x103a7eff7 +libicudata.40.0.dylib (40.0.0 - compatibility 40.0.0) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x103a91000 -        0x103afffef +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x103b53000 -        0x103b57ff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x103b5d000 -        0x103bbaff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.682) <013A7667-AC54-C394-36EC-DE3E058EBBB8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
           0x103be1000 -        0x103c46ff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.682) <4D4BAF9C-D816-167D-C653-3E61955725A9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
           0x103c74000 -        0x103c74ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.682) <6344CAA3-C943-9DF3-CCCB-AB443149DF6A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x103c78000 -        0x103df1fff +com.adobe.ACE (AdobeACE 2.19.18.19822 - 2.19.18.19822) <01A168B2-A4AA-71B3-D8F1-2F4A367485BB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x103e04000 -        0x10440cfff +com.adobe.AGM (AdobeAGM 4.26.20.19822 - 4.26.20.19822) <4AB2E56F-811A-C769-4F3C-CBE1530C8A56> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1044a8000 -        0x1044eaff7 +com.adobe.ARE (AdobeARE 1.5.02.19822 - 1.5.02.19822) <FB3356DF-DBCD-CE4C-DC16-63540BC96C5C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x1044f2000 -        0x1045ecfe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x104690000 -        0x1046affff +com.adobe.BIB (AdobeBIB 1.2.02.19822 - 1.2.02.19822) <7EC75BFC-1A1C-8FD3-56BB-D6B6EB5CA9A1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1046b6000 -        0x1046deff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4886F3FC-D31A-6149-1E03-EBA15E262086> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
           0x1046e5000 -        0x104a46fef +com.adobe.CoolType (AdobeCoolType 5.10.31.19822 - 5.10.31.19822) <14E82AD0-5994-21FA-D963-D3FB2A113349> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104a93000 -        0x104ed9ff7 +com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) <E63AFCA8-3E74-1745-8C74-8B0A78073BE5> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104f55000 -        0x106053fef +com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) <8029DA17-402C-301F-02E9-D0EC8DF48BE8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x106213000 -        0x106273ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10627d000 -        0x106335fe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x106368000 -        0x106412fe7 +libicucnv.40.0.dylib (40.0.0 - compatibility 40.0.0) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x106439000 -        0x106579fe7 +libicui18n.40.0.dylib (40.0.0 - compatibility 40.0.0) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x1065f8000 -        0x1066fafef +libicuuc.40.0.dylib (40.0.0 - compatibility 40.0.0) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x106742000 -        0x10688fff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x106903000 -        0x106b4cfe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x106bcf000 -        0x106bd6fef +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <E678CE59-3C6E-386B-92F1-48B49B1727E0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x106be0000 -        0x106c0cfff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x106c2f000 -        0x106cecfff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x106d36000 -        0x106dfbfff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x106e48000 -        0x107056fff +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x107098000 -        0x10786bff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x107923000 -        0x107a23ff7 +com.adobe.PDFPort (AdobePDFPort 2.1.0.19734 - 2.1.0.19734) <8C850D5F-FCF1-8620-6DAE-240667C80F9A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x107a37000 -        0x107a5cffe +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
           0x107a98000 -        0x107adefe7 +com.adobe.pip (??? - 6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x107aeb000 -        0x107b99fef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x107bd6000 -        0x107c92fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x107cb4000 -        0x107fcafff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x108096000 -        0x1080b0ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1080b9000 -        0x1080d2fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <0EDFCF84-BC82-4466-D878-69327B1722AF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x1080d9000 -        0x1081bdfe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1081ce000 -        0x1081d6fef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <C4819F09-AB6C-1282-F489-48671509CE71> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1081f0000 -        0x108209ff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <CD4FF487-E0AA-0D76-A87D-9252F242C314> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x10822b000 -        0x1082dffef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <FD24C4C8-AA95-3FB1-6350-639D50D7ACEF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10836b000 -        0x1083d8fef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <4BD779CA-98D8-9DC5-4B79-2E30E102EE31> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x1084db000 -        0x1084e8fff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <B0761444-05C8-F8AC-B3F3-CBA2C83129AC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1084fd000 -        0x1084ffff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <5A598FE6-82A6-D73A-B509-9A2902097AFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x108506000 -        0x108512fff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <92B1610F-451D-3684-8882-599DB6B00C23> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x108530000 -        0x10897aff7 +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <3921F600-9022-192D-BC1B-D5D2A3A96CBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x108fd5000 -        0x1090c0fe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <E9ECB4F4-B4C8-8D8F-1362-255FC8986938> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x10916c000 -        0x109360fff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <E0CC2892-B8B1-7439-494E-0FFB4D07E7F9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x109528000 -        0x109a48fff +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <86B829A9-FF1A-DEDA-26F7-D3BA4EF7AF35> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x109f56000 -        0x10a023ff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <92204BF4-539F-C35E-8F5C-DA4AD4B48568> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x10a117000 -        0x10a203ff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <D136ACCA-E1C5-6D39-16DE-411471D06AED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x10a34d000 -        0x10a3cbfff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x10a3dc000 -        0x10a408ff7 +libtbb.dylib (??? - ???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x10a421000 -        0x10a42fff3 +libtbbmalloc.dylib (??? - ???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10a445000 -        0x10a72eff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10a848000 -        0x10a87bff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10a893000 -        0x10a8fcfff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10a93b000 -        0x10a94bff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10a953000 -        0x10a9a5ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10a9b4000 -        0x10a9bafff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
           0x10a9c0000 -        0x10a9ffff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
           0x10aa07000 -        0x10aa09fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
           0x10aa0e000 -        0x10aa11fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
           0x10aa16000 -        0x10aa43ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10aa4f000 -        0x10aa55fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10aa5c000 -        0x10aa5cfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
           0x10aa5f000 -        0x10aa68fff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <841D0780-EF72-47D9-1D87-73F4528EB337> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x10aa76000 -        0x10aa7aff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
           0x10aab1000 -        0x10aab3fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
        0x7fff6a246000 -     0x7fff6a27abaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff86e05000 -     0x7fff86e0cff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff86e0d000 -     0x7fff86facff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87029000 -     0x7fff8702dfff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8702e000 -     0x7fff8704bff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff87381000 -     0x7fff873e9ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff873ea000 -     0x7fff87716ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff87717000 -     0x7fff8771cfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff87739000 -     0x7fff87799fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8779a000 -     0x7fff87877fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff878cc000 -     0x7fff87924fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff8794e000 -     0x7fff87953fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff87c83000 -     0x7fff87cd7ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff87d02000 -     0x7fff87d03ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff87d1f000 -     0x7fff87d8aff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87d93000 -     0x7fff87d94ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff87d95000 -     0x7fff87d96fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff87fac000 -     0x7fff87fdcff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff87fdd000 -     0x7fff87fe3fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88018000 -     0x7fff88093ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff8813e000 -     0x7fff88144ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff88145000 -     0x7fff88572fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff88573000 -     0x7fff88576fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff88577000 -     0x7fff88893fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff888b1000 -     0x7fff88e95fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff88ea2000 -     0x7fff88ef6fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88f44000 -     0x7fff88f44fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88f45000 -     0x7fff8905efff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8905f000 -     0x7fff8906aff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff8906b000 -     0x7fff89110fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff891b9000 -     0x7fff891c1fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff895f9000 -     0x7fff895f9fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff896f8000 -     0x7fff897d7ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff897d8000 -     0x7fff897e6ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff89824000 -     0x7fff89829fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8982a000 -     0x7fff8984afff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8984b000 -     0x7fff8986bfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff89a6f000 -     0x7fff89a7aff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff89a7b000 -     0x7fff89a7efff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff89af3000 -     0x7fff89b05ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff89b06000 -     0x7fff89b06fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8a29c000 -     0x7fff8a2b0ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff8a2b1000 -     0x7fff8a2f1ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8a303000 -     0x7fff8a32eff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff8a32f000 -     0x7fff8a3d1fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8a3da000 -     0x7fff8a415fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8a416000 -     0x7fff8a432ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff8a433000 -     0x7fff8a540fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
        0x7fff8a541000 -     0x7fff8a58dff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8a58e000 -     0x7fff8a591ff7  com.apple.securityhi (4.0 - 1) <37DF1BF8-ACE0-3C4A-81AA-BBA9744EB0A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff8a592000 -     0x7fff8a592fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8b4c0000 -     0x7fff8b4c9ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b4ca000 -     0x7fff8b54eff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff8b54f000 -     0x7fff8b550fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8b663000 -     0x7fff8b76ffff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8bf39000 -     0x7fff8c163fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c678000 -     0x7fff8c6eefff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff8c73f000 -     0x7fff8c751ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8cafc000 -     0x7fff8cb19fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8cc41000 -     0x7fff8cc45ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff8cc88000 -     0x7fff8ccd6fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8cd63000 -     0x7fff8cd68ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8cd98000 -     0x7fff8cdc3ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
        0x7fff8cdc4000 -     0x7fff8cdc6fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff8cdc7000 -     0x7fff8ce37fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8ce66000 -     0x7fff8cedcfff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff8cf34000 -     0x7fff8cf58fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8cf59000 -     0x7fff8cf6efff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff8d3a5000 -     0x7fff8d3dffe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff8d3e0000 -     0x7fff8d3f7fff  com.apple.CFOpenDirectory (10.7 - 146) <E6D4F114-678B-3957-9C59-9206ECDA756E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff8d42c000 -     0x7fff8d431fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d4da000 -     0x7fff8de77c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8de78000 -     0x7fff8de86fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8de87000 -     0x7fff8e089fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8e08a000 -     0x7fff8e08afff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8e0d2000 -     0x7fff8e3ebfff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8e3ee000 -     0x7fff8e450ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff8e490000 -     0x7fff8e5e9fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8e6a4000 -     0x7fff8e6abfff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e73f000 -     0x7fff8e745fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e776000 -     0x7fff8e777ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e7d3000 -     0x7fff8e7d4fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8e7d5000 -     0x7fff8e8dafff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8e8db000 -     0x7fff8e8eeff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8e943000 -     0x7fff8ee0afff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
        0x7fff8f1d2000 -     0x7fff8f1d4ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff8f1d5000 -     0x7fff8f216fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff8f217000 -     0x7fff8f226ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8f310000 -     0x7fff8f310fff  com.apple.Carbon (153 - 153) <AF0F9910-E3C3-3922-AA92-A39000655E0F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f311000 -     0x7fff8f31eff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff8f31f000 -     0x7fff8f4f3ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f4f4000 -     0x7fff8f513fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8f514000 -     0x7fff8f787fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff90994000 -     0x7fff90a07fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff90a4f000 -     0x7fff90a5afff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90a63000 -     0x7fff90a63fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff90b5d000 -     0x7fff90b85fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff9111e000 -     0x7fff9117bff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff9117e000 -     0x7fff9117efff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff91493000 -     0x7fff914b9fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff91c68000 -     0x7fff91d4ce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff91e75000 -     0x7fff91ef8fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff9215a000 -     0x7fff9215bfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff9215c000 -     0x7fff9216afff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff921ce000 -     0x7fff921d4fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff92263000 -     0x7fff9226dff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff92270000 -     0x7fff92311ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff92312000 -     0x7fff92448fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff92449000 -     0x7fff925b0fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff92905000 -     0x7fff9299fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff929a0000 -     0x7fff929fcff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff929fd000 -     0x7fff92ac4ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff92ac5000 -     0x7fff92b78ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff92b79000 -     0x7fff92c7bfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff92c7c000 -     0x7fff92d01ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff92d02000 -     0x7fff92d07fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff92d08000 -     0x7fff92d1eff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff92d49000 -     0x7fff92d5ffff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff92d60000 -     0x7fff92d67fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff93186000 -     0x7fff9318afff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff93197000 -     0x7fff9327bfff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff9327c000 -     0x7fff93371fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff93424000 -     0x7fff9344dfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff9344e000 -     0x7fff93490ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff93491000 -     0x7fff934a8fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff936f8000 -     0x7fff93725fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff93726000 -     0x7fff9374ffff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93750000 -     0x7fff93774fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff93775000 -     0x7fff9380bff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff9380c000 -     0x7fff9380efff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff9380f000 -     0x7fff93916fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff93dac000 -     0x7fff93debfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff93e54000 -     0x7fff93e54fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 806
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=285.1M resident=169.5M(59%) swapped_out_or_unallocated=115.6M(41%)
    Writable regions: Total=63.7M written=5868K(9%) resident=9780K(15%) swapped_out=0K(0%) unallocated=54.1M(85%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    128K
    CoreServices                       3192K
    MALLOC                             44.4M
    MALLOC guard page                    32K
    Memory tag=242                       12K
    Memory tag=243                        4K
    STACK GUARD                        56.0M
    Stack                              13.1M
    VM_ALLOCATE                         988K
    __CI_BITMAP                          80K
    __DATA                             19.9M
    __IMAGE                             528K
    __LINKEDIT                         76.5M
    __TEXT                            208.6M
    __UNICODE                           544K
    mapped file                        16.3M
    shared memory                       312K
    ===========                      =======
    TOTAL                             440.5M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620

    Nothing to see here, unfortunately. The app doesn't even make a sneeze and crashes right away at the mere attempt of being initialized. All memory offsets are zeroed and the system is killing the thread at the first resource request. This usually points to systemic issues like an update missing or the boot ROM requiring an update to properly deal with certain processor routines.
    Mylenium

  • How can I print mulitple different .ai files onto one page in Illustrator CS6?

    How can I print mulitple different .ai files onto one page in Illustrator CS6? I have all of the files organized by Arrange Documents>Tile All in Grid and I would like to print the files in this format so that they can all be seen at once when printed out onto one page.
    Some background is that I have 16 different cad drawings that I have converted and edited in illustrator. I'd like to basically make a contact sheet with all 16 drawings so that they can be reviewed on one sheet of paper after printing. But each drawing is in it's own unique file, and I have not figured out how to put them all onto one page for printing.

    You can place them (linked) into a new Illustrator file and print from there.
    The original files will need pdf compatability.

  • Why can't I find certain Pantone plus colors in Illustrator CS6 color books?

    Why can't I find certain Pantone plus colors in Illustrator CS6 color books? For example I want to use PMS 2296C, but it is not coming up in the color swatch book in Illustrator.

    Thanks!
    I actually just came across the same thing in the meantime.
    And it worked!
    If you bought the physical Pantone books, there is a registration/serial number on the back. You can go to Pantone and register it (https://www.pantone.com/pages/MYP_myPantone/mypProductRegistration.aspx)
    Then you're able to download the Pantone manager.
    There are infact 336 new colors added to the Pantone Plus series. And this is where you need to get them. Once you have them, in Pantone color manager, you go to: File/Export/Adobe Illustrator/sRB. Then restart Illustrator.
    Once you go back in, the new 336 colors are available!

  • Illustrator cs6 won't launch on a new MacBook Pro

    I have the DVD to load the Adobe CS6 onto a MacBook Pro. Illustrator won't launch. All the other CS6 applications open fine. I updated everything through Adobe and Illustrator still doesn't launch. I also updated the Java to the latest version (7). This is what comes up after the launch of Illustrator fails.
    Process:    
    Adobe Illustrator [10365]
    Path:       
    /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier: 
    com.adobe.illustrator
    Version:    
    691 (16.0.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [150]
    Responsible:
    Adobe Illustrator [10365]
    User ID:    
    502
    Date/Time:  
    2014-02-16 12:48:04.729 -0800
    OS Version: 
    Mac OS X 10.9.1 (13B3116)
    Report Version:  11
    Anonymous UUID:  A807EB09-3877-1DBF-F561-CE2F99CD7C1A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type dvacore::filesupport::dir_create_exception: $$$/dvacore/filesupport/DirCreate=The directory '@0' could not be created. Please check the parent directory protection or permission rights.
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8cf1f866 __pthread_kill + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef035c pthread_kill + 92
    2   libsystem_c.dylib        
    0x00007fff87593bba abort + 125
    3   libc++abi.dylib          
    0x00007fff8a7c5141 abort_message + 257
    4   libc++abi.dylib          
    0x00007fff8a7eaaa4 default_terminate_handler() + 240
    5   libobjc.A.dylib          
    0x00007fff8794a322 _objc_terminate() + 124
    6   libc++abi.dylib          
    0x00007fff8a7e83e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib          
    0x00007fff8a7e808b __cxa_rethrow + 109
    8   com.adobe.illustrator    
    0x0000000100848b70 0x100000000 + 8686448
    9   com.adobe.illustrator    
    0x0000000100704284 0x100000000 + 7357060
    10  com.adobe.illustrator    
    0x00000001006f4cfc 0x100000000 + 7294204
    11  com.adobe.illustrator    
    0x0000000100163528 0x100000000 + 1455400
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8cf20662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff8721743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff87217152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff87ef3fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff87ef3fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff87ef3fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff87ef3fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef1c3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore
    0x00007fff811a6a50 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore
    0x00007fff811a6c4f TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8117738d MPWaitOnQueue + 192
    5   com.adobe.ACE            
    0x0000000102a2e2c9 0x1029f5000 + 234185
    6   com.adobe.ACE            
    0x0000000102a2d5da 0x1029f5000 + 230874
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8117790b PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib  
    0x00007fff87eef899 _pthread_body + 138
    9   libsystem_pthread.dylib  
    0x00007fff87eef72a _pthread_start + 137
    10  libsystem_pthread.dylib  
    0x00007fff87ef3fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef1c3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore
    0x00007fff811a6a50 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore
    0x00007fff811a6c4f TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8117738d MPWaitOnQueue + 192
    5   com.adobe.ACE            
    0x0000000102a2e2c9 0x1029f5000 + 234185
    6   com.adobe.ACE            
    0x0000000102a2d5da 0x1029f5000 + 230874
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8117790b PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib  
    0x00007fff87eef899 _pthread_body + 138
    9   libsystem_pthread.dylib  
    0x00007fff87eef72a _pthread_start + 137
    10  libsystem_pthread.dylib  
    0x00007fff87ef3fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff8cf1f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff87ef1c3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore
    0x00007fff811a6a50 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore
    0x00007fff811a6c4f TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8117738d MPWaitOnQueue + 192
    5   com.adobe.ACE            
    0x0000000102a2e2c9 0x1029f5000 + 234185
    6   com.adobe.ACE            
    0x0000000102a2d5da 0x1029f5000 + 230874
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8117790b PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib  
    0x00007fff87eef899 _pthread_body + 138
    9   libsystem_pthread.dylib  
    0x00007fff87eef72a _pthread_start + 137
    10  libsystem_pthread.dylib  
    0x00007fff87ef3fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7225a310  rcx: 0x00007fff5fbff518  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5fbff540  rsp: 0x00007fff5fbff518
       r8: 0x0000000000000000   r9: 0x00007fff875bb900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbff6a0  r13: 0x0000000000000000  r14: 0x0000000000000006  r15: 0x00007fff5fbff580
      rip: 0x00007fff8cf1f866  rfl: 0x0000000000000206  cr2: 0x0000000108027f50
    Logical CPU:
    0
    Error Code: 
    0x02000148
    Trap Number:
    133
    Binary Images:
    0x100000000 -   
    0x101876fef +com.adobe.illustrator (691 - 16.0.4) <69AF39E9-A928-8769-94DE-AC579EB0FD84> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x101ab9000 -   
    0x1027feff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x102811000 -   
    0x10287ffef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1028d3000 -   
    0x1028d5fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
    0x1028da000 -   
    0x102937ff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.690) <577BD19B-B362-35B4-6020-2F038DEA5877> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
    0x10295e000 -   
    0x1029c3ff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.690) <0298BED7-3107-5330-292B-D7BAA1326B8E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
    0x1029f1000 -   
    0x1029f1ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.690) <5DB43D6A-1CA5-CD74-C2B9-5B02AAC809FD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x1029f5000 -   
    0x102b6efff +com.adobe.ACE (AdobeACE 2.19.18.20990 - 2.19.18.20990) <48C7C467-93A7-F609-1083-D0DD3C0B8988> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x102b81000 -   
    0x103189fff +com.adobe.AGM (AdobeAGM 4.26.20.20990 - 4.26.20.20990) <8F9BD5CF-287E-9EF1-926D-728359878CAC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x103225000 -   
    0x103267ff7 +com.adobe.ARE (AdobeARE 1.5.02.20990 - 1.5.02.20990) <2FF36232-F715-2228-ACC0-BABFC0D6F779> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x10326f000 -   
    0x103369fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x10340d000 -   
    0x10342cfff +com.adobe.BIB (AdobeBIB 1.2.02.20990 - 1.2.02.20990) <84AEC009-ED37-875D-BA3B-19FF2A53F9EF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x103433000 -   
    0x10345bff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4D9551F1-B07C-3BAF-0CED-1F83C866BCAA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
    0x103462000 -   
    0x1037c6ff7 +com.adobe.CoolType (AdobeCoolType 5.10.34.20990 - 5.10.34.20990) <3D5F8577-39F8-D1D0-81FE-6DC4203A9719> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x103812000 -   
    0x103c58fff +com.adobe.MPS (AdobeMPS 5.8.0.24821 - 5.8.0.24821) <E8E87710-F66B-32B5-97C6-A35D20867697> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103cd5000 -   
    0x104dd3fef +com.adobe.psl (AdobePSL 13.0.0.21041 - 13.0.0.21041) <910C283A-607C-F863-97EF-07FB2EEB38AD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x104f94000 -   
    0x104ff4ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x104ffe000 -   
    0x1050b6fe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x1050e9000 -   
    0x105193fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
    0x1051ba000 -   
    0x1052fafe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
    0x105379000 -   
    0x10547bfef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x1054c3000 -   
    0x105610ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x105684000 -   
    0x1058cdfe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x105950000 -   
    0x105957fff +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <E1A491B4-8427-45ED-D312-5BC6E1ABF0A1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
    0x105961000 -   
    0x10598dfff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
    0x1059b0000 -   
    0x105a6dfff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
    0x105ab7000 -   
    0x105b7cfff +com.adobe.JP2K (2.0.0 - 2.0.0.25990) <1D61D0B2-F263-72E6-C2BB-C8BA6EBB9BAD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105bcb000 -   
    0x105d94fff +com.adobe.owl (AdobeOwl version 5.0.3 - 5.0.3) <1DEEBFAD-1C6D-303B-9F68-B39677534527> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x105dd6000 -   
    0x1065a9ff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x106661000 -   
    0x106762fff +com.adobe.PDFPort (AdobePDFPort 2.1.0.20993 - 2.1.0.20993) <4356804E-2D42-1280-DC3B-66448D57F05A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x106776000 -   
    0x10679bffe +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
    0x1067d7000 -   
    0x10681dfe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x10682a000 -   
    0x1068d8fef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x106915000 -   
    0x1069d1fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x1069f3000 -   
    0x106d09fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x106dd5000 -   
    0x106defff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x106df8000 -   
    0x106e11fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <0EDFCF84-BC82-4466-D878-69327B1722AF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x106e18000 -   
    0x106efcfe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x106f0d000 -   
    0x106f15fef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <FEC30D42-7E6D-67F6-DE45-DF25D16AAFF5> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x106f2f000 -   
    0x106f48ff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <761BECE6-A9F6-0D48-44A1-677A44601F39> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
    0x106f6a000 -   
    0x10701efef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <5315481A-D3FC-D8F9-137D-CADBE984299D> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x1070aa000 -   
    0x107117fef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <A7509FBF-0BAB-C773-DE5D-E1CA3AD31628> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
    0x10721a000 -   
    0x107227fff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <9FAA55B3-B272-F747-270F-21D786E209E7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x10723c000 -   
    0x10723eff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <DD51C1B2-7FC1-81C1-1D88-FA3D12F01560> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x107245000 -   
    0x107251fff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <8E8AD219-4C88-3140-D002-F07B74E15C43> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x10726f000 -   
    0x1076bafef +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <993E4D4C-BEB3-A6F7-64E2-A4D742E147E6> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x107d15000 -   
    0x107e02fe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <AE668FE9-2D17-2DB6-34BF-2111565B7A6B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x107eae000 -   
    0x1080a2fff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <76DA097D-FDE2-D4D9-7C7A-C4FF86F0A2CC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x10826a000 -   
    0x10878dfef +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <39B9DD96-CD3A-38AF-395B-E54C4ED8C620> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x108ca0000 -   
    0x108d6dff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <0B5A7058-98EC-B242-BD62-03ED6DD6C1F2> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
    0x108e61000 -   
    0x108f4dff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <7B65DA8D-501B-F242-C2E1-71F4C4EA3F20> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
    0x109097000 -   
    0x109115fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x109126000 -   
    0x109152ff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
    0x10916b000 -   
    0x109179ff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
    0x10918f000 -   
    0x109193fff  com.apple.agl (3.2.3 - AGL-3.2.3) <E0ED4789-9DBC-3C88-95F7-CA79E196B4BE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x10919a000 -   
    0x1091a3fff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <7941B717-142A-AC01-5E6E-87521BCFA6AA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
    0x1091b1000 -   
    0x1091b5ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
    0x109430000 -   
    0x109432ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7fff69640000 -
    0x7fff69673817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    0x7fff809dd000 -
    0x7fff80b4bff7  libBLAS.dylib (1094.5) <D862E2B7-91FA-3704-8F62-C1B65D381A84> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x7fff80b4c000 -
    0x7fff80b51fff  com.apple.DiskArbitration (2.6 - 2.6) <AE84088D-C061-304C-B205-C9F56ECD23C7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff80b52000 -
    0x7fff80b52fff  com.apple.ApplicationServices (48 - 48) <F250170A-8805-3731-9097-78CAD04481F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff80b53000 -
    0x7fff80c83ff7  com.apple.desktopservices (1.8 - 1.8) <B152EE07-235A-3997-ACC5-C31519C76F44> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x7fff80c84000 -
    0x7fff80cd2ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
    0x7fff80ec5000 -
    0x7fff81061ff7  com.apple.QuartzCore (1.8 - 332.0) <3EA81377-BA5F-39EA-8BAB-24CC5480E322> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81062000 -
    0x7fff8106afff  libsystem_dnssd.dylib (522.1.11) <AEA21060-EFAA-3C63-8D53-CB22EE8B507C> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8106b000 -
    0x7fff81090ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B49408CD-ECE8-3785-84A4-45B03882574A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff810ce000 -
    0x7fff810defff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff810f8000 -
    0x7fff810fcfff  libpam.2.dylib (20) <A63D4DA2-06A4-3FB8-AC3F-BDD69694EE5E> /usr/lib/libpam.2.dylib
    0x7fff810fd000 -
    0x7fff813e7fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x7fff813e8000 -
    0x7fff813e9fff  libunc.dylib (28) <C3737C9A-C06F-310C-B78C-7D8D882A35DE> /usr/lib/system/libunc.dylib
    0x7fff813ed000 -
    0x7fff81408ff7  libsystem_malloc.dylib (23.1.10) <F1AA887E-FC96-3F40-A4BA-9E16C1865821> /usr/lib/system/libsystem_malloc.dylib
    0x7fff81493000 -
    0x7fff81761ff4  com.apple.CoreImage (9.0.54) <4D5D752E-A762-3EE5-9511-B956D0C945A2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x7fff817eb000 -
    0x7fff818aeff7  com.apple.backup.framework (1.5.1 - 1.5.1) <A24B44C8-0E36-33A6-8F68-681E0AE7DC8A> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff818bd000 -
    0x7fff818c4fff  com.apple.NetFS (6.0 - 4.0) <D4FE0F16-3085-34AF-B860-3D46B98FAD2A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff82bbf000 -
    0x7fff82bdaff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff82c8a000 -
    0x7fff82c97ff4  com.apple.Librarian (1.2 - 1) <2F677B44-BCA3-313B-881E-EE322E865100> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff82c98000 -
    0x7fff82f6cfc7  com.apple.vImage (7.0 - 7.0) <1DDB8AB7-03D5-3D20-9D77-C69074C6FD26> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x7fff82f7f000 -
    0x7fff82fe2ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff82fe3000 -
    0x7fff83030ff2  com.apple.print.framework.PrintCore (9.0 - 428) <A2F7B9D2-7907-31D8-8462-E2E2E7C3AF2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x7fff8308b000 -
    0x7fff83090fff  libmacho.dylib (845) <B2BE3C25-CF1F-309B-AB99-1F0B54621445> /usr/lib/system/libmacho.dylib
    0x7fff83091000 -
    0x7fff83092fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff830f1000 -
    0x7fff8310cff7  libPng.dylib (1038) <08A42D4F-0320-3481-BD85-AFD95554F9DD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8320d000 -
    0x7fff83252ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x7fff83253000 -
    0x7fff83257ff7  libGIF.dylib (1038) <F0B66751-0D4A-33B7-91C9-51B937B4D6D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff836f8000 -
    0x7fff83705ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff83771000 -
    0x7fff83956ff7  com.apple.CoreFoundation (6.9 - 855.11) <DE55D963-05E1-3E4E-AFFC-B0784891016C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff83998000 -
    0x7fff839b0ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff841d3000 -
    0x7fff842b7fff  com.apple.coreui (2.1 - 231) <A7942BEE-E6BA-3A68-8EA0-57A8A9066B2D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff842cb000 -
    0x7fff842cbfff  com.apple.Cocoa (6.8 - 20) <1482E95B-0C26-38AF-9A44-50ADE6C0876C> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff844ee000 -
    0x7fff84516ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff84517000 -
    0x7fff8454fff7  com.apple.RemoteViewServices (2.0 - 94) <B17FAA76-61DB-33D0-90B7-4117A72A2B28> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x7fff84745000 -
    0x7fff847b8ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff847b9000 -
    0x7fff847c1ffc  libGFXShared.dylib (9.3.1) <1503C66D-9CE6-36C5-8669-2534776F371F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff847c2000 -
    0x7fff847c5fff  com.apple.TCC (1.0 - 1) <F25B5875-081A-3877-B70E-374D54B54C5F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff84810000 -
    0x7fff84851fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x7fff84852000 -
    0x7fff84858ff7  libsystem_platform.dylib (24.1.4) <8ABC4EBE-10D6-35B8-ADEE-63600E87601C> /usr/lib/system/libsystem_platform.dylib
    0x7fff84859000 -
    0x7fff84909ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x7fff8505a000 -
    0x7fff8505bfff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff8506f000 -
    0x7fff85073fff  libsystem_stats.dylib (93.50.1) <EBC4B8DB-7C2B-35DE-B865-34FE11AF3B1B> /usr/lib/system/libsystem_stats.dylib
    0x7fff85074000 -
    0x7fff8515bff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff851bb000 -
    0x7fff851c7ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff857d6000 -
    0x7fff857d9fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff85845000 -
    0x7fff859b5ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff859c3000 -
    0x7fff859caff7  liblaunch.dylib (842.1.4) <50B742D9-0C5C-3ABA-8EBF-3D447630932F> /usr/lib/system/liblaunch.dylib
    0x7fff859cb000 -
    0x7fff859cefff  com.apple.help (1.3.3 - 46) <6D71C959-D421-372B-A160-5317B4921F4D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x7fff85a8a000 -
    0x7fff85a8afff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x7fff85a8b000 -
    0x7fff85a96ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff85b68000 -
    0x7fff85bbbfff  com.apple.ScalableUserInterface (1.0 - 1) <19D73C6D-CA0A-3230-9644-7F01364137ED> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x7fff8620a000 -
    0x7fff8626eff9  com.apple.Heimdal (4.0 - 2.0) <5113294E-B07E-3E42-8CE1-5E4AD4120C92> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8626f000 -
    0x7fff8629efff  com.apple.DebugSymbols (106 - 106) <9F66640E-277C-317E-A01E-A1E5B13E2592> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff8629f000 -
    0x7fff86368fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7fff86369000 -
    0x7fff8637aff7  libz.1.dylib (53) <4C5FA1A5-4471-398E-9543-2E54D46E63E9> /usr/lib/libz.1.dylib
    0x7fff863d1000 -
    0x7fff8641ffff  com.apple.opencl (2.3.58 - 2.3.58) <D557EA35-12EA-304F-9B88-AEACA827A201> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff86420000 -
    0x7fff86444fff  libxpc.dylib (300.1.17) <1BB4598D-19ED-3A31-AFD2-C90DD2652CFD> /usr/lib/system/libxpc.dylib
    0x7fff86445000 -
    0x7fff864d4fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x7fff869fe000 -
    0x7fff86a4fff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <EAC1821B-CD20-30E3-BF95-C1839CA97BF7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff86bb7000 -
    0x7fff86bc4ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff86cfc000 -
    0x7fff86cfefff  libRadiance.dylib (1038) <144F03D8-FA55-38A3-8A2D-4B4ABDB78B28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff86cff000 -
    0x7fff86d00ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff86d01000 -
    0x7fff86d0afff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x7fff86d58000 -
    0x7fff86de4ff7  com.apple.ink.framework (10.9 - 207) <96A56EAC-B4AC-3C9A-8C40-64E6196753CC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x7fff86eb7000 -
    0x7fff86ec9fff  com.apple.ImageCapture (9.0 - 9.0) <D9269440-8E56-3C03-88F5-F8AD662D17DB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff86eca000 -
    0x7fff86f03ff7  com.apple.QD (3.50 - 298) <5343278D-47B7-3AF2-9B4B-4B8B0F942CD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x7fff87045000 -
    0x7fff87047ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x7fff87048000 -
    0x7fff87086ff7  libGLImage.dylib (9.3.1) <B256429B-16DA-380C-907C-FDEA06DE8BA8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff87087000 -
    0x7fff87087fff  com.apple.CoreServices (59 - 59) <67A369BA-2326-383F-995B-853DAD7BFF43> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff87088000 -
    0x7fff87093fff  libGL.dylib (9.3.1) <D643A325-3257-373A-A8C1-035E9F0484B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8709e000 -
    0x7fff870cafff  com.apple.CoreServicesInternal (184.8 - 184.8) <651F4E1B-339B-3ED6-8F38-B03D0D2E5D04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x7fff871ab000 -
    0x7fff871b8fff  com.apple.Sharing (132.2 - 132.2) <3DFB1133-8FD3-3B60-8E9C-0FE62AACFD7B> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff871e7000 -
    0x7fff87210fff  com.apple.DictionaryServices (1.2 - 208) <A4E4EA9E-08A1-3F77-8B57-A5A1ADD70B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7fff87214000 -
    0x7fff8722efff  libdispatch.dylib (339.1.9) <D133504D-CD45-33B1-A331-AAE02D9C0CB2> /usr/lib/system/libdispatch.dylib
    0x7fff87259000 -
    0x7fff87338fff  libcrypto.0.9.8.dylib (50) <09DCEDDF-2892-32B8-B689-CBE31A549F2B> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff87339000 -
    0x7fff87392fff  libTIFF.dylib (1038) <965DD031-9246-3588-AC53-D284174F77FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff873ab000 -
    0x7fff874b0fff  com.apple.ImageIO.framework (3.3.0 - 1038) <355B8338-9DD8-3E2E-8758-E1C852403DEF> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff874b1000 -
    0x7fff874caff7  com.apple.Kerberos (3.0 - 1) <59427E11-37D6-34C9-95BB-D4438BFACA5B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87537000 -
    0x7fff875c0ff7  libsystem_c.dylib (997.1.1) <01F576D9-9718-3D99-A8EA-ACFD6CBBB51E> /usr/lib/system/libsystem_c.dylib
    0x7fff87628000 -
    0x7fff8764fff7  libsystem_network.dylib (241.3) <A499D688-9165-3776-8C8E-C018897B5B13> /usr/lib/system/libsystem_network.dylib
    0x7fff87650000 -
    0x7fff87654ff7  libcache.dylib (62) <8C1EFC4F-3F51-3DE9-A973-360B461F3D65> /usr/lib/system/libcache.dylib
    0x7fff87655000 -
    0x7fff87685fff  com.apple.IconServices (25 - 25.17) <36811973-8777-3211-863A-76B2C20B0ED0> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff876e0000 -
    0x7fff876f7fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7fff87746000 -
    0x7fff87750ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9556885C-22DD-3392-ACCB-2B413434D8D3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff877a8000 -
    0x7fff877acfff  com.apple.CommonPanels (1.2.6 - 96) <5744A1F1-1FA5-35DD-B924-F8983E81FC76> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff877ad000 -
    0x7fff87824fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <80E7B419-A0D5-373B-B2B5-88E6A8CD3AE6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x7fff87825000 -
    0x7fff87913fff  libJP2.dylib (1038) <1DC18933-53D6-335A-AA84-0366C9ACDFD8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff87914000 -
    0x7fff8793bffb  libsystem_info.dylib (449.1.3) <395D8CD6-616A-3BD3-A195-C6D68EB9AB22> /usr/lib/system/libsystem_info.dylib
    0x7fff8793c000 -
    0x7fff87ae9f27  libobjc.A.dylib (551.1) <F21C5742-7B9C-31F1-BBAE-1717BC6C2F1B> /usr/lib/libobjc.A.dylib
    0x7fff87b68000 -
    0x7fff87be8fff  com.apple.CoreSymbolication (3.0 - 141) <37087FDB-874D-3FE2-9874-B047CC9BE910> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x7fff87bec000 -
    0x7fff87bedffb  libremovefile.dylib (33) <26266E3F-FDDC-3CFC-B27F-78B49BDC9BDC> /usr/lib/system/libremovefile.dylib
    0x7fff87bee000 -
    0x7fff87eedfff  com.apple.Foundation (6.9 - 1056) <C59C6204-7259-3541-A131-A21DB3253373> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff87eee000 -
    0x7fff87ef5ff7  libsystem_pthread.dylib (53.1.4) <9DA50FD0-D9AC-3051-AD4B-BA0D745BC49C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8814b000 -
    0x7fff8814bfff  com.apple.Carbon (154 - 157) <14069023-0BBB-3925-9BA9-EB2C9E9B8C75> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8814c000 -
    0x7fff8814cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff88690000 -
    0x7fff8869cff3  com.apple.AppleFSCompression (56 - 1.0) <1EBCFC91-734D-338B-8796-4B93BDC53014> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x7fff8869d000 -
    0x7fff886a6ff3  libsystem_notify.dylib (121) <31F9FEF5-2897-328A-8441-B7BDFEDB10D4> /usr/lib/system/libsystem_notify.dylib
    0x7fff886a7000 -
    0x7fff886ffff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff88b93000 -
    0x7fff894af1bf  com.apple.CoreGraphics (1.600.0 - 599.7) <013A0B45-B8A4-3159-83C3-5A36CDB4F2C7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff894b7000 -
    0x7fff894d3fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff894d4000 -
    0x7fff898b5ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x7fff898b6000 -
    0x7fff898b6ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <E80678A4-32A1-3654-8040-88D434E36F01> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff898ec000 -
    0x7fff898f1ff7  libunwind.dylib (35.3) <95D4D118-3368-3474-989D-271DE18C8365> /usr/lib/system/libunwind.dylib
    0x7fff898f7000 -
    0x7fff898f9ff7  libquarantine.dylib (71) <973BE51D-6465-392F-9099-D4AB21BF0D25> /usr/lib/system/libquarantine.dylib
    0x7fff89d3e000 -
    0x7fff89da2ff3  com.apple.datadetectorscore (5.0 - 354.0) <25525311-E3A2-3D06-9010-DDB12A936E88> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x7fff89db0000 -
    0x7fff89dd5ff7  com.apple.CoreVideo (1.8 - 117.2) <FE12553A-9B5A-337E-92BD-EA8A8194C91A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff89dd6000 -
    0x7fff89dd7ff7  libSystem.B.dylib (1197.1.1) <A75BB8CD-CE51-3DF7-BCF4-8BDE25FA7F0C> /usr/lib/libSystem.B.dylib
    0x7fff89dd8000 -
    0x7fff89de0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <A816D8B1-6B7B-3E5B-9FAE-CBDA70192E7E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x7fff8a6e2000 -
    0x7fff8a7adfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x7fff8a7c4000 -
    0x7fff8a7edff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
    0x7fff8a839000 -
    0x7fff8b3adff7  com.apple.AppKit (6.9 - 1265) <70472D45-5B9E-36BE-8EA3-007E69AC2169> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8b503000 -
    0x7fff8b50dfff  libcommonCrypto.dylib (60049) <79B8E80F-E596-3302-8243-EC479B9546CA> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8b50e000 -
    0x7fff8b53dff5  com.apple.GSS (4.0 - 2.0) <0284500B-47BA-3FE8-A5B4-22A0E8D80783> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8b559000 -
    0x7fff8b572ff7  com.apple.Ubiquity (1.3 - 289) <664F5B33-708D-33E9-81E1-C45CBE9AAB6E> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8b623000 -
    0x7fff8b67effb  com.apple.AE (665.5 - 665.5) <3558CC9A-FD30-3DAD-AB40-FE6828E76FE1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff8b711000 -
    0x7fff8b77efff  com.apple.SearchKit (1.4.0 - 1.4.0) <33298263-5B12-340D-BB9D-D52303849561> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff8b8bb000 -
    0x7fff8b8ccff7  libsystem_asl.dylib (217.1.4) <B983CA60-F418-317B-B142-48A6376564FC> /usr/lib/system/libsystem_asl.dylib
    0x7fff8b8cf000 -
    0x7fff8b8d0ff7  com.apple.print.framework.Print (9.0 - 260) <C4C40E2E-6130-3D73-B1EF-97FF3F70CF2C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x7fff8b932000 -
    0x7fff8bb7afff  com.apple.CoreData (107 - 481) <F4C908C1-CB2F-34B7-9EB0-872057322739> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8bb7b000 -
    0x7fff8bb93ff7  com.apple.GenerationalStorage (2.0 - 160.2) <DC0236CC-A0F7-31DA-A201-09D4319BE96E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x7fff8bb94000 -
    0x7fff8bb96ff3  libsystem_configuration.dylib (596.12) <9883100A-4D35-3D84-99B7-1CE999AE110A> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8bbeb000 -
    0x7fff8bc25ff3  com.apple.bom (12.0 - 192) <9756CAB3-7802-38B0-80CF-3527D160E59F> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8bd62000 -
    0x7fff8be51fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7fff8be52000 -
    0x7fff8be52fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <CFEF9CBE-4A1A-33FD-9174-D44314BB28F3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8be53000 -
    0x7fff8bedcfff  com.apple.ColorSync (4.9.0 - 4.9.0) <E7E0D542-D77A-3E32-B146-4D0FEAF282D3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x7fff8bef6000 -
    0x7fff8bf60ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8bf61000 -
    0x7fff8c052ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff8c05a000 -
    0x7fff8c05dffc  com.apple.IOSurface (91 - 91) <812F4D48-6FD4-3DCB-8691-B077EBF981D7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c097000 -
    0x7fff8c0a5fff  com.apple.opengl (9.3.1 - 9.3.1) <EEE2EBC1-866C-3947-9D03-B8339E948D77> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8c0a6000 -
    0x7fff8c0a7ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8c17a000 -
    0x7fff8c18cff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x7fff8c18d000 -
    0x7fff8c197ff7  com.apple.CrashReporterSupport (10.9 - 538) <E4DA588F-C75A-39F6-9D2B-7B79F0245D39> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x7fff8c198000 -
    0x7fff8c350ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
    0x7fff8c502000 -
    0x7fff8c75aff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7ff

    For the benefit of others, We found out the reason for this crash was due to permission issue of the user on the machine. Temporary solution was to run Illustrator with sudo permissions on the terminal
    e.g.
    $ sudo /Applications/Adobe\ Illustrator\ CS6/Adobe\ Illustrator.app/Contents/MacOS/Adobe\ Illustrator
    Sanjay.

  • How to solve the problem when opening program illustrator cs6 ERROR: 16 It is WINDOWS 8.1 / 64 BIT help please

    how to solve the problem when opening program illustrator cs6
    ERROR: 16
    It is WINDOWS 8.1 / 64 BIT
    help please

    Thanks, Jeff! The file Adobe Setup Error.log contains the following information:
    02/14/14 07:20:26:474 | [INFO] |  | OOBE | DE |  |  |  | 8860 | DEVersion: 5.0.0.0
    02/14/14 07:20:26:475 | [INFO] |  | OOBE | DE |  |  |  | 8860 | Loading library from C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE5\Setup.dll
    [    8860] Fri Feb 14 07:20:26 2014  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [    8860] Fri Feb 14 07:20:26 2014 ERROR
    DW040: The product "{893B3B44-0A1E-404B-8FE8-0A74509102A9}" is not installed. Cannot proceed with the uninstall
    [    8860] Fri Feb 14 07:20:26 2014  INFO
    :: END TIMER :: [Total Timer] took 6.90443 milliseconds (0.00690443 seconds) DTR = 579.338 KBPS (0.56576 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{893B3B44-0A1E-404B-8FE8-0A74509102A9}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW040 ...

  • MetaData in file not shown in Illustrator cs6 file info panel

    I have a command line application that puts meta-data into files.  It was created using the 5.1.2 xmp toolkit.  The metadata is in the file.  I can see it if I just use TextEdit to look at the file.  I can also see the custom metadata in the Illustrator CS5 File Info Panel AND the Photoshop CS6 File Info Panel.  The information doesn't show up in the Illustrator CS6 file info panel.  Any clue why?

    The files I am testing with are .jpg's.  They ultimately need to be opened with Illustrator which is why I posted.  I only tested with Photoshop to see what would happen and was pretty surprised to see the data there.  Like I said, it works in CS5 Illustrator, CS6 Photoshop, but the data just doesn't show up in the CS6 Illustrator (in the advanced nor the raw tab), and when I view the .jpg with textedit the data is difinitely there.  Pretty weird.

Maybe you are looking for

  • Help me to solve this Query

    Hi All, This is Sindhu.. Here i got an error while excuting the following query related to BLOB data types in Oracle 11g. I have to compare two blobs, because my report needs that. for this..1st i ran the following package.. @ORACLE_HOME/rdbms/admin/

  • Regarding kernel upgrade in ECC 6.0

    Hi, We want to perform a kernel upgrade for our ECC 6.0 system landscape. Currently we are on kernel 133 and the present kernel level is 179 in service market place. In our landscape,we have 7 dialog instances along with the central instance.If I upg

  • Parsing HTML files

    Hello, I have a question about parsing HTML files. Usually when I get an HTML file and I need to find all the text in it I do this. This stuff just collects all of the hyperlinks and ignores all the html tags just keeping the actual text. It's fine f

  • Mavericks 13A603 does not boot on Haswell based mBP

    I have a TB SATA adapter with an SSD loaded with OSX Mavericks 13A603 (13A2093 ships with the new mBP).  When I attempt to boot off of that drive, I get the forbidden symbol. That SSD has an image of Mavericks (13A603) that I would like to load on to

  • Motherboard voltage throttling?

    When I play a game, if my Alienware (late 2014) model with Nvidia 860M GPU is not plugged in, the monitor goes dim and the USB ports stop providing voltage to external devices, the system then recognizes this as an unplugged device... This is *NOT* a