Script label

This script is for Adobe Indesign CS5 Windows.

I m trying to modify this script to acept this configuration:

Dialog Box.JPG

Distribution of this dialog box and apply only if there is a certain image of selected image. (I think that if there is no object selected, applies it to all picture frame on the page so I Don t want this couse I will use a shortcut to this script and accidents can happen)

Sorry for the long script.

LabelGraphics.jsx (modified)

A JavaScript InDesign CS3

/*

@@BUILDINFO @ "LabelGraphics.jsx" 1.1.0 June 6, 2008

*/

Adds labels for graphics in the active document.

/ * This example script has been changed. The changes are listed here: added option to create a label of Clipboard data.

drop-down menu added to apply a shade to the frame of the legend. This script can now apply lables to just the selected graphics

If you have one or more selected images. Otherwise, it will apply the help of labels to all the graphics in the document. The height of the

Legend frame is determined by the amount of text and the applied paragraph style. the width of the legend image is

determined by the width of the image, that it is under. Setting the height of the caption in the dialog box has been removed because it is not

are most needed.

*/

main();

//=============================================================\\

main() {} function

If (app.documents.length! = 0) {}

If (. allGraphics.length app.documents.item (0)! = 0) {}

myDisplayDialog();

}

else {}

Alert ("the Document contains no graphics.");

}

}

else {}

Alert ("Please open a document and try again.");

}

}

//=============================================================\\

function myDisplayDialog() {}

var myLabelWidth = 100;

var myStyleNames = myGetParagraphStyleNames();

var mySwatchNames = myGetSwatchNames();

var myDialog = app.dialogs.add({name:"LabelGraphics"});)

{with (MyDialog.dialogColumns.Add ())}

Type of label

{with (dialogRows.Add ())}

{with (dialogColumns.Add ())}

staticTexts.add ({staticLabel: "Label Type", minWidth:myLabelWidth});})

}

{with (dialogColumns.Add ())}

var myLabelTypeDropdown = dropdowns.add ({stringList: ["File name", "File path", "Description of XMP", "XMP author", "paste from Clipboard"], selectedIndex:4});})

}

}

{with (dialogRows.Add ())}

{with (dialogColumns.Add ())}

staticTexts.add ({staticLabel: "Label Offset", minWidth:myLabelWidth});})

}

{with (dialogColumns.Add ())}

var myLabelOffsetField = measurementEditboxes.add({editValue:0});)

}

}

Style to apply

{with (dialogRows.Add ())}

{with (dialogColumns.Add ())}

staticTexts.add ({staticLabel: "Label Style", minWidth:myLabelWidth});})

}

{with (dialogColumns.Add ())}

var myLabelStyleDropdown = dropdowns.add ({stringList:myStyleNames, selectedIndex:0});})

}

}

Swatch to apply

{with (dialogRows.Add ())}

{with (dialogColumns.Add ())}

staticTexts.add ({staticLabel: "Apply swatch", minWidth:myLabelWidth});})

}

{with (dialogColumns.Add ())}

var mySwatchDropdown = dropdowns.add ({stringList:mySwatchNames, selectedIndex:0});})

}

}

}

//=============================================================\\

Ditto var = myDialog.show ();

if(myResult == true) {}

var myLabelType = myLabelTypeDropdown.selectedIndex;

var myLabelHeight = 24; A generic label height which will be adjusted later

myPasteFailure = false;

var myLabelOffset = myLabelOffsetField.editValue;

var myLabelStyle = myStyleNames [myLabelStyleDropdown.selectedIndex];

var mySwatch = mySwatchNames [mySwatchDropdown.selectedIndex];

myDialog.destroy ();

var myOldXUnits = app.documents.item (0).viewPreferences.horizontalMeasurementUnits;

var myOldYUnits = app.documents.item (0).viewPreferences.verticalMeasurementUnits;

App.Documents.Item (0).viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;

App.Documents.Item (0).viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;

try {}

myAddLabels (myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch);

}

{catch (e)}

Alert ("Cannot add lables." + e);

}

try {}

resizeOverset();

}

{catch (e)}

Alert ("Unable to correct the text in excess." + e);

}

If (myPasteFailure == true) {}

Alert ("unable to paste from the Clipboard.");

}

App.Documents.Item (0).viewPreferences.horizontalMeasurementUnits = myOldXUnits;

App.Documents.Item (0).viewPreferences.verticalMeasurementUnits = myOldYUnits;

}

else {}

myDialog.destroy ();

}

}

//=============================================================\\

function myAddLabels (myLabelType, myLabelHeight, myLabelOffset, myLabelStyleName, mySwatchName) {}

myDocument var = app.documents.item (0);

myStoriesArray = new Array();

If (app.selection.length == 0) / / if nothing is selected apply legend for all the graphics of the document

{

var myConfirmation = confirm ("Add captions to all images in the document?", false,"LabelGraphics.jsx" ');

If (myConfirmation is true)

{

myGraphics = myDocument.allGraphics var;

}

}

on the other

{/ / If the graphics are selected, just add captions to the selected items, as long as they are rectangles (picture frames)}

var myConfirmation = true;

var mySelections = app.selection;

myGraphics = new Array();

for (i = 0; i < mySelections.length; i ++) {}

If (mySelections [i] == "[" Rectangle object]) {//Check to make sure that the selection includes only rectangles}

myGraphics.push(mySelections[i].allGraphics[0]);

}

else {}

Alert ("other than the graphics objects have been selected!");

Nothing happens if you do not select at least a chart

}

}

}

myLabelStyle = myDocument.paragraphStyles.item (myLabelStyleName);

mySwatch = myDocument.swatches.item (mySwatchName);

If (myConfirmation == true) {}

for (var myCounter = 0; myCounter < myGraphics.length; myCounter ++) {}

try {}

myAddLabel (myDocument myGraphics [myCounter], myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch, myStoriesArray);

}

catch (e) {};

}

}

}

//=============================================================\\

function myAddLabel (myDocument, myGraphic, myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch, myStoriesArray) {}

var myLabel;

myLink var = myGraphic.itemLink;

var myPasteFromClipboard = false;

Create the layer of the label if it does not already exist.

var myLabelLayer = myDocument.layers.item ("labels");

try {}

myLabelLayer.name;

}

{} catch (MonErreur)

myLabelLayer = myDocument.layers.add({name:"labels"});)

}

Label type defines the text that goes into the label.

{Switch (myLabelType)}

File name

case 0:

myLabel = myLink.name;

break;

Path of the file

case 1:

myLabel = myLink.filePath;

break;

XMP description

case 2:

try {}

myLabel = myLink.linkXmp.description;

}

{catch (MyError)}

myLabel = "No description available.";

}

break;

XMP author

case 3:

try {}

myLabel = myLink.linkXmp.author

}

{catch (MyError)}

myLabel = "No author available.";

}

break;

Paste from the Clipboard

case 4:

try {}

myPasteFromClipboard = true;

}

{catch (MyError)}

myLabel = "No data on the Clipboard.";

}

break;

}

myFrame var = myGraphic.parent;

myX1 = myFrame.geometricBounds [1];

myY1 = myFrame.geometricBounds [2] + myLabelOffset;

myX2 = myFrame.geometricBounds [3];

myY2 = myY1 + myLabelHeight;

If (myPasteFromClipboard is true)

{

try {}

var myTextFrame = myFrame.parent.textFrames.add (myLabelLayer, defined, undefined, {geometricBounds: [myY1, myX1, myY2, myX2]});

myTextFrame.insertionPoints.item (0) .select ();

App.Paste ();

}

{catch (e)}

myTextFrame.remove ();

myPasteFailure = true;

}

}

else {}

var myTextFrame = myFrame.parent.textFrames.add (myLabelLayer, defined, undefined, {geometricBounds: [myY1, myX1, myY2, myX2], contents: myLabel});

}

myTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

myTextFrame.paragraphs.item (0) .appliedParagraphStyle = myLabelStyle;

myTextFrame.fillColor = mySwatch;

myFrameParentStory = myTextFrame.parentStory;

myStoriesArray.push (myFrameParentStory);

}

//=============================================================\\

function myGetParagraphStyleNames() {}

var myStyleNames = app.documents.item (0).paragraphStyles.everyItem () .name;

Return myStyleNames;

}

function myGetSwatchNames() {}

var mySwatchNames = app.documents.item (0).swatches.everyItem () .name;

Return mySwatchNames;

}

function resizeOverset() {}

for (var j = myStoriesArray.length - 1; j > = 0; j-) {}

myLastFrame = myStoriesArray [j] .texts [0] .parentTextFrames [myStoriesArray [j] .texts [0].parentTextFrames.l its - 1];

myNewY2 = myLastFrame.geometricBounds [3]; Retrieves the width of the text block before doing fit()

myLastFrame.fit (FitOptions.FRAME_TO_CONTENT);

myNewY1 = myLastFrame.geometricBounds [1];

myNewX1 = myLastFrame.geometricBounds [2];

myNewX2 = myLastFrame.geometricBounds [0];

myLastFrame.geometricBounds = [myNewY1, myNewX2, myNewX1, myNewY2]; reset the front wide fit() ran

}

}

Hello

Added runWithoutDialog() - permanent function fixed inside:

//LabelGraphics.jsx (Modified)
//An InDesign CS5 JavaScript
/*
@@@BUILDINFO@@@ "LabelGraphics.jsx" 1-Dec-2014
*/
//Adds labels to the graphics in the active document.
/* User interaction switched off
  see settings inside runWithoutDialog() function
  */
main();
//=============================================================\\
function main(){
  myStoriesArray = new Array();
  if(app.documents.length != 0){
  if(app.selection[0].allGraphics.length != 0){
  runWithoutDialog(); // myDisplayDialog();
  }
  else{
  alert("Select some frame with graphic");
  }
  }
  else{
  alert("Please open a document and try again.");
  }
  }
//=============================================================\\
function runWithoutDialog(){
  var myLabelWidth = 100;
  var myStyleNames = myGetParagraphStyleNames();
  var mySwatchNames = myGetSwatchNames();
  var myLabelType = 4; // paste from clipboard
  var myLabelHeight = 24; // A generic label height that will be adjusted later
  myPasteFailure = false;
  var myLabelOffset = 0;
  var myLabelStyle = myStyleNames[0];
  var mySwatch = mySwatchNames[0];
  var myOldXUnits = app.documents.item(0).viewPreferences.horizontalMeasurementUnits;
  var myOldYUnits = app.documents.item(0).viewPreferences.verticalMeasurementUnits;
  app.documents.item(0).viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
  app.documents.item(0).viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;

  try{
  myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch);
  }
  catch(e){
  alert("Unable to add lables. " + e);
  }

  try{
  resizeOverset() ;
  }
  catch(e){
  alert("Unable to correct overset text. " + e);
  }

  if (myPasteFailure == true){
  alert("Unable to paste from clipboard.");
  }
  app.documents.item(0).viewPreferences.horizontalMeasurementUnits = myOldXUnits;
  app.documents.item(0).viewPreferences.verticalMeasurementUnits = myOldYUnits;
  }
//=============================================================\\
function myDisplayDialog(){
  var myLabelWidth = 100;
  var myStyleNames = myGetParagraphStyleNames();
  var mySwatchNames = myGetSwatchNames();
  var myDialog = app.dialogs.add({name:"LabelGraphics"});
  with(myDialog.dialogColumns.add()){
  //Label type
  with(dialogRows.add()){
  with(dialogColumns.add()){
  staticTexts.add({staticLabel:"Label Type", minWidth:myLabelWidth});
  }
  with(dialogColumns.add()){
  var myLabelTypeDropdown = dropdowns.add({stringList:["File name", "File path", "XMP description", "XMP author","Paste from clipboard"], selectedIndex:4});
  }
  }
  with(dialogRows.add()){
  with(dialogColumns.add()){
  staticTexts.add({staticLabel:"Label Offset", minWidth:myLabelWidth});
  }
  with(dialogColumns.add()){
  var myLabelOffsetField = measurementEditboxes.add({editValue:0});
  }
  }
  //Style to apply
  with(dialogRows.add()){
  with(dialogColumns.add()){
  staticTexts.add({staticLabel:"Label Style", minWidth:myLabelWidth});
  }
  with(dialogColumns.add()){
  var myLabelStyleDropdown = dropdowns.add({stringList:myStyleNames, selectedIndex:0});
  }
  }
  //Swatch to apply
  with(dialogRows.add()){
  with(dialogColumns.add()){
  staticTexts.add({staticLabel:"Apply swatch", minWidth:myLabelWidth});
  }
  with(dialogColumns.add()){
  var mySwatchDropdown = dropdowns.add({stringList:mySwatchNames, selectedIndex:0});
  }
  }
  }
  //=============================================================\\
  var myResult = myDialog.show();
  if(myResult == true){
  var myLabelType = myLabelTypeDropdown.selectedIndex;
  var myLabelHeight = 24; // A generic label height that will be adjusted later
  myPasteFailure = false;
  var myLabelOffset = myLabelOffsetField.editValue;
  var myLabelStyle = myStyleNames[myLabelStyleDropdown.selectedIndex];
  var mySwatch = mySwatchNames[mySwatchDropdown.selectedIndex];
  myDialog.destroy();
  var myOldXUnits = app.documents.item(0).viewPreferences.horizontalMeasurementUnits;
  var myOldYUnits = app.documents.item(0).viewPreferences.verticalMeasurementUnits;
  app.documents.item(0).viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
  app.documents.item(0).viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;

  try{
  myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch);
  }
  catch(e){
  alert("Unable to add lables. " + e);
  }

  try{
  resizeOverset() ;
  }
  catch(e){
  alert("Unable to correct overset text. " + e);
  }

  if (myPasteFailure == true){
  alert("Unable to paste from clipboard.");
  }
  app.documents.item(0).viewPreferences.horizontalMeasurementUnits = myOldXUnits;
  app.documents.item(0).viewPreferences.verticalMeasurementUnits = myOldYUnits;
  }
  else{
  myDialog.destroy();
  }
}
//=============================================================\\
function myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyleName, mySwatchName){
  var myDocument = app.documents.item(0);

  if (app.selection.length == 0) // If nothing is selected apply caption to all graphics in the document
  {
  var myConfirmation = false; // confirm("Add captions to all images in the document?", false, "LabelGraphics.jsx" );
  if (myConfirmation == true)
  {
  var myGraphics = myDocument.allGraphics;
  }
  }
  else
  { // If graphics are selected, just add captions to the selected items, as long as they are rectangles(image frames)
  var myConfirmation = true;
  var mySelections = app.selection;
  myGraphics = new Array();

  for(i = 0; i < mySelections.length; i++){
  if(mySelections[i] == "[object Rectangle]"){  //Check to make sure selection only includes rectangles
  myGraphics.push(mySelections[i].allGraphics[0]);
  }
  else{
  //alert("Objects other than graphics were selected!");
  //Nothing happens if you don't select at least one graphic
  }
  }
  }

  myLabelStyle = myDocument.paragraphStyles.item(myLabelStyleName);
  mySwatch = myDocument.swatches.item(mySwatchName);

  if (myConfirmation == true){
  for(var myCounter = 0; myCounter < myGraphics.length; myCounter++){
  try{
  myAddLabel(myDocument, myGraphics[myCounter], myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch, myStoriesArray);
  }
  catch(e){};
  }
  }
  }
//=============================================================\\
function myAddLabel(myDocument, myGraphic, myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, mySwatch, myStoriesArray){
  var myLabel;
  var myLink = myGraphic.itemLink;
  var myPasteFromClipboard = false;
  //Create the label layer if it does not already exist.
  var myLabelLayer = myDocument.layers.item("labels");
  try{
  myLabelLayer.name;
  }
  catch (myError){
  myLabelLayer = myDocument.layers.add({name:"labels"});
  }
  //Label type defines the text that goes in the label.
  switch(myLabelType){
  //File name
  case 0:
  myLabel = myLink.name;
  break;
  //File path
  case 1:
  myLabel = myLink.filePath;
  break;
  //XMP description
  case 2:
  try{
  myLabel = myLink.linkXmp.description;
  }
  catch(myError){
  myLabel = "No description available.";
  }
  break;
  //XMP author
  case 3:
  try{
  myLabel = myLink.linkXmp.author
  }
  catch(myError){
  myLabel = "No author available.";
  }
  break;
  //Paste from the clipboard
  case 4:
  try{
  myPasteFromClipboard = true;
  }
  catch(myError){
  myLabel = "No clipboard data available.";
  }
  break;
  }

  var myFrame = myGraphic.parent;
  myX1 = myFrame.geometricBounds[1];
  myY1 = myFrame.geometricBounds[2] + myLabelOffset;
  myX2 = myFrame.geometricBounds[3];
  myY2 = myY1 + myLabelHeight;

  if (myPasteFromClipboard ==true)
  {
  try{
  var myTextFrame = myFrame.parent.textFrames.add(myLabelLayer, undefined, undefined,{geometricBounds:[myY1, myX1, myY2, myX2]});
  myTextFrame.insertionPoints.item(0).select();
  app.paste();
  }
  catch(e){
  myTextFrame.remove();
  myPasteFailure = true;
  }
  }
  else{
  var myTextFrame = myFrame.parent.textFrames.add(myLabelLayer, undefined, undefined,{geometricBounds:[myY1, myX1, myY2, myX2], contents:myLabel});
  }

  myTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;
  myTextFrame.paragraphs.item(0).appliedParagraphStyle = myLabelStyle;

  myTextFrame.fillColor = mySwatch;
  myFrameParentStory = myTextFrame.parentStory;
  myStoriesArray.push(myFrameParentStory);
}
//=============================================================\\
function myGetParagraphStyleNames(){
  var myStyleNames = app.documents.item(0).paragraphStyles.everyItem().name;
  return myStyleNames;
  }
function myGetSwatchNames(){
  var mySwatchNames = app.documents.item(0).swatches.everyItem().name;
  return mySwatchNames;
  }
function resizeOverset() {
  for (var j = myStoriesArray.length - 1; j >= 0; j--) {
  myLastFrame = myStoriesArray[j].texts[0].parentTextFrames[myStoriesArray[j].texts[0].parentTextFrames.length - 1];
  myNewY2 = myLastFrame.geometricBounds[3]; //get the width of the text frame before doing fit()
  myLastFrame.fit(FitOptions.FRAME_TO_CONTENT);
  myNewY1 = myLastFrame.geometricBounds[1];
  myNewX1 = myLastFrame.geometricBounds[2];
  myNewX2 = myLastFrame.geometricBounds[0];
  myLastFrame.geometricBounds = [myNewX1, myNewY1, myNewX2, myNewY2]; // reset the width to before fit() was ran
  }
  }

Tags: InDesign

Similar Questions

  • Pls fix my script for the creation of script label

    Hello

    I want to add the script label name in Masterpages only which was in options 'thread of text. Is it possible by script?

    This is my code

    var myTextFrame=app.selection[0];
    myTextFrame.label="textpage";
    var myNextFrame=myTextFrame.nextTextFrame;
    while(myNextFrame !=null)
    {
        myNextFrame.label="textpage";
        myNextFrame=myNextFrame.nextTextFrame;
        
    }
    
    
    Instead of first line I want to create this script label "textpage" for master page 'text thread' text frame only
    

    Instead of the first line, I want to create this script name "enriched" page master "thread of text" text frame only. How to change my script pls help me?

    FOR INFO:

    1.png

    by

    hasvi

    Hi Hasvi,

    Try this.

    var doc = app.activeDocument;
    var mspreads = doc.masterSpreads;
    
    for(var i =0;i1)
            {
                    var txfmlength = mspreads[i].textFrames;
                    for(var j=0;j
    

    Kind regards

    Cognet

  • Suddenly unable to change script labels

    All of a sudden, I can't change the labels of script for one of the images in a document that I'm putting in CS4. Or, to be precise - ID won't remember/honor the changes I made. I can type a new value in the Script label Panel and pass, but when I go back and look at this new framework, the old script label is always there - my change was scrapped / unknown.

    Any ideas? I have restart ID, without change.

    Try an export to .inx...

  • Modification of the Script label

    Hello

    I've been watching the script of the label provided with InDesign CS3 and I made a few small changes, but I am confused on how I can remove the drop down menus to apply a Swatch and Style apply, I want that just use 1 swatch and 1 model I made?

    can someone help me with that please?

    Concerning

    Seth

    JavaScript is not a standard feature, so you'll have to make your own:

    function padToFour(number) {
      if (number<=9999) { number = ("000"+number).slice(-4); }
      return number;
    }
    

    (sidenote, I wonder who wrote the original scripts for adobe examples)

  • Using the content of a Script label to rename / export PDF pages

    Hello

    I used datamerge to create a 500-page document, each page containing text boxes with labels 'Product name' and 'Non Art' Script.

    I'm trying to create a script so that each page is exported as individual PDF, with each file in 'Product name' name _ 'Art No' _label.pdf

    Ideas and help would be highly appreciated.

    Thank you

    Matt

    Hey,.

    Have a look here: http://www.loicaigon.com/blog/?p=876

    Hope that helps.

    --

    Marijan (tomaxxi)

    http://tomaxxi.com

  • Using script labels

    I have a script that opens an Indesign CS4 pages, create a rectangle and place a picture in the rectangle.  This part works fine.  I want to do is to have the image placed in an existing box that has been tagged with a label of scipt.  I can't understand it.   Here is my current code.

    say application "Adobe InDesign CS4"

    set comic4 to "Macintosh HD:users:marshall:documents:comics:bbt" & & Dmonth & Dday & ".tiff" DYear

    set comic7 to "Macintosh HD:users:marshall:documents:comics:pe09" & Dmonth & Dday & ".tif"

    set mydoc to Open "Macintosh HD:users:marshall:documents:comix:GGDailyBlank.indd"

          tell mydoc

                 tell page 1

    set myrect4 to do rectangle Properties {geometric limits: {2.4, 41, 30.6, 32.5}}

    set myrect7 to do rectangle Properties {geometric limits: {33.5, 54, 43.4, 63.5}}

                       tell myrect4

                             set myGraphic to place (comic4 as string)

                             fit myrect4 given happy to frame

                             tell myrect7

                                   set myGraphic to place (comic7 as string)

    made myrect7 give content frame

                             end tell

                       end tell

                 end tell

          end tell

    end tell

    Yo need something like:

    place aliases pathToPic on the block of text "image tag".

    --

    Shane Stanley [email protected]>

    AppleScript Pro Sessions http://scriptingmatters.com/aspro>

  • How to get the value of the label tag XML.

    To get the label for the page element I use under the piece of code. But the same code does not work for the inline xml tag.

    PMString TestUtility::GetScriptLabel (UIDRef pageItemRef, PMString key)

    {

    PMString labelValue;

    labelValue.SetTranslatable (false);

    InterfacePtr < IScript > iscript (pageItemRef, IScript::kDefaultIID);

    If (iscript)

    {

    If (key is 'default')

    {

    labelValue = iscript-> GetTag();

    }

    on the other

    {

    labelValue = iscript-> then (key);

    }

    }

    Return labelValue;

    }

    Please suggest something.

    The following function should do the job:

    PMString GetXMLTagLabel(IDocument* doc, WideString& tagName) {
        PMString label("");
    
        if(!doc)
          return label;
    
        InterfacePtr tagList(doc->GetDocWorkSpace(), UseDefaultIID());
        if(tagList)
        {
            UID tagUID  = tagList->GetTag(tagName);
            UIDRef tagRef = UIDRef(::GetDataBase(doc), tagUID); 
    
            InterfacePtr script(tagRef, UseDefaultIID());
            if(script) {
                 label.Append(script->GetTag());
            }
       }
       return label;
    }
    
  • Select all the script maps

    Hi all

    Hoping someone out there can help, I need my script to end with one of the following 3 options:

    Select all: as in "cmd one"

    Select all the objects on the layer "Tabs".

    Select all the objects with the Script title boxes"tabs".

    Reason being, when the script ends I need a bunch of boxes to be pre-selected loan for a manual deselect by 1 point (chosen by the user) and then they Deletes selected objects manually to finish. (I didn't understand my original script here as has no impact on the autonomous part I need for the final selection)

    Hoping that this is a simple script but as it is rare to have a script of object selection and not do something with them, I think it's impossible to create.

    Thank you, Bren

    Read the object model and you will find that the equivalent script Cmnd + A is as follows:

    app.selection = null;
    pItems = app.windows[0].activeSpread.pageItems;
    app.select (pItems, SelectionOptions.ADD_TO);
    

    To select all items in the layer tab page, filter the items in the page:

    app.selection = null;
    pItems = app.windows[0].activeSpread.pageItems;
    
    for (i = pItems.length-1; i >= 0; i--) {
      if (pItems[i].itemLayer.name === 'Tab') {
        app.select (pItems[i], SelectionOptions.ADD_TO);
      }
    }
    

    To select objects with a certain script label is a variant of the (or an addition to) the second script.

    Peter

  • Need a Script to the space of images on a total gap, then tag each image with the percentage of the total image space

    By editing the other scripts, I found here and other sites (including the labels size rorohiko), I worked on a script that will each image with the dimensions of the label and calculate the percentage of the spread of everything (including the text, white space).

    Now, I was invited to a script that tagged the images with the percentage of total image on a gap space. This script is so space images on a total gap, then tag each image with the percentage of the total image space. For example if there is an image that is 10 x 10 inches and four pictures that are images of 2.5x2.5, 10 x 10 would be tagged with 50% and the 2.5x2.5 would be tagged with 12.5%.

    This is the script that does the percentage of total circulation. Can some clever person get to do what I need?

    Suze

    (Sorry, I don't know how to post the script here with line numbers!)

    //

    This script adds printing of information labels to each graphic image. The labels are on a separate layer

    named "PercentageLabels" so that all these added labels can be removed again by simply removing

    the layer.

    //

    If you move or resize items, simply re-run the script to update the labels.

    //

    Before (re) start the script, you can define a paragraph style "SizeLabelStyle".

    This style will apply to all content on labels.

    //

    Before (re) start the script, you can set a style of object 'SizeLabelObjectStyle '.

    This style of object apply to all executives of the label - so if you want a specific background

    fill out or frame, do it through this object style.

    //

    You can change the units of the size label. I put in inches. Change the line below that has

    kUnitToUse - you can use:

    MeasurementUnits.CENTIMETERS

    MeasurementUnits.CICERO

    MeasurementUnits.INCHES

    MeasurementUnits.MILLIMETERS

    MeasurementUnits.PICAS

    MeasurementUnits.PIXELS

    MeasurementUnits.POINTS

    //

    By default the script will not attempt to label the "nested" images If you also want to label

    nested images (for example inline images, anchored frames, pasted images in the images,...) to change the line

    below to read:

    kLabelNestedItems = 1

    //

    If you want a specific image to stay without a label, you can use the Script label palette for

    assign a script called 'ignore' for this frame. The script will then not label this framework to the

    the title of the script is removed again.

    //

    Change the lines with kDontLabelImageFrames, kDontLabelTextFrames, kDontLabelOtherFrames

    below if you want to restrict labelling to only certain types of images: replace the '0'

    in "1" to enable these options.

    //

    Change the line with kShowImageFileName if you also want to display the names of the image in the

    size for the picture frames.

    //

    Small frames are not labelled - the cutoff point is currently a less than 0.1 inch high framework

    or 0.1 inch wide. You can change the cutoff point by adjusting the lines with kDontLabelBelowWidth

    or kDontLabelBelowHeight below.

    //

    var Girard;

    var gScriptFile;

    var gCaches;

    // ****************

    That's cheating spread automatically calculated

    var doc = app.activeDocument;

    doc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.inches;

    doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.inches;

    PageWidth = doc.documentPreferences.pageWidth var;

    stucture var pagewidth = * 2;

    var spreadheight = doc.documentPreferences.pageHeight;

    var spreadsquinch = stucture * spreadheight;

    Alert ("the total measure of square inch of spread is:" + spreadsquinch);

    //******************

    VR;

    {

    If (app.activeScript instanceof file)

    {

    var gScriptFile = app.activeScript;

    }

    }

    catch (Girard)

    {

    }

    If (typeof (kLogLevel) is "undefined")

    {

    const kLogLevel = 5;

    const kMaxLogNestLevel = 5;

    const kLogToMessageBox = 0;

    const kLogToConsole = 0;

    const kLogToFile = 0;

    const kLogFileName = "PercentageLabels.log";

    const kIgnoreFrameLabel = "ignore."

    const kSizeLabelLayerName = "PercentageLabels";

    const kLabelNestedItems = 0;

    const kDontLabelImageFrames = 0;

    const kDontLabelTextFrames = 1;

    const kDontLabelOtherFrames = 0;

    const kUnitToUse = MeasurementUnits.INCHES;

    const kShowImageFileName = 0; This set to 1 to precede the name of the image file in the tag

    Below all of the measures are expressed in kUnitToUse (e.g. inches if MeasurementUnits.INCHES is used)

    const kRoundToDecimals = 2;

    The separator to use between objects - for example MyImage.jpg - 7.22 x 9,34

    const kSeparatorBetweenNameAndSize = "-";

    const kSeparatorBetweenHeightAndWidth = "H x"; "

    const kSeparatorAfterWidth = "W";

    const kDontLabelBelowWidth = 0.1; In kUnitToUse

    const kDontLabelBelowHeight = 0.1; In kUnitToUse

    const kLabelStyleName = "SizeLabelStyle";

    const kLabelObjectStyleName = "SizeLabelObjectStyle";

    const kLabelHeight = 0.6; In kUnitToUse

    const kLabelWidth = 2.5; Expressed in kUnitToUse (e.g., inches).

    }

    var gRunState =

    {

    logToMessageBox: kLogToMessageBox,

    logToConsole: kLogToConsole,.

    logToFile: kLogToFile,.

    functionNestLevel: 0,

    logFunctionEntry: true,

    logFunctionExit: true,

    logLevel: kLogLevel,.

    logFileName: kLogFileName

    };

    Main();

    // ****************

    function ConvertToFrame (thePageItem)

    {

    / * / / / LogEntry ("ConvertToFrame");

    var retVal = thePageItem.getElements () [0];

    / * / / / LogExit ("ConvertToFrame");

    Return retVal;

    }

    // ****************

    function CollectionToArray (theCollection)

    {

    / * / / / LogEntry ("CollectionToArray");

    var retVal = theCollection.everyItem () .getElements () .slice (0);

    / * / / / LogExit ("CollectionToArray");

    Return retVal;

    }

    // ****************

    function GetImageFile (pageItem)

    {

    / * / / / LogEntry ("GetImageFile");

    var imageFile = null;

    do

    {

    Try

    {

    pageItem = ConvertToFrame (pageItem);

    If (!) (("allGraphics" in pageItem))

    {

    break;

    }

    var allGraphics = pageItem.allGraphics.slice (0);

    If (allGraphics.length == 0)

    {

    break;

    }

    var chart = allGraphics [0];

    var graphic.itemLink = link;

    imageFile = new File (link.filePath);

    }

    catch (Girard)

    {

    }

    }

    While (false);

    / * / / / LogExit ("GetImageFile");

    return imageFile.

    }

    // ****************

    function GetImageName (pageItem)

    {

    / * / / / LogEntry ("GetImageName");

    var imageName = "";

    do

    {

    var imageFile = GetImageFile (pageItem);

    If (imageFile is nothing)

    {

    break;

    }

    imageName = imageFile.displayName;

    }

    While (false);

    / * / / / LogExit ("GetImageName");

    return imageName;

    }

    // ****************

    function GetOuterPageItem (pageItem)

    {

    / * / / / LogEntry ("GetOuterPageItem");

    var retVal = null;

    do

    {

    Try

    {

    retVal = pageItem.parent;

    If (retVal instanceof spread | retVal instanceof Page)

    {

    retVal = pageItem;

    break;

    }

    If (retVal instanceof character)

    {

    retVal = GetOuterPageItem(retVal.parentTextFrames[0]);

    break;

    }

    }

    catch (Girard)

    {

    retVal = null;

    }

    }

    While (false);

    / * / / / LogExit ("GetOuterPageItem");

    Return retVal;

    }

    // ****************

    function LogMessage (message, collapseLines)

    {

    If (gRunState.logToConsole)

    {

    $.writeln (message);

    }

    If (gRunState.logToFile)

    {

    var logFile = new file (gScriptFile.parent + "/" + gRunState.logFileName);

    var now = new Date();

    logFile.open ("a");

    logFile.write (now.toString () + ":"+ message + "\n" ');

    logFile.close ();

    }

    If (gRunState.logToMessageBox)

    {

    Alert (message);

    }

    }

    // ****************

    LogEntry (message) function

    {

    If (gRunState.logFunctionEntry)

    {

    If (gRunState.functionNestLevel < kMaxLogNestLevel) {}

    for (var idx = 0; idx < gRunState.functionNestLevel; idx ++)

    {

    message = "" + message;

    }

    Filled (message + "<", true);

    }

    }

    gRunState.functionNestLevel ++;

    }

    // ****************

    function LogError (message)

    {

    If (gRunState.logLevel > = 1).

    {

    LogMessage ("* ERROR *:" + message, false);

    }

    }

    // ****************

    function LogExit (message)

    {

    -gRunState.functionNestLevel;

    If (gRunState.functionNestLevel < 0)

    {

    LogError ("LogExit: unbalanced nesting of function");

    }

    If (gRunState.logFunctionExit)

    {

    If (gRunState.functionNestLevel < kMaxLogNestLevel) {}

    for (var idx = 0; idx < gRunState.functionNestLevel; idx ++)

    {

    message = "" + message;

    }

    Filled (message + ">", true);

    }

    }

    }

    // ****************

    function LogNote (message)

    {

    If (gRunState.logLevel > = 3)

    {

    LogMessage ("Note:" + message, false);

    }

    }

    // ****************

    function LogWarning (message)

    {

    If (gRunState.logLevel > = 2)

    {

    LogMessage ("WARNING:" + message, false);

    }

    }

    // ****************

    function Main()

    {

    / * / / / LogEntry ("Main");

    var savedUserInteractionLevel = app.scriptPreferences.userInteractionLevel;

    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;

    do

    {

    Try

    {

    activeDocument var = app.activeDocument;

    If (!.) (activeDocument instanceof Document))

    {

    LogError ("hand: activeDocument isn't a Document");

    break;

    }

    var savedHorizontalMeasurementUnits = activeDocument.viewPreferences.horizontalMeasurementUnits;

    activeDocument.viewPreferences.horizontalMeasurementUnits = kUnitToUse;

    var savedVerticalMeasurementUnits = activeDocument.viewPreferences.verticalMeasurementUnits;

    activeDocument.viewPreferences.verticalMeasurementUnits = kUnitToUse;

    var savedRulerOrigin = activeDocument.viewPreferences.rulerOrigin;

    activeDocument.viewPreferences.rulerOrigin = RulerOrigin.PAGE_ORIGIN;

    do

    {

    Try

    {

    ProcessFrames (activeDocument);

    }

    catch (Girard)

    {

    Alert ("the script encountered a situation that we don't know how to handle. "He received the error, says '" + Parker + "' in Main()"); "."

    }

    }

    While (false);

    activeDocument.viewPreferences.rulerOrigin = savedRulerOrigin;

    activeDocument.viewPreferences.horizontalMeasurementUnits = savedHorizontalMeasurementUnits;

    activeDocument.viewPreferences.verticalMeasurementUnits = savedVerticalMeasurementUnits;

    }

    catch (Girard)

    {

    Alert ("the script encountered a situation that we don't know how to handle. "He received the error, says '" + Parker + "' in Main()"); "."

    LogError ("Hand throw" + Girard);

    }

    }

    While (false);

    app.scriptPreferences.userInteractionLevel = savedUserInteractionLevel;

    / * / / / LogExit ("Main");

    }

    // ****************

    function ProcessFrames (doc)

    {

    / * / / / LogEntry ("ProcessFrames");

    var err;

    do

    {

    If (!.) (doc instanceof Document))

    {

    LogError ("ProcessFrames: doc should be a Document");

    break;

    }

    Try

    {

    var existingLayer = doc.layers.itemByName (kSizeLabelLayerName);

    existingLayer.id;

    existingLayer.remove ();

    }

    catch (err)

    {

    }

    If (kLabelNestedItems)

    {

    var pageItems = doc.allPageItems.slice (0);

    }

    on the other

    {

    var pageItems = CollectionToArray (doc.pageItems);

    }

    var frameReferences = [];

    for (var pageItemIdx = 0; pageItemIdx < pageItems.length; pageItemIdx ++)

    {

    do

    {

    var pageItem = pageItems [pageItemIdx];

    If (pageItem.itemLayer.name is kSizeLabelLayerName)

    {

    break;

    }

    var pageItem = ConvertToFrame (pageItem);

    If (instanceof TextFrame pageItem)

    {

    If (kDontLabelTextFrames)

    {

    break;

    }

    }

    ElseIf (pageItem graphic instanceof)

    {

    If (kDontLabelImageFrames)

    {

    break;

    }

    }

    on the other

    {

    If (kDontLabelOtherFrames)

    {

    break;

    }

    }

    If (pageItem.label.toLowerCase () is kIgnoreFrameLabel)

    {

    break;

    }

    var width = pageItem.geometricBounds [3] - pageItem.geometricBounds [1];

    var height = pageItem.geometricBounds [2] - pageItem.geometricBounds [0];

    If (width < kDontLabelBelowWidth)

    {

    break;

    }

    If (height, kDontLabelBelowHeight)

    {

    break;

    }

    frameReferences.push (pageItem);

    }

    While (false);

    }

    var sizeLabelLayer = doc.layers.add ({name: kSizeLabelLayerName});

    for (var pageItemIdx = 0; pageItemIdx < frameReferences.length; pageItemIdx ++)

    {

    Try

    {

    var pageItem = frameReferences [pageItemIdx];

    var width = pageItem.geometricBounds [3] - pageItem.geometricBounds [1];

    var height = pageItem.geometricBounds [2] - pageItem.geometricBounds [0];

    var labelItem = doc.textFrames.add (null, LocationOptions.BEFORE, GetOuterPageItem (pageItem));

    labelItem.itemLayer = sizeLabelLayer;

    var boxsquinch = width * height

    var boxpercent = (boxsquinch / spreadsquinch) * 100

    var roundpercent = Math.round (boxpercent)

    var labelText = "";

    If (kShowImageFileName)

    {

    var imageName = GetImageName (pageItem);

    If (imageName! = "")

    {

    labelText += imageName + kSeparatorBetweenNameAndSize;

    }

    }

    labelText += RoundString (height, kRoundToDecimals) + kSeparatorBetweenHeightAndWidth + RoundString(width, kRoundToDecimals) + kSeparatorAfterWidth + ' \r\n'+ roundpercent + '% ';

    labelItem.contents = labelText;

    xPos = pageItem.geometricBounds var [1];

    yPos = pageItem.geometricBounds var [0] + kLabelHeight;

    labelItem.geometricBounds is [Posy, xPos, yPos + kLabelHeight, xPos + kLabelWidth];.

    Try

    {

    labelItem.parentStory.characters.everyItem () .appliedCharacterStyle = doc.characterStyles.item (0);

    }

    catch (err)

    {

    }

    Try

    {

    labelItem.parentStory.paragraphs.everyItem () .appliedParagraphStyle = kLabelStyleName;

    }

    catch (err)

    {

    }

    Try

    {

    labelItem.appliedObjectStyle = doc.objectStyles.itemByName (kLabelObjectStyleName);

    }

    catch (err)

    {

    }

    }

    catch (err)

    {

    }

    }

    }

    While (false);

    / * / / / LogExit ("ProcessFrames");

    }

    // ****************

    function RoundString (numVal, decimal)

    {

    / * / / / LogEntry ("Round");

    var retVal = Math.round (numVal * Math.pow(10,decimals)) + "";

    retVal = retVal.substring(0,retVal.length-decimals) + "." + retVal.substring(retVal.length-decimals);

    / * / / / LogExit ("Round");

    Return retVal;

    }

    What do you mean?

    var myDoc = app.activeDocument;
    var mySpreads = myDoc.spreads;
    var myRectangles = myDoc.rectangles;
    var myImages = 0;
    for (var i = 0; i < mySpreads.length; i++) {
        var mySpreadWidth = 0;
        var mySpreadHeight = myDoc.documentPreferences.pageHeight;
        for (var j = 0; j < mySpreads[i].pages.length; j++) {
            mySpreadWidth += myDoc.documentPreferences.pageWidth;
            }
        var mySpreadArea = mySpreadWidth * mySpreadHeight;
        var myImages = mySpreads[i].rectangles;
        var myTotalImageArea = 0;
        var myIndividualImageArea = [];
        for (var j = 0; j < myImages.length; j++) {
            var myImageGeometricBounds = myImages[j].geometricBounds;
            var myImageWidth = myImageGeometricBounds[3] - myImageGeometricBounds[1];
            var myImageHeight = myImageGeometricBounds[2] - myImageGeometricBounds[0];
            myIndividualImageArea[j] = (myImageWidth * myImageHeight);
            myTotalImageArea += myIndividualImageArea[j];
            }
        for (var j = 0; j < myIndividualImageArea.length; j++) {
            alert("Image percentage of total images on spread " + (i + 1) + " = " + (myIndividualImageArea[j] * 100) /myTotalImageArea);
            }
       alert("Total image percentage on spread " + (i + 1) + " = " + myTotalImageArea);
       }
    
  • Sellect OCD with script

    I tried not to a put a question to every step of the way, but I'm not good at that.

    Now, I'm trying to select the table of contents with script so I can use other scripts (idea being able to make a series of 3 different points with 1 click). I think I'm looking something like this:

    App.Select (app.activeDocument.pageItems.item ("preface"));

    From what I've read, who has ceased to be good in CS5 and now I need to loop through all to find something that I name the area of lable of script. I can't find examples of a good current example of this. Any help would make me smile.

    Here's what I got so far:

    / * REFRESH WITH NEW CHAPTER TOC * /.

    / * app.select (app.activeDocument.pageItems.item ("preface"));  */
    app.scriptMenuActions.itemByID (71442) .invoke (); To update the table of contents

    / * UPDATE A TABLE OF CONTENTS AFTER REFRESH STYLE * /.
    app.findChangeGrepOptions.includeLockedLayersForFind = true;
    app.findChangeGrepOptions.includeLockedStoriesForFind = true;
    app.findChangeGrepOptions.includeHiddenLayers = true;
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findChangeGrepOptions.includeFootnotes = true;

    app.findGrepPreferences = app.changeGrepPreferences = null;

    app.findGrepPreferences.findWhat = "\\^n\\^yPage";
    app.changeGrepPreferences.changeTo = "\\n~yPage";
    app.activeDocument.changeGrep ();

    Thanks again.

    Do you mean that you have added a title of script somewhere?

    Well, you cannot add a script label to a story. You probably added so)

    That's what you were doing) to the first textFrame containing your table of contents. And

    (it is true that it is a bit confusing, but probably you'll get the hang of)

    with persistence a little, as we have many moons ago) even if the

    Table of contents takes up only textFrame, a textFrame is not the same object that

    the story.  The textFrame is what the story is in. To read the article

    object to which belongs the textFrame, you have

    monarticle = myTextFrame.parentStory;

    So, assuming that you did baptize 3 blocks of text in your document with a script

    label, I don't think that there is a way by which you can access directly

    scriptLabel without loop through all frames of text in the document.

    However, if you happened to their name in the layers panel, instead, and

    If you called them Bob, you could then do this:

    myDoc.textFrames.itemByName("Bob")

    Once you have your frame, you have your history, as explained above.

  • Title of table Script

    Hello

    I am new to scripting indesign and use javascript / extendscript.   I paginate a document and get an array of all the tables in the paginated document using

    var myTables = myDoc.stories.everyItem ().tables.everyItem () .getElements ();

    I then walk through them in a loop a conditionally applying a block of code.

    I need to do a little smarter and to apply different blocks of code based on the name of script.  I would like to be able to:

    if(mytables[i].label=="1") {... do this code...}

    Else if(myTables[i].label=="2") {... do this code...}

    The problem is that I can assign a script for the table heading is found in the block of text, but not the table itself, it seems.  If that is correct, is there an easy way for me to get title of the tables the array element text frame script (I'm currently sitting on my myTables loop [i])?

    Please speak slowly, or it is likely to fly right by me

    Thank you

    David

    In fact, you CAN assign a script label to a table, either in a script or in the InDesign UI.  User interface methods are probably a little obscure... for example see http://www.peachpit.com/articles/article.aspx?p=415190&seqNum=13 for a description.

  • Name of script

    Hi all

    For my needs, I want to get a list of all elements on the page with the 'id' value in the style of script.

    Script Label entirely new concept for me.

    Script below to get the value of the ID of each elements on the page in the active document.

    But I don't know how to record all values [alert (("ID:" + myPgItems) in the script title.)]

    Try the script:

    myDoc = app.activeDocument var

    var myPageItems = myDoc.allPageItems

    Alert (myPageItems.Length)

    for (i = 0; i < myPageItems.length; i ++)

    {

    var myPgItems = myPageItems [i] user.user

    Alert ("ID:" + myPgItems)

    }

    Please find the attachment for more information

    Screen Shot 2013-02-05 at 12.12.28 PM.png

    Kindly give solution immediately.

    Thanks in advance

    BEGINNER

    Hi BEGINNER,.

    1. Why don't you store data in the label of the document?

    2. to facilitate the comparison of IDs (new objs and/or those removed), a structure of object may be easier than a table.

    Here's a possible approach (although not optimized):

    function createList(/*PageItem[]*/a)
    // -------------------------------------
    {
        var i = a.length,
            r = {};
    
        while( i-- ){ r['_'+a[i].id]=null; }
        return r;
    }
    
    function compareList(o1, o2)
    // -------------------------------------
    {
        var k, a=[], z=0;
    
        for( k in o1 )
            {
            if( o2.hasOwnProperty(k) ) continue;
            a[z++] = k.substr(1); // as k is in the form '_id'
            }
        return a;
    }
    
    function showReport(oldList, newList)
    // -------------------------------------
    {
        var r = [],
            a;
    
        r[0] = (a=compareList(newList, oldList)).length ?
            ("NEW ids: " + a.join(" | ")) :
            ("No NEW item.");
    
        r[1] = (a=compareList(oldList, newList)).length ?
            ("REMOVED ids: " + a.join(" | ")) :
            ("No REMOVED item.");
    
        alert( r.join("\r") );
    }
    
    // -------------------------------------
    // MAIN
    // -------------------------------------
    
    var doc = app.activeDocument,
        s = doc.label,
        // ---
        oldList = s && (new Function('return '+s)()),
        newList = createList(doc.allPageItems);
    
    if( oldList ) showReport(oldList,newList);
    
    doc.label = newList.toSource();
    alert( "Data properly saved." );
    

    @+

    Marc

  • Run the Script on the Open Document event

    OK so I know about the spectacle of afterOpen and I think I understand how to use it, however, I do not understand how to open to a specific document.

    I don't want this script runs on all the documents that I opened, I would like to incorporate into a document and then run it whenever I open this document. Is this possible?

    Maybe run the script in the script label?

    Or I just put a script in the start Panel, and then create a session script that checks the name of each document open and then runs the script, if I have a match?

    Thank you

    As you chart put it in the startup scripts folder

    //startup script
    #targetengine "session"
    main();
    function main(){
        var myEventListener = app.eventListeners.add("afterOpen", excuteScriptLabel);
    }
    
    function excuteScriptLabel(myEvent){
              //The parent of the event is the document.
              var myDocument = myEvent.parent;
        if (myDocument.constructor.name == "Document") {
            if (myDocument.label != "")
                app.doScript(myDocument.label, ScriptLanguage.javascript);
        }
    }
    

    Then try this line on a document and save it, and then open the same file and a few others, you will notice that this code only run on this document:

    app.activeDocument.label = "alert (\"Yes\");";
    
  • Change the text in a text box with Script

    Hello

    I have a text box that lists the word 'English' that identifies the manual in English on the title page. I have copy and translate this manual. On the translated manuals, I want to change that "English" in the word "Spanish" or "Japanese" by using a script. What would be the right way to do it? I could do a search and replace only targeted the first page or is it possible to give a text a box identifying unique to call in the code? Should I 'script labels?

    Hello

    The label property depends on whether you're using CS5 or upward.

    CS4 and earlier versions, just use the script label.

    Select the image with the Selection tool and write the name in the Script label palette.

    CS5 and until you need to select the text block, open the layers palette, find the text block, you want to quote, you will see an indication of color, then you must click on the label of on this palette and give it the desired label.

    in any case, the code to use is, if you call your frame in the form "a":

    myFrame = app.activeDocument.textFrames.itemByName ("a");

    hope this helps

    See you soon,.

    Eli

  • InDesign closes at the launch

    Hello

    Trying out InDesign, but after installing creative application of cloud and the InDesign application, I receive the following notification of the problem :

    Process: Adobe InDesign CC 2015 [929]

    Path: / Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Adobe InDesign 2015 CC CC CC

    ID: com.adobe.InDesign

    Version: 11.1.0.122 (11100)

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Responsible for: Adobe InDesign CC 2015 [929]

    User ID: 501

    Date/time: 2015-11-10 21:37:04.189 + 0100

    OS version: Mac OS X 10.11.1 (B 15, 42)

    Report Version: 11

    Anonymous UUID: 9BFAC6C6-C7A5-63DC-7C34-CEB0F70F8AF6

    Time since started awake: 2000 seconds

    Integrity of system protection: enabled

    Crashed thread: 0 dispatch queue: com.apple.main - wire

    Exception type: EXC_BAD_ACCESS (SIGSEGV)

    Exception codes: KERN_INVALID_ADDRESS at 0 x 0000000000000040

    Note the exception: EXC_CORPSE_NOTIFY

    VM regions near 0x40:

    ->

    0000000105 dec 000-0000000105df1000 [20 K] __TEXT r-x/rwx SM = COW/Applications/Adobe InDesign CC 2015 / Adobe InDesign CC 2015.app/Contents/MacOS/Adobe InDesign CC 2015

    Global tracking buffer (second chronological reverse):

    3.767193 CFNetwork 0x00007fff987ca163 TCP 0x7fdd05e361c0 SSL Handshake Conn MADE

    3.928577 SSL handshake at the start of CFNetwork 0x00007fff987ca03f TCP Conn 0x7fdd05e361c0

    3.928715 all 0x00007fff987c8a0f TCP Conn 0x7fdd05e361c0 CFNetwork. FD: 62, err: 0

    3.928947 event TCP Conn 0x7fdd05e361c0 CFNetwork 0x00007fff988571ad 1. Err: 0

    4.006147 CFNetwork TCP Conn 0x7fdd05e361c0 0x00007fff987c7cdf started

    9.165909 CFNetwork 0x00007fff987ca163 TCP 0x7fdcffd2cad0 SSL Handshake Conn MADE

    9.392573 CFNetwork 0x00007fff987ca163 TCP 0x7fdcffb69190 SSL Handshake Conn MADE

    Thread 0 crashed: Dispatch queue: com.apple.main - wire

    0 com.adobe.InDesign.Text Panel 0x0000000112b37d77 0x112b14000 + 146807

    1-com.adobe.InDesign.Text Panel 0x0000000112b465e7 0x112b14000 + 206311

    2 com.adobe.InDesign.AppFramework 0x000000011409037d 0 x 114029000 + 422781

    3 com.adobe.InDesign.AppFramework 0x000000011408fe23 0 x 114029000 + 421411

    4 com.adobe.InDesign.Application UI 0x00000001143d6613 0 x 114290000 + 1336851

    5 com.apple.AppKit 0x00007fff92f90d9a-[NSApplication run] + 796

    6 com.adobe.exo.framework 0x00000001088733b8 exo::app::OS_AppBase::RunEventLoop() + 56

    7 com.adobe.InDesign.AppFramework 0 x 0000000114177463 0 x 114029000 + 1369187

    8 com.adobe.InDesign.AppFramework 0x000000011417632c 0 x 114029000 + 1364780

    9 main 0x0000000105ded68d com.adobe.InDesign + 285

    10 libdyld.dylib 0x00007fff909605ad start + 1

    Thread 1:

    0 libsystem_kernel.dylib 0x00007fff8fd4078a __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ad58c _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff9a2ab375 start_wqthread + 13

    Thread 2: Dispatch queue: com.apple.libdispatch - Manager

    0 libsystem_kernel.dylib 0x00007fff8fd410a2 kevent_qos + 10

    1 libdispatch.dylib 0x00007fff8f9d611d _dispatch_mgr_invoke + 216

    2 libdispatch.dylib 0x00007fff8f9d5d85 _dispatch_mgr_thread + 52

    3 wire:

    0 libsystem_kernel.dylib 0x00007fff8fd4078a __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ad58c _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff9a2ab375 start_wqthread + 13

    Thread 4:

    0 libsystem_kernel.dylib 0x00007fff8fd4078a __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ad58c _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff9a2ab375 start_wqthread + 13

    Wire 5:

    0 libsystem_kernel.dylib 0x00007fff8fd4078a __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ad58c _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff9a2ab375 start_wqthread + 13

    Wire 6: com.apple.NSURLConnectionLoader

    0 libsystem_kernel.dylib 0x00007fff8fd3ac96 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8fd3a0d7 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff970e62b4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff970e577c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    5 com.apple.CFNetwork 0x00007fff9878ed6d + [NSURLConnection (Loader) _resourceLoadLoop:] + 412

    6 com.apple.Foundation 0x00007fff9be9bee4 __NSThread__start__ + 1351

    7 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff9a2ab385 thread_start + 13

    Slide 7: com.apple.CFSocket.private

    0 libsystem_kernel.dylib 0x00007fff8fd40222 __select + 10

    1 com.apple.CoreFoundation 0x00007fff971234aa __CFSocketManager + 762

    2 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    3 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    4 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 8:

    0 libsystem_kernel.dylib 0x00007fff8fd40162 __recvfrom + 10

    1 VulcanMessage5.dylib 0x000000010a909446 0x10a8e4000 + 152646

    2 VulcanMessage5.dylib 0x000000010a90787d 0x10a8e4000 + 145533

    3 VulcanMessage5.dylib 0x000000010a905ae0 0x10a8e4000 + 137952

    4 VulcanMessage5.dylib 0x000000010a905a26 0x10a8e4000 + 137766

    5 VulcanMessage5.dylib 0x000000010a8fe740 0x10a8e4000 + 108352

    6 VulcanMessage5.dylib 0x000000010a8febd0 0x10a8e4000 + 109520

    7 VulcanMessage5.dylib 0x000000010a8feb99 0x10a8e4000 + 109465

    8 VulcanMessage5.dylib 0x000000010a904712 0x10a8e4000 + 132882

    VulcanMessage5.dylib 9 0x000000010a904439 0x10a8e4000 + 132153

    10 VulcanMessage5.dylib 0x000000010a9040ba 0x10a8e4000 + 131258

    11 VulcanMessage5.dylib 0x000000010a90400d 0x10a8e4000 + 131085

    12 VulcanMessage5.dylib 0x000000010a8f1c02 0x10a8e4000 + 56322

    13 VulcanMessage5.dylib 0x000000010a8f267d 0x10a8e4000 + 59005

    14 VulcanMessage5.dylib 0x000000010a9052dc 0x10a8e4000 + 135900

    15 VulcanMessage5.dylib 0x000000010a908d19 0x10a8e4000 + 150809

    16 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    17 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    18 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Wire 9: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 10: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Wire 11: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    12 wire: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 13: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 14: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 15: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    16 wire: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 17:

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 com.adobe.InDesign.AppFramework 0 x 0000000114160791 0 x 114029000 + 1275793

    3 com.adobe.InDesign.AppFramework 0x000000011415fae8 0 x 114029000 + 1272552

    4 com.adobe.InDesign.AppFramework 0x000000011415d000 0 x 114029000 + 1261568

    5 com.adobe.InDesign.AppFramework 0 x 0000000114161642 0 x 114029000 + 1279554

    6 com.adobe.boost_threads.framework 0x00000001071e78d4 boost: thread::start_thread_noexcept() + 388

    7 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff9a2ab385 thread_start + 13

    18 wire:

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 com.adobe.InDesign.AppFramework 0 x 0000000114160791 0 x 114029000 + 1275793

    3 com.adobe.InDesign.AppFramework 0x000000011415fae8 0 x 114029000 + 1272552

    4 com.adobe.InDesign.AppFramework 0x000000011415d000 0 x 114029000 + 1261568

    5 com.adobe.InDesign.AppFramework 0 x 0000000114161642 0 x 114029000 + 1279554

    6 com.adobe.boost_threads.framework 0x00000001071e78d4 boost: thread::start_thread_noexcept() + 388

    7 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff9a2ab385 thread_start + 13

    Line 19:

    0 libsystem_kernel.dylib 0x00007fff8fd4078a __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ad58c _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff9a2ab375 start_wqthread + 13

    Line 20:

    0 libsystem_kernel.dylib 0x00007fff8fd402b2 __semwait_signal + 10

    1 libsystem_c.dylib 0x00007fff9ac67a75 nanosleep + 199

    2 com.adobe.InDesign.Support for JavaScript 0x000000011addb658 0x11ad81000 + 370264

    3 com.adobe.InDesign.Support for JavaScript 0x000000011adc0eac 0x11ad81000 + 261804

    4 com.adobe.InDesign.Support for JavaScript 0x000000011addb135 0x11ad81000 + 368949

    5 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 21:

    0 libsystem_kernel.dylib 0x00007fff8fd3ac96 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8fd3a0d7 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff970e62b4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff970e577c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff9bfa3879-[NSConnection runs] + 149

    6 com.apple.Foundation 0x00007fff9be9bee4 __NSThread__start__ + 1351

    7 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff9a2ab385 thread_start + 13

    Thread 22:

    0 libsystem_kernel.dylib 0x00007fff8fd3ac96 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8fd3a0d7 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff970e62b4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff970e577c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff9bf351b9-[NSConcreteTask waitUntilExit] + 205

    6 com.adobe.PlugPlugOwl 0x0000000108c67d12 0x108bbc000 + 703762

    7 com.apple.Foundation 0x00007fff9be9bee4 __NSThread__start__ + 1351

    8 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    libsystem_pthread.dylib 9 0x00007fff9a2ad92e _pthread_start + 168

    10 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 23:

    0 libsystem_kernel.dylib 0x00007fff8fd3acd2 semaphore_wait_trap + 10

    1 libsystem_platform.dylib 0x00007fff94132ce8 _os_semaphore_wait + 16

    2 libdispatch.dylib 0x00007fff8f9dea19 _dispatch_barrier_sync_f_slow + 594

    3 com.adobe.PlugPlugOwl 0x0000000108c50b8d 0x108bbc000 + 609165

    4 com.adobe.PlugPlugOwl 0x0000000108c54080 0x108bbc000 + 622720

    5 com.apple.CoreFoundation 0x00007fff970e2b5c __invoking___ + 140

    6 com.apple.CoreFoundation 0x00007fff970e29ee-[French invoke] + 286

    7 com.apple.CoreFoundation 0x00007fff970fde36-[French invokeWithTarget:] + 54

    8 com.apple.CoreFoundation 0x00007fff970e1472 ___forwarding___ + 514

    com.apple.CoreFoundation 0x00007fff970e11e8 9 _CF_forwarding_prep_0 + 120

    10 com.apple.CoreFoundation 0x00007fff970e2b5c __invoking___ + 140

    11 com.apple.CoreFoundation 0x00007fff970e29ee-[French invoke] + 286

    12 com.apple.Foundation 0x00007fff9bf5a646-[NSConnection dispatchInvocation:] + 138

    13 com.apple.Foundation 0x00007fff9bf59703-[NSConnection handleRequest:sequence:] + 1342

    14 com.apple.Foundation 0x00007fff9bf08af7-[NSConnection handlePortCoder:] + 661

    15 com.apple.Foundation 0x00007fff9bf08431-[NSConnection dispatchWithComponents:] + 53

    16 com.apple.Foundation 0x00007fff9bf07ee9 __NSFireMachPort + 254

    17 com.apple.CoreFoundation 0x00007fff970ee242 __CFMachPortPerform + 290

    18 com.apple.CoreFoundation 0x00007fff970ee109 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41

    19 com.apple.CoreFoundation 0x00007fff970ee079 __CFRunLoopDoSource1 + 473

    20 com.apple.CoreFoundation 0x00007fff970e5aab __CFRunLoopRun + 2171

    21 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    22 com.apple.Foundation 0x00007fff9bfa3879-[NSConnection runs] + 149

    23 com.apple.Foundation 0x00007fff9be9bee4 __NSThread__start__ + 1351

    24 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    25 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    26 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 24:

    0 libsystem_kernel.dylib 0x00007fff8fd3ac96 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8fd3a0d7 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff970e62b4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff970e577c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff9bf351b9-[NSConcreteTask waitUntilExit] + 205

    6 com.adobe.PlugPlugOwl 0x0000000108c67d12 0x108bbc000 + 703762

    7 com.apple.Foundation 0x00007fff9be9bee4 __NSThread__start__ + 1351

    8 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    libsystem_pthread.dylib 9 0x00007fff9a2ad92e _pthread_start + 168

    10 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 25: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 26: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 27: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 28: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 29: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 30: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 31: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 32: UxTech queue ThreadController

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 libtypekitC4Release.dylib 0x0000000108f1c6eb 0x108f18000 + 18155

    3 libtypekitC4Release.dylib 0x0000000108f72e6b 0x108f18000 + 372331

    4 libtypekitC4Release.dylib 0x0000000108f7132b 0x108f18000 + 365355

    5 libtypekitC4Release.dylib 0x0000000108f1a4a4 0x108f18000 + 9380

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 33: com.apple.NSEventThread

    0 libsystem_kernel.dylib 0x00007fff8fd3ac96 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff8fd3a0d7 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff970e62b4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff970e577c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff970e4fc8 CFRunLoopRunSpecific + 296

    5 com.apple.AppKit 0x00007fff930f2d49 _NSEventThread + 149

    6 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 34: Worker MPSupport

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 supported multiprocessor 0x000000012477594b 0x12472e000 + 293195

    3 supported multiprocessor 0x000000012477584b 0x12472e000 + 292939

    4 supported multiprocessor 0x0000000124795d84 0x12472e000 + 425348

    5 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 35: MPSupport worker

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 supported multiprocessor 0x000000012477594b 0x12472e000 + 293195

    3 supported multiprocessor 0x000000012477584b 0x12472e000 + 292939

    4 supported multiprocessor 0x0000000124795d84 0x12472e000 + 425348

    5 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Line 36: MPSupport worker

    0 libsystem_kernel.dylib 0x00007fff8fd3ff5e __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff9a2ae73d _pthread_cond_wait + 767

    2 supported multiprocessor 0x000000012477594b 0x12472e000 + 293195

    3 supported multiprocessor 0x000000012477584b 0x12472e000 + 292939

    4 supported multiprocessor 0x0000000124795d84 0x12472e000 + 425348

    5 libsystem_pthread.dylib 0x00007fff9a2ad9b1 _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff9a2ad92e _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff9a2ab385 thread_start + 13

    Thread 0 crashed with X 86 State of Thread (64-bit):

    Rax: 0 x 0000000000000000 rbx: 0x00007fdd04520eb0 rcx: 0 x 0000000000000010 rdx: 0 x 0000000000000001

    RDI: 0 x 0000000000000000 rsi: 0 x 0000000000000000 PBR: RER 0x00007fff59e132b0: 0x00007fff59e12fe0

    R8: 0 x 0000000000000043 r9: 0x00000000000000d0 r10: 0 x 0000000107696301 r11: 0x00000001072da0a0

    A12: 0 x 0000000000000001 r13: 0x00007fdd04520e70 r14: r15 x 0 0000000000000020: 0x00007fdd04520ea0

    RIP: 0x0000000112b37d77 rfl: 0 x 0000000000010206 cr2: 0 x 0000000000000040

    Logical CPU: 3

    Error code: 0 x 00000004

    Trap number: 14

    Binary images:

    0x105dec000 - 0x105df0ffe + com.adobe.InDesign (11.1.0.122 - 11100) < 902BE96D-62DD-3707-9C82-E6206BB08FA2 >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Adobe InDesign 2015 CC CC CC

    0x105df8000 - 0x105df8ff7 + com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) < FB61F9A6-DE48-3A5E-A074-B023C1686C20 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI CC

    0x105e03000 - 0x105e09fff + com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) < F988DF04-5A94-3960-81C2-217D3A0051D8 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit CC

    0x105e16000 - 0x105e20ffd + ASLSupportLib.dylib (0) < E212D47A-07C8-31E6-A790-413B0646F302 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/ASLSupportLib.dylib CC

    0x105e29000 - 0x105f1aff0 + DV_WidgetBinLib.dylib (0) < B41FCCEE-8FDA-38DC-A5BF-B883CCE4C0A8 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/DV_WidgetBinLib.dylib CC

    0 x 106047000 - 0x106087fff + TextPanelLib.dylib (0) < 4C541531-FC63-3EC5-B7AB-25C88726E634 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/TextPanelLib.dylib CC

    0x1060a5000 - 0x1061e8ff7 + WidgetBinLib.dylib (0) < A744EA8C-617E-3424-AE54-4A79B75D6303 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/WidgetBinLib.dylib CC

    0x1062a1000 - 0x10649dff7 + com.adobe.owl (AdobeOwl version 5.2.6 - 5.2.6) < DE167205-9D3F-3375-A6D0-A21C4017C43A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl CC

    0x1064e4000 - 0x10678dff7 + com.adobe.dvacore.framework (8.0.849323 - 8.0.849323.0) < 2479087F-3846-3894-83EF-C81D492637AC >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore CC

    0x10686a000 - 0x106ddefff + com.adobe.dvaui.framework (8.0.849323 - 8.0.849323.0) < F708CF07-D2AA-32FF-8950-CEA5DB72F84A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui CC

    0x1071e1000 - 0x1071e1ff7 + com.adobe.InDesign.InDesignModel (9.0 - 0) < A9C36234-F5A9-30E4-8C8F-6FAD52ED3FA3 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel CC

    0x1071e6000 - 0x1071f4ff7 + com.adobe.boost_threads.framework (8.0.849323 - 8.0.849323.0) < EBAAC8B1-42F3-3374-B2F4-3C5EEF8B81D6 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads CC

    0x10720a000 - 0x10720bff7 + com.adobe.boost_system.framework (8.0.849323 - 8.0.849323.0) < 87DE3714-5B63-36F8-9C80-A6D1708AD4FC >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system CC

    0 x 107215000 - 0x10721aff7 + com.adobe.boost_date_time.framework (8.0.849323 - 8.0.849323.0) < F009B658-6063-3989-A418-04C79A3C6F69 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time CC

    0 x 107228000 - 0x107229ffe + com.adobe.InDesign.Metadata database of filter (11.1.0.122 - 0) < E4128E3B-04B9-3A72-970B-ECEC5E678197 >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Required/Metadata filter CC CC database Filter.InDesignPlugin/Metadata database

    0x10722e000 - 0x10765bff1 + PublicLib.dylib (0) < B05BFBD4-3411-3258-A891-66BF3E717A7E >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/PublicLib.dylib CC

    0x1077a8000 - preference for the + com.adobe.InDesign.Global 0x1077a9ff6 (11.1.0.122 - 0) < 9F993B33-64F2-311A-A489-02183FB5C38F >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Required/Global Panel.InDesignPlugin CC CC / Global preferences preferences panel

    0x1077af000 - 0x1077b8ff7 + PMRuntime.dylib (0) < B473E542-1734-38D7-9ADA-EB0866E96E4B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/PMRuntime.dylib CC

    0x1077c4000 - 0x1077d5fff + com.adobe.AFL (AdobeAFL 2.0.0-2.0) < 1B09216A-5C5F-3A4B-9760-229422FDDCBA >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL CC

    0x1077ea000 - 0x107b0ffff + com.adobe.CoolType (AdobeCoolType 5.15.00.34494 - 5.15.00.34494) < 83E40C9D-DD09-3FEF-B984-AB834D72C32A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType CC

    0x107b5d000 - 0x107b7cfff + com.adobe.BIB (AdobeBIB 1.2.03.34494 - 1.2.03.34494) < 644F8DE0-3E61-374D-B17D-44ED3BD10D60 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB CC

    0x107b84000 - 0x107cd2ff7 + com.adobe.ACE (AdobeACE 2.20.02.34494 - 2.20.02.34494) < DCD064B8-A43A-3D41-B499-15E602F69CDA >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE CC

    0x107ce9000 - 0x1082cdfff + com.adobe.AGM (AdobeAGM 4.30.58.34962 - 4.30.58.34962) < 10A5539B-40A0-307C-8D0E-28727F8AEEA2 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM CC

    0 x 108370000 - 0x1083adff7 + com.adobe.ARE (AdobeARE 1.5.02.34494 - 1.5.02.34494) < 3623F0E2-8311-359D-98E8-7EB1A2FFF181 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE CC

    0x1083b8000 - 0x1083deff7 + com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) < 3318FE3E-8AB8-3821-A1FB-8A8D62C20303 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils CC

    0x1083eb000 - 0x1087a1ff7 + com.adobe.MPS (AdobeMPS 5.8.1.34958 - 5.8.1.34958) < 152A7EF8-AE53-3D07-B26A-6686307A5B7F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS CC

    0 x 108816000 - 0x10883cfff + com.adobe.dvaflashview.framework (8.0.849323 - 8.0.849323.0) < 212D72A3-4C74-3673-B69E-86CCFD98F363 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview CC

    0x10885f000 - 0x108863ff7 + com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) < B9447EE8-6F91-9E85-C163-96600BF70764 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape CC

    0x10886a000 - 0x10893cff7 + com.adobe.exo.framework (8.0.849323 - 8.0.849323.0) < A4B8D9ED-9B4D-36EA-BB7E-789F5ECB422E >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/exo.framework/Versions/A/exo CC

    0x108a06000 - 0x108ae8ff7 + com.adobe.dvaworkspace.framework (8.0.849323 - 8.0.849323.0) < 6F6D1518-04C8-3A4D-8B35-F84D8B6D32CA >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace CC

    0x108bbc000 - 0x108eb7ff7 + com.adobe.PlugPlugOwl (6.0.0.96 - 6.0.0.96) < 10483D94-E469-33E1-BEF1-FCB4561041C8 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl CC

    0x108f18000 - 0x109063ffe + libtypekitC4Release.dylib (0) < 67B27521-6200-3B13-91E6-791F99557488 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/libtypekitC4Release.dylib CC

    0 x 109080000 - 0x1090b0fef + libtbb.dylib (0) < D41FA1F0-4921-308A-93DF-4D16F8913472 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/libtbb.dylib CC

    0x1090ce000 - 0x1090f3fff + libtbbmalloc.dylib (0) < 60EF4F46-298B-38B6-A6CD-9B168072EAB7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/libtbbmalloc.dylib CC

    0x10911d000 - 0x109e62fff + com.adobe.ICUData (4.0 - 3.61) < B9864D01-126E-3C56-B04C-993F9890F6AD >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/ICUData.framework/Versions/4.0/ICUData CC

    0x109e7d000 - 0x109fb8fff + com.adobe.ICUInternationalization (4.0 - 3.61) < CEAE369B-B601-30D5-9563-6C2AB781AF27 >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/ICUInternatio a major CC CC

    0x10a012000 - 0x10a115ff7 + com.adobe.ICUUnicode (4.0 - 3.61) < CE487901-E84A-3E54-95AB-91F2EAF57F6A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/ICUUnicode CC

    0x10a154000 - 0x10a287fff + com.winsoft.wrservices (WRServices 10.1.0 - 10.1.0) < 682325C5-1214-39A8-9295-A67060FA2A8D >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices CC

    0x10a2e8000 - 0x10a3e9fff + com.adobe.amtlib (9.0.0.21 - 9.0.0.21) < BAE71CEB-B622-38DB-A0A2-796C0BEB4E03 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib CC

    0x10a3ff000 - 0x10a402fff + com.adobe.AdobeCrashReporter (7.1 - 7.1.4) < A33546D9-3E26-38A2-88FE-C7C46B4CD989 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter CC

    0x10a40f000 - 0x10a4d7ff7 + com.adobe.boost_regex.framework (8.0.849323 - 8.0.849323.0) < 63917B23-C82F-3B2A-BE24-20FB0B7BC928 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex CC

    0x10a54e000 - 0x10a5e4fff + com.adobe.adobe_caps (adobe_caps 9.0.0.5 - 9.0.0.5) < 71BDFB88-91D4-35B1-9860-82F31ACBDE38 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps CC

    0x10a5f7000 - 0x10a603ff7 + com.adobe.boost_signals.framework (8.0.849323 - 8.0.849323.0) < 10D19241-C273-3F9B-AC55-233D74206BF1 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals CC

    0x10a616000 - 0x10a75efff + com.adobe.AIDE (1.5.0 - 1.5.0.34817) < EAFBDCBF-240D-34E1-A69E-617601DC135A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AIDE.framework/Versions/A/AIDE CC

    0x10a7d5000 - 0x10a87eff7 + com.adobe.ICUConverter (4.0 - 3.61) < E20E390A-9BAF-3454-BA16-7B9CCD4CA8F0 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/ICUConverter CC

    0x10a8a4000 - 0x10a8d3fff + VulcanControl.dylib (5.1.0.58 - 5.1.0.58 copyright 2015, Adobe Systems Incorporated.) (All rights reserved). < D3BB8A45-3840-3374-8ECD-421F50448D9C >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/VulcanControl.dylib CC

    0x10a8e4000 - 0x10a92cff7 + VulcanMessage5.dylib (5.1.0.47 - 5.1.0.47 copyright 2015, Adobe Systems Incorporated.) (All rights reserved). < 68F20709-5A9C-3360-9517-A6AA2493CB47 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/VulcanMessage5.dylib CC

    0x10a943000 - 0x10a943fff com.apple.applescript.component /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript < 4597483F-8D9C-3635-A68A-27BB492E727C > (2.5 - 376)

    0x10a948000 - 0x10a9a0ffc + DataBaseLib.dylib (0) < 042BCEE6-62F6-3575-962B-D68096EBAE6B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/DataBaseLib.dylib CC

    0x10a9b6000 - 0x10aa13ff7 + ObjectModelLib.dylib (0) < DF3444CB-4A1B-32A6-88D0-3C02C9781AFB >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/ObjectModelLib.dylib CC

    0x10aa2e000 - 0x10aa52ff7 + com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.34320 - 3.8.0.34320) < 674F1792-D790-3E12-8C0F-85CAF9D848B1 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExp CC to

    0x10bff2000 - 0x10bff7ff7 + com.adobe.InDesign.Data user interface services (11.1.0.122 - 0) < 9262186D-E075-36C5-B827-A3016012FF27 >/Applications/Adobe InDesign CC 2015 / * / Data Services user interface

    0x10e552000 - 0x10e556fff libFontRegistryUI.dylib (155) < 02F5D2F2-988B-36E0-B909-09CEAF5890E2 > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc're / libFontRegistryUI.dylib

    0x10eb0b000 - 0x10eb4bff7 + com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 9.0.0.3 - 9.0.0.3) < 2F5B40E6-812C-34E0-A8AC-02F55D770D49 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificatio ns

    0x10f97e000 - 0x10f984ff4 + com.adobe.InDesign.Data services (11.1.0.122 - 0) < B07286D0-7F16-36E1-B3EC-1C51597828D1 >/Applications/Adobe InDesign CC 2015 / * / Data Services

    0x10f98a000 - 0x10f995ff0 + com.adobe.InDesign.DTTransform (11.1.0.122 - 0) < 907FE07B-72F1-34C5-BE6C-98A40BE44B71 >/Applications/Adobe InDesign CC 2015 / * / DTTransform

    0x10f99e000 - 0x10f9d4ff6 + com.adobe.InDesign.Dictionary dialogue editor (11.1.0.122 - 0) < BB3584D6-67B4-32F8-87A0-8596201B4629 >/Applications/Adobe InDesign CC 2015 / * / Dictionary Editor Dialog

    0x10f9f4000 - 0x10fa18fff + com.adobe.InDesign.LILO (11.1.0.122 - 0) < 9AC600D7-792C-387C-B665-310E31026CAA >/Applications/Adobe InDesign CC 2015 / * / LILO

    0x10fa26000 - 0x10fb0dfff + com.adobe.linguistic.LinguisticManager (version 9.0.0 - 21429) < 7C403E13-460B-3576-B7BB-E2A88287B15D >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic CC

    0x10fb2a000 - 0x10fd75ff4 + com.adobe.InDesign.EBookExport (11.1.0.122 - 0) < 1F0D38C9-BA85-3768-9679-7711F35D91DA >/Applications/Adobe InDesign CC 2015 / * / EBookExport

    0x10fda9000 - filter import 0x10fdf4ff7 + com.adobe.InDesign.Media (11.1.0.122 - 0) < 45761337-6CBA-3075-8850-1F3502DE1C0A >/Applications/Adobe InDesign CC 2015 / * / Media Import Filter

    0x10fe07000 - 0x10fe0fff4 + com.adobe.InDesign.PNG import Filter UI (11.1.0.122 - 0) < 7865D087-8235-3D93-A013-61E9AE4CD1A6 >/Applications/Adobe InDesign CC 2015 / * / PNG import filter UI

    0x10fe17000 - 0x10fe3bff4 + com.adobe.InDesign.Sangam preferences UI (11.1.0.122 - 0) < 64B3D31C-E307-368E-B47D-910DCF5E53D3 >/Applications/Adobe InDesign CC 2015 / * / Sangam UI preferences

    0x10fe4e000 - 0x10fec7ff7 + com.adobe.AdobeSangam (AdobeSangam 5.65.0.34575 - 5.65.0.34575) < A06D5A9E-FB78-38A7-B6F6-13511E389A31 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam CC

    0x10ff17000 - 0x110073ff6 + com.adobe.InDesign.SangamServicer - map (11.1.0.122 - 0) < 0ACC7F9F-2607-390B-912F-609F2399BC35 >/Applications/Adobe InDesign CC 2015 / * / SangamServicer-map

    0x1100a2000 - 0x1100b7ff3 + com.adobe.InDesign.SaveBack (11.1.0.122 - 0) < 7C2465DE-530E-3202-9A4E-BE948D735619 >/Applications/Adobe InDesign CC 2015 / * / SaveBack

    0x1100c5000 - 0x1100c7ffe + com.adobe.InDesign.SimpleTextImportFilter (11.1.0.122 - 0) < 1B37191F-E611-3CA8-87D5-BF3055CC6863 >/Applications/Adobe InDesign CC 2015 / * / SimpleTextImportFilter

    0x1100cd000 - 0x110158ff9 + com.adobe.InDesign.Tagged text attributes (11.1.0.122 - 0) < 2CC31F7B-D3B1-3E2D-8A1F-46D12E3377D4 >/Applications/Adobe InDesign CC 2015 / * / text attributes containing the tag

    0 x 110187000 - 0x110190ff6 + com.adobe.InDesign.Tagged text filters UI (11.1.0.122 - 0) < 746A9030-E937-3708-AB3D-B3A985FE9971 >/Applications/Adobe InDesign CC 2015 / * / filters text UI Tags

    0x11019a000 - 0x110237ff2 + com.adobe.InDesign.Tagged text filters (11.1.0.122 - 0) < 4EA48CA5-3F7F-3464-BD21-5F76FC2955D0 >/Applications/Adobe InDesign CC 2015 / * / filters of text containing the tag

    0x11024b000 - 0x110255ff3 + com.adobe.InDesign.Clipping path of dialogue (11.1.0.122 - 0) < B381B439-A3A5-3953-9D2B-14C95B686678 >/Applications/Adobe InDesign CC 2015 / * / clipping path dialog box

    0 x 110265000 - Management Interface of + 0x1102a4ff9 com.adobe.InDesign.Color (11.1.0.122 - 0) < 1313C8E8-AF93-39C2-8AA5-A5265EE4BF08 >/Applications/Adobe InDesign CC 2015 / * / color management Interface

    0x1102b3000 - 0x110327ffb + com.adobe.InDesign.Color picker Panel (11.1.0.122 - 0) < 12AC9E93-9EDB-3DB3-8A1B-EDE442187E61 >/Applications/Adobe InDesign CC 2015 / * / Color Picker Panel

    0x11034e000 - 0x11035bfff + com.adobe.InDesign.Digital edition user interface (11.0.0.1 - 0) < A52C79D2-C54B-38D7-93A4-366239066052 >/Applications/Adobe InDesign CC 2015 / * / Digital Editions UI

    0x11036d000 - 0x11037bfff + com.adobe.boost_filesystem.framework (8.0.849323 - 8.0.849323.0) < 3D20399B-8243-3387-99CA-8E923498B8C5 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem CC

    0 x 110388000 - 0x11059eff7 + com.adobe.InDesign.Digital publishing (11.0.0.34 - 0) < 8779741D-D230-3FE2-AAA8-B52B388EF59C >/Applications/Adobe InDesign CC 2015 / * / Digital Publishing

    0 x 110719000 - 0x110751fef + libcurl.4.dylib (7) < FA1D87DC-8CBC-3645-8ADA-D974B6EDED53 >/Applications/Adobe InDesign CC 2015/*/libcurl.4.dylib

    0x11075c000 - 0x1107d3ff0 + com.adobe.InDesign.DynamicDocumentsUI (11.1.0.122 - 0) < 7C453EAD-78C1-3BEC-B265-70B0FBC4502C >/Applications/Adobe InDesign CC 2015 / * / DynamicDocumentsUI

    0x1107f9000 - 0x110811ff7 + com.adobe.InDesign.EPS IU (11.1.0.122 - 0) < C6118E48-0C96-3A7D-BC5C-487E0853F9CC >/Applications/Adobe InDesign CC 2015 / * / EPS UI

    0 x 110821000 - 0x110829ff4 + com.adobe.InDesign.Generic style Editor (11.1.0.122 - 0) < 136BE8D8-1CF8-35F2-AEFA-5321F333BF36 >/Applications/Adobe InDesign CC 2015 / * / generic Style Editor

    0 x 110836000 - 0x110869ffb + com.adobe.InDesign.Gradient panel (11.1.0.122 - 0) < 9D54AD05-2367-360A-9056-0BC28BF2E138 >/Applications/Adobe InDesign CC 2015 / * / Gradient panel

    0x11087f000 - 0x110925ffb + com.adobe.InDesign.Graphic panels (11.1.0.122 - 0) < 7EB972D3-BCFC-3C17-9C20-6E396BE56984 >/Applications/Adobe InDesign CC 2015 / * / graphic panels

    0x11094e000 - 0x110954ff1 + com.adobe.InDesign.JPEG export UI (11.1.0.122 - 0) < F7343854-389F-3E7C-AB7F-199E85FF33C5 >/Applications/Adobe InDesign CC 2015 / * / JPEG Export UI

    0x11095c000 - 0x110973ff7 + com.adobe.InDesign.JPEG export (11.1.0.122 - 0) < 9C6D34A9-D859-3E9B-87D5-DC6D7CFC02BB >/Applications/Adobe InDesign CC 2015 / * / Export JPEG

    get an overview of the 0x1109ceff3 + com.adobe.InDesign.Output 0 x 110984000 - (11.1.0.122 - 0) < D7E7DA29-7BAD-36C0-B383-B923B2085D30 >/Applications/Adobe InDesign CC 2015 / * / output Preview

    0x1109e7000 - 0x1109fbff4 + com.adobe.InDesign.OutputMiscUI (11.1.0.122 - 0) < 3F570B59-D710-3AD7-A7C6-37EDB913D303 >/Applications/Adobe InDesign CC 2015 / * / OutputMiscUI

    0x110a0c000 - 0x110a82ffb + com.adobe.InDesign.PDF IU (11.1.0.122 - 0) < 0B5D8011-559B-3EF6-8E32-CB902E83FA1F >/Applications/Adobe InDesign CC 2015 / * / interface user PDF

    0x110aa5000 - 0x110bc3fff + com.adobe.AdobeXMPCore (adobe XMP Core 5,6 - c 67 - 79.157747) < E20FA9C9-CEFC-3D6F-A1F8-E6D6629151CE >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP CC

    0x110c09000 - 0x110c1cff8 + com.adobe.InDesign.Printer styles (11.1.0.122 - 0) < 7E079564-E9E3-3ABC-A58F-95B3715E30BD >/Applications/Adobe InDesign CC 2015 / * / Printer Styles

    0x110c2a000 - 0x110cfaffb + com.adobe.InDesign.PrintUI (11.1.0.122 - 0) < 4B14F044-0D2B-3E70-8340-DF75526045E0 >/Applications/Adobe InDesign CC 2015 / * / PrintUI

    0x110d24000 - 0x110d33ff8 + com.adobe.InDesign.PS import UI (11.1.0.122 - 0) < 33F2213D-54FD-3A6D-85DE-50F4E6D91232 >/Applications/Adobe InDesign CC 2015 / * / PS Import UI

    0x110d41000 - 0x110d62ffc + com.adobe.InDesign.Swatch the library panel (11.1.0.122 - 0) < 6BE96B7C-2191-3220-8F89-315082A74BC1 >/Applications/Adobe InDesign CC 2015 / * / Swatch Library panel

    0x110d70000 - 0x110e3fff5 + com.adobe.InDesign.Swatches panel (11.1.0.122 - 0) < BC869E6A-C547-3BE6-BBCF-916ABE214F16 >/Applications/Adobe InDesign CC 2015 / * / Swatches Panel

    0x110e76000 - 0x110f11ffb + com.adobe.InDesign.Transparency IU (11.1.0.122 - 0) < A651F6B0-0301-37FA-A677-EEBC7E0FAA92 >/Applications/Adobe InDesign CC 2015 / * / UI transparency

    0x110f43000 - 0x110f9eff9 + com.adobe.InDesign.Assignment IU (11.1.0.122 - 0) < 9C03C4E0-FB00-30AC-AD88-C3B42BE31496 >/Applications/Adobe InDesign CC 2015 / * / assignment UI

    0x110fbf000 - 0x110fdeff0 + com.adobe.InDesign.InCopy bridge UI (11.1.0.122 - 0) < B39498F0-4B14-36EA-A4AF-0351EAEDFD42 >/Applications/Adobe InDesign CC 2015 / * / InCopy Bridge UI

    0x110fea000 - 0x111022ffa + com.adobe.InDesign.InCopy bridge (11.1.0.122 - 0) < D6614C50-D753-36D4-A773-AB9ED00D515B >/Applications/Adobe InDesign CC 2015 / * / InCopy Bridge

    0 x 111032000 - 0x111039ff8 + com.adobe.InDesign.InCopyExport (11.1.0.122 - 0) < 390FA732-55AD-3F1B-9E08-B610E43D9940 >/Applications/Adobe InDesign CC 2015 / * / InCopyExport

    0 x 111042000 - 0x111047ffe + com.adobe.InDesign.InCopyExportUI (11.1.0.122 - 0) < BF7D6B89-1D11-3FDD-BE57-2B1BF199BB09 >/Applications/Adobe InDesign CC 2015 / * / InCopyExportUI

    0x11104e000 - 0x111054ff3 + com.adobe.InDesign.InCopyImport (11.1.0.122 - 0) < A0D42192-714D-32FE-9831-16B13985C322 >/Applications/Adobe InDesign CC 2015 / * / InCopyImport

    0x11105b000 - 0x111060ff1 + com.adobe.InDesign.InCopyWorkflow IU (11.1.0.122 - 0) < D0BC0F3B-257F-3D37-8B0B-18E5C2903696 >/Applications/Adobe InDesign CC 2015 / * / InCopyWorkflow UI

    0 x 111069000 - 0x1110baff6 + com.adobe.InDesign.Note (11.1.0.122 - 0) < 65FB7DBE-8B2F-3DDC-8535-2340558FC9DB >/Applications/Adobe InDesign CC 2015 / * / Note

    0x1110d9000 - 0x1110e1ff5 + com.adobe.InDesign.NotePref (11.1.0.122 - 0) < 46FAA1C2-256B-39F5-A60E-2B6B8EAF898C >/Applications/Adobe InDesign CC 2015 / * / NotePref

    0x1110ee000 - 0x1110f1ffe + com.adobe.InDesign.Username IU (11.1.0.122 - 0) < 3EB2CFF1-8B7E-344D-91EB-DF69AA730AF3 >/Applications/Adobe InDesign CC 2015 / * / username user interface

    0x1110f9000 - 0x111186ff3 + com.adobe.InDesign.ButtonUI (11.1.0.122 - 0) < DECF1FF1-A1CE-30F4-BC8D-B1002FA9E6A4 >/Applications/Adobe InDesign CC 2015 / * / ButtonUI

    0x1111b4000 - 0x1111d7ffa + com.adobe.InDesign.MediaUI (11.1.0.122 - 0) < 8704E7E5-45C5-3723-B70D-6708B2CB6797 >/Applications/Adobe InDesign CC 2015 / * / MediaUI

    0x1111eb000 - 0x1111f7ff1 + com.adobe.InDesign.Alignment panel (11.1.0.122 - 0) < A05B7FAB-03B0-3A98-BF3F-6E5E0C5C5880 >/Applications/Adobe InDesign CC 2015 / * / Panel alignment

    0x1111ff000 - 0x111246ff8 + com.adobe.InDesign.Asset the library panel (11.1.0.122 - 0) < A0D4BD54-9539-32A0-AEF8-B004A84DF262 >/Applications/Adobe InDesign CC 2015 / * / Panel library Asset

    0x11126b000 - 0x1112ccffc + com.adobe.InDesign.Asset PubLibrary (11.1.0.122 - 0) < 0DEEAF3B-BD4C-36E1-ADAA-AA80DBFC3916 >/Applications/Adobe InDesign CC 2015 / * / Asset PubLibrary

    0x1112ea000 - 0x111331ff8 + com.adobe.InDesign.Book panel (11.1.0.122 - 0) < 8DAC1E54-638B-3232-A32C-1E975F9ED1F1 >/Applications/Adobe InDesign CC 2015 / * / book panel

    0 x 111353000 - 0x11136afff + com.adobe.InDesign.Bookmark panel (11.1.0.122 - 0) < 84E74197-C4DE-3A8D-B89C-7676185EEA62 >/Applications/Adobe InDesign CC 2015 / * / favorite Panel

    0x11137f000 - tool of + com.adobe.InDesign.ContentDropper 0x1113aeff3 (11.1.0.122 - 0) < 962F5511-CB0F-39C6-BD24-A32658B4EF56 >/Applications/Adobe InDesign CC 2015 / * / ContentDropper tool

    0x1113cc000 - 0x111405ff7 + com.adobe.InDesign.Control panel (11.1.0.122 - 0) < 50FD32C6-D906-3C51-A7F2-357CECE3DB86 >/Applications/Adobe InDesign CC 2015 / * / Control Panel

    0 x 111420000 - 0x111428ffb + com.adobe.InDesign.Create guides dialogue (11.1.0.122 - 0) < 1E5AF1C1-3312-3F07-AE9E-20957A030BF8 >/Applications/Adobe InDesign CC 2015 / * Create Guides dialogue

    0 x 111431000 - tool of + com.adobe.InDesign.Eyedropper 0x1114b6fff (11.1.0.122 - 0) < 47A1A146-60ED-3B79-B656-C9CBFBBFE857 >/Applications/Adobe InDesign CC 2015 / * / of the eyedropper tool

    0x1114da000 - 0x111577ff0 + com.adobe.InDesign.Hyperlinks panel (11.1.0.122 - 0) < ADABB85D-3E7A-354F-9FAE-BA0FB30A519A >/Applications/Adobe InDesign CC 2015 / * / hyperlinks

    0x1115a0000 - 0x111627ff4 + com.adobe.InDesign.Index panel (11.1.0.122 - 0) < 16B5C862-FF98-350A-B1FC-0868FC1A2ACE >/Applications/Adobe InDesign CC 2015 / * / Index panel

    0 x 111645000 - 0x111651ff7 com.apple.carbonframeworktemplate (1.0 - 1.0) < 6F5D8218-7BB8-378F-A9EA-EF46B665DC63 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/unihan.framework/Versions/A/unihan CC

    0x11165c000 - 0x1116b8fff + com.adobe.InDesign.Info panel (11.1.0.122 - 0) < 05615051-8FCE-304B-808E-94E705E6D4E0 >/Applications/Adobe InDesign CC 2015 / * / information panel

    0x1116cf000 - base of + 0x11177cffc com.adobe.InDesign.Knowledge (11.1.0.122 - 0) < 23D0A82F-3FFF-3414-9504-0F21E2510805 >/Applications/Adobe InDesign CC 2015 / * / Knowledge Base

    0 x 111786000 - 0x1117cfff0 + com.adobe.InDesign.Layers panel (11.1.0.122 - 0) < 94BBEE02-953F-3D34-9506-DD06417BF6BB >/Applications/Adobe InDesign CC 2015 / * / layers panel

    0x1117ef000 - setting Panel for the + com.adobe.InDesign.Layout 0x1117f1ffa (11.1.0.122 - 0) < 652F7EDE-CD52-3543-808D-E7A87FBD11C7 >/Applications/Adobe InDesign CC 2015 / * / adjustment of layout Panel

    0x1117f9000 - 0x111814ffc + com.adobe.InDesign.Layout adjustment (11.1.0.122 - 0) < E59F1011-B274-3F6E-94EC-6095A5895BB0 >/Applications/Adobe InDesign CC 2015 / * / the page layout setting

    0 x 111822000 - 0x111867ff4 + com.adobe.InDesign.Links IU (11.1.0.122 - 0) < 8F11F04C-D588-3F64-9D95-4BD62C693646 >/Applications/Adobe InDesign CC 2015 / * / UI links

    0 x 111887000 - 0x111920ff2 + com.adobe.InDesign.ObjectStylesUI (11.1.0.122 - 0) < FD9605C8-A203-3E51-8B7C-810735C06132 >/Applications/Adobe InDesign CC 2015 / * / ObjectStylesUI

    0x11194e000 - 0x111973ff4 configuration dialog box + com.adobe.InDesign.Page (11.1.0.122 - 0) < 1EE15992-D013-3996-94AD-4F9E2C7C1086 >/Applications/Adobe InDesign CC 2015 / * / Page-Layout dialog box

    0x11197f000 - 0x111a3bffa + com.adobe.InDesign.Pages panel (11.1.0.122 - 0) < 4143A584-F1C4-39A5-AA42-943175E1AB83 >/Applications/Adobe InDesign CC 2015 / * / Pages panel

    0x111a6b000 - 0x111a76ff6 + com.adobe.InDesign.Sections IU (11.1.0.122 - 0) < 67C7435A-B124-3C7B-A552-7072CA0A7E1A >/Applications/Adobe InDesign CC 2015 / * / Sections UI

    0x111a7f000 - 0x111a87ffc + com.adobe.InDesign.StepRepeat (11.1.0.122 - 0) < 79C88226-E5CF-38F3-AF2E-8C7B89782964 >/Applications/Adobe InDesign CC 2015 / * / StepRepeat

    0x111a91000 - 0x111acaff3 + com.adobe.InDesign.Text wrap Panel (11.1.0.122 - 0) < D25B6D20-48B7-306B-B224-AB9E22BC0605 >/Applications/Adobe InDesign CC 2015 / * / panel text wrapping

    0x111ae1000 - 0x111b1dffe + com.adobe.InDesign.TOC IU of dialogue (11.1.0.122 - 0) < E7B6CC83-4444-3EEF-ADA0-D3F630EEF5D5 >/Applications/Adobe InDesign CC 2015 / * / TOC UI Dialog

    0x111b35000 - 0x111b6affe + com.adobe.InDesign.Transform panel (11.1.0.122 - 0) < F205DC10-F310-3EA9-8F0D-751D689B8674 >/Applications/Adobe InDesign CC 2015 / * / transform Panel

    0x111b7e000 - 0x111b95ffc + com.adobe.InDesign.Image import UI (11.1.0.122 - 0) < E57309FF-8E12-36F8-9A6F-CDF8671D8F75 >/Applications/Adobe InDesign CC 2015 / * / Image Import UI

    0x111ba6000 - 0x111bb8ffa + com.adobe.InDesign.Scotch rules (11.1.0.122 - 0) < 5955BAC7-39E3-31D7-9B03-051BB3316C73 >/Applications/Adobe InDesign CC 2015 / * / rules of Scotch

    0x111bc3000 - 0x111c1dffe + com.adobe.InDesign.BNUI (11.1.0.122 - 0) < E35106D8-2908-37E9-A84C-6E4AE596B519 >/Applications/Adobe InDesign CC 2015 / * / BNUI

    0x111c3b000 - 0x111cddff0 + com.adobe.InDesign.DataMerge (11.1.0.122 - 0) < B930A604-F0B0-3EEF-A9E4-86C9D0F9F8AB >/Applications/Adobe InDesign CC 2015 / * / DataMerge

    0x111cfd000 - 0x111d2dff1 + com.adobe.InDesign.DataMergeUI (11.1.0.122 - 0) < A7EAE645-C379-3487-8600-C9E866686808 >/Applications/Adobe InDesign CC 2015 / * / DataMergeUI

    0x111d47000 - 0x111e3fffb + com.adobe.InDesign.Package and UI controls upstream (11.1.0.122 - 0) < EC7FAB88-1C8C-310F-BC35-1E974CE3364D >/Applications/Adobe InDesign CC 2015 / * / UI package and preflight

    0x111e7e000 - 0x1120bdffd + com.adobe.InDesign.Package and preflight (11.1.0.122 - 0) < 67C50987-E8FF-34B3-9AA5-E8125389F64C >/Applications/Adobe InDesign CC 2015 / * / Package and control upstream

    0 x 112101000 - 0x1121d1ffe + com.adobe.InDesign.JBX (11.1.0.122 - 0) < EB17A9BE-A4B7-33FE-B77B-CE4E93CFCCC6 >/Applications/Adobe InDesign CC 2015 / * / "JBX"

    0x1121fb000 - 0x112215ffb + com.adobe.InDesign.SavebackService (10.0.0 - 0) < 4D2E9D2D-30CC-397C-8D87-5AA8DBA7150B >/Applications/Adobe InDesign CC 2015 / * / SavebackService

    0 x 112223000 - 0x112227ff2 + com.adobe.InDesign.Script label Panel (11.1.0.122 - 0) < 12860D29-31C9-38C3-B035-A5A02B24F757 >/Applications/Adobe InDesign CC 2015 / * / Script label

    0 x 112231000 - 0x11223cff0 + com.adobe.InDesign.Scripts panel (11.1.0.122 - 0) < CEC32465-A5F0-369B-9AB6-ACD7C545E72F >/Applications/Adobe InDesign CC 2015 / * / Scripts Panel

    0x11224a000 - 0x112285ff4 + com.adobe.InDesign.SettingsInCloud (11.1.0.122 - 0) < 7CCCC3FE-72B2-3089-951E-899AF27CC122 >/Applications/Adobe InDesign CC 2015 / * / SettingsInCloud

    0 x 112298000 - 0x112382ffc + com.adobe.InDesign.Tables IU (11.1.0.122 - 0) < FD24D99E-21AA-3AA4-87FF-DCF64EF6527D >/Applications/Adobe InDesign CC 2015 / * / table UI

    0x1123b2000 - 0x11244dffc + com.adobe.InDesign.TableStylesUI (11.1.0.122 - 0) < 9D129556-4DDC-302A-A8E8-4B50A972FF27 >/Applications/Adobe InDesign CC 2015 / * / TableStylesUI

    0 x 112478000 - 0x1124f6ffc + com.adobe.InDesign.Character panel (11.1.0.122 - 0) < FEF40E3B-A765-33A9-A9E3-7BB4B3139848 >/Applications/Adobe InDesign CC 2015 / * / Character Panel

    0x11253b000 - 0x112567ff4 + com.adobe.InDesign.Conditional text UI (11.1.0.122 - 0) < 067148F0-A550-3721-AF77-A1F3909FDC58 >/Applications/Adobe InDesign CC 2015 / * / conditional text UI

    0 x 112581000 - 0x11259bff8 + com.adobe.InDesign.Create contours (11.1.0.122 - 0) < 37926E4F-71DE-3030-B7E7-70B355ACA1CA >/Applications/Adobe InDesign CC 2015 / * / vectorize

    0x1125a8000 - group of change and 0x1126b8ffa + com.adobe.InDesign.Find (11.1.0.122 - 0) < 0B8A815E-F073-3C9C-902E-73B1276C0F5F >/Applications/Adobe InDesign CC 2015 / * / find and change the Panel

    0x1126f4000 - 0x112718ffa + com.adobe.InDesign.Find change Format Panel (11.1.0.122 - 0) < 22340FDF-C98B-3348-B7BF-426E6266BBFD >/Applications/Adobe InDesign CC 2015 / * / Find Change Format Panel

    0x11272a000 - 0x112770ff4 + com.adobe.InDesign.Font use of dialogue (11.1.0.122 - 0) < 9C86C604-117E-30AF-8A4E-4D207AA73EB6 >/Applications/Adobe InDesign CC 2015 / * / use fonts of dialogue

    0 x 112787000 - 0x112829ff4 + com.adobe.InDesign.Glyphs panel (11.1.0.122 - 0) < 8523F27E-D153-350D-B3F1-135BF6AB1C30 >/Applications/Adobe InDesign CC 2015 / * / glyph Panel

    0x11284b000 - 0x112852ff4 + com.adobe.InDesign.Hyphenation panel (11.1.0.122 - 0) < D04F3822-8BE1-36C9-8519-2BED01BB103F >/Applications/Adobe InDesign CC 2015 / * / Panel of hyphenation

    0x11285f000 - 0x11286fff0 + com.adobe.InDesign.Indents and tabs (11.1.0.122 - 0) < 6527CCE2-91DF-3A21-9B45-560E50B7D49E >/Applications/Adobe InDesign CC 2015 / * / tabs and withdrawals

    0x11287d000 - 0x112883ff1 + com.adobe.InDesign.Justification panel (11.1.0.122 - 0) < 39141624-236D-3D47-93A5-909AA5F485C0 >/Applications/Adobe InDesign CC 2015 / * / Justification Panel

    0x11288d000 - 0x112892ffb + com.adobe.InDesign.Keeps panel (11.1.0.122 - 0) < D3586F8B-612B-3FB2-8CA2-448A34B51A38 >/Applications/Adobe InDesign CC 2015 / * / protection Panel

    0x11289a000 - 0x1128b7ff1 + com.adobe.InDesign.Optical kerning (11.1.0.122 - 0) < 6F03165A-0763-3183-A4A5-48ABD1988752 >/Applications/Adobe InDesign CC 2015 / * / optical kerning

    0x1128c3000 - 0x1128f8ffc + com.adobe.InDesign.Paragraph panel (11.1.0.122 - 0) < 3586E5A6-16D4-3749-B8C6-2443DBFB3F76 >/Applications/Adobe InDesign CC 2015 / * / paragraph Panel

    0x11290d000 - 0x11291cff3 + com.adobe.InDesign.Paragraph rules Panel (11.1.0.122 - 0) < 6BDCF9F6-2C7F-31F8-8565-8F5825C348C5 >/Applications/Adobe InDesign CC 2015 / * / paragraph rules Panel

    0 x 112925000 - 0x112938ff8 + com.adobe.InDesign.Path type UI (11.1.0.122 - 0) < 787841B4-A27C-3302-A127-9AC35CDA3C8C >/Applications/Adobe InDesign CC 2015 / * / path Type UI

    0 x 112947000 - 0x11294fffb + PathTypeLib.dylib (0) < 02ABE533-5966-3126-8F57-07C8D9A9BFE4 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/PathTypeLib.dylib CC

    0 112957000 - 0x11297eff9 + com.adobe.InDesign.RunIn x styles Panel (11.1.0.122 - 0) < 28DECD76-7FD2-3C9C-A905-FA77465F7AE1 >/Applications/Adobe InDesign CC 2015 / * / RunIn Styles Panel

    0x11298f000 - 0x11299dff1 + com.adobe.InDesign.SING (11.1.0.122 - 0) < B545D101-19A9-3E22-875E-0AE017BE0E75 >/Applications/Adobe InDesign CC 2015 / * / SING

    0x1129a6000 - 0x1129adffe + com.adobe.InDesign.Span Panel columns (11.1.0.122 - 0) < F50860E0-A04B-30A9-BFBE-9E2AFEA96654 >/Applications/Adobe InDesign CC 2015 / * / Span columns Panel

    0x1129b5000 - 0x1129fcff4 + com.adobe.InDesign.Spelling panel (11.1.0.122 - 0) < EED23847-F017-3DB0-8672-AE9D40007CB6 >/Applications/Adobe InDesign CC 2015 / * / spelling Panel

    0x112a15000 - 0x112a25ffd + com.adobe.InDesign.Story panel (11.1.0.122 - 0) < 221F257E-E3F2-3BAE-9744-32BF52693918 >/Applications/Adobe InDesign CC 2015 / * / history of Panel

    0x112a32000 - 0x112aa2ff1 + com.adobe.InDesign.Style panel (11.1.0.122 - 0) < 9049DA76-8EB0-3CE4-839F-8125216BA920 >/Applications/Adobe InDesign CC 2015 / * / Style Panel

    0x112aca000 - 0x112ad4ffa color Panel + com.adobe.InDesign.Text (11.1.0.122 - 0) < 4AD1728B-631C-34DC-9747-0CE5DE29B91A >/Applications/Adobe InDesign CC 2015 / * / text color Panel

    0x112adc000 - block Options of + com.adobe.InDesign.Text 0x112b04ff1 (11.1.0.122 - 0) < FC5142AA-3767-3D40-910C-5600785DD767 >/Applications/Adobe InDesign CC 2015 / * / block of text Options

    0x112b14000 - 0x112b69ff4 + com.adobe.InDesign.Text panel (11.1.0.122 - 0) < 11080421-EE50-3B29-9290-13CF5268BE63 >/Applications/Adobe InDesign CC 2015 / * / text panel

    0x112b8f000 - 0x112bacff7 + com.adobe.InDesign.Text preferences (11.1.0.122 - 0) < 67B124AD-CC4A-3982-AF89-C4AD3ADD80A8 >/Applications/Adobe InDesign CC 2015 / * / text preferences

    0x112bbb000 - 0x112bdaff0 + com.adobe.InDesign.Text sovereign (11.1.0.122 - 0) < 71D227E5-3DFF-3A57-8825-47730BEA669D >/Applications/Adobe InDesign CC 2015 / * / sovereign text

    0x112bea000 - 0x112c0dffb + com.adobe.InDesign.Text style Panel (11.1.0.122 - 0) < 455C168C-B3DB-34F1-A77F-FC914CA29A9E >/Applications/Adobe InDesign CC 2015 / * / Text Style Panel

    0x112c1d000 - 0x112c45fff + com.adobe.InDesign.Article panel (11.1.0.122 - 0) < 4FA081C4-249C-311F-BDAF-FB94D4058C1E >/Applications/Adobe InDesign CC 2015 / * / Article Panel

    0x112c5d000 - 0x112ccdffb + com.adobe.InDesign.CSXS (11.1.0.122 - 0) < 24EB291C-609A-3824-A78E-E2AC13B9C39F >/Applications/Adobe InDesign CC 2015 / * / CSXS

    0x112cf1000 - 0x112d23fff + com.adobe.InDesign.Galley preferences (11.1.0.122 - 0) < 81C71095-F9C2-3655-8C7B-CFD516CF373D >/Applications/Adobe InDesign CC 2015 / * / preferences of galley

    0x112d3c000 - 0x112d5affe + com.adobe.InDesign.GapTool (11.1.0.122 - 0) < 813FB85B-D79A-3509-AC8E-E2800C8068EB >/Applications/Adobe InDesign CC 2015 / * / GapTool

    0x112d68000 - preference for the + com.adobe.InDesign.General 0x112d71ff6 (11.1.0.122 - 0) < 4BBFD789-9B47-3453-BB5C-D8DE8A425508 >/Applications/Adobe InDesign CC 2015 / * / general preferences panel

    0x112d7b000 - 0x112d7dff2 + com.adobe.InDesign.Help (11.1.0.122 - 0) < 6C6D85B5-B6B4-373F-A4B9-FDF2A4DDC788 >/Applications/Adobe InDesign CC 2015 / * / help

    0x112d83000 - 0x112d96ff7 + com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) < 58BB943C-98EC-3812-AAAB-74F66630D1D4 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient CC

    0x112d9d000 - 0x112db4ff9 + com.adobe.InDesign.Performance IU (11.1.0.122 - 0) < FEAF52BD-B11A-37F5-81C6-E27810BD0491 >/Applications/Adobe InDesign CC 2015 / * / UI Performance

    0x112dc8000 - 0x112de8ff5 + com.adobe.InDesign.SharedContentUI (11.1.0.122 - 0) < DE68C4DC-7E26-356B-A327-2760B07B025A >/Applications/Adobe InDesign CC 2015 / * / SharedContentUI

    0x112df6000 - 0x112e16ffc + com.adobe.InDesign.Shortcut dialogue editor (11.1.0.122 - 0) < 76248687-C16F-38FA-A0C5-71727B65A45B >/Applications/Adobe InDesign CC 2015 / * / editor Shortcuts dialog box

    0x112e29000 - 0x112e45ff8 + com.adobe.InDesign.Tool box (11.1.0.122 - 0) < 2384625C-368A-355C-A317-098DC7E3E680 >/Applications/Adobe InDesign CC 2015 / * / tooling

    0x112e70000 - tips of 0x112e75ffe + com.adobe.InDesign.Tool (11.1.0.122 - 0) < A4359FFB-4F2C-303F-8EEF-2DF37AEFE8CA >/Applications/Adobe InDesign CC 2015 / * / tool tips

    0x112e7c000 - 0x112e83ff1 + com.adobe.InDesign.Track Exchange Preferences (11.1.0.122 - 0) < FD324128-30C2-3570-8498-B4C736601930 >/Applications/Adobe InDesign CC 2015 / * / Track Changes preferences

    0x112e8b000 - 0x112e9fffe + com.adobe.InDesign.Track change user interface (11.1.0.122 - 0) < A2425458-0FD4-3E80-B420-E6297DBD1D88 >/Applications/Adobe InDesign CC 2015 / * / track changes in the user interface

    0x112ea8000 - 0x112eb2ffe + com.adobe.InDesign.PerformanceMetrics (11.1.0.122 - 0) < 7B9B8827-5189-32CB-9983-D2191C2DA47C >/Applications/Adobe InDesign CC 2015 / * / PerformanceMetrics

    0x112ebc000 - 0x112ec6ffb + com.adobe.InDesign.Metadata IU (11.1.0.122 - 0) < 310AD19F-1E9A-3295-9038-E6CE53769FCD >/Applications/Adobe InDesign CC 2015 / * / Metadata UI

    0x112ed0000 - 0x113224ff7 + com.adobe.dvaadameve.framework (8.0.849323 - 8.0.849323.0) < 00A69021-0058-3F63-B1F8-D7E026940244 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve CC

    0 x 113762000 - 0x11382cff7 + com.adobe.dvametadata.framework (8.0.849323 - 8.0.849323.0) < 096B16F8-0DD8-385C-B43C-ECD2F0DF55B6 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvametadata.framework/Versions/A/dvametadata CC

    0 x 113883000 - 0x11398dff7 + com.adobe.dvametadataUI.framework (8.0.849323 - 8.0.849323.0) < 76DD817C-CE6D-3EB9-8CD4-147A47E2AE49 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvametadataUI.framework/Versions/A/dvametadataUI CC

    0x113a1d000 - 0x113b6fff7 + com.adobe.AdobeXMPFiles (adobe XMP files 5.6 f - 146 - 79.157747) < 05DAE5E2-BCF5-376D-900C-546BABAB1B8F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles CC

    0x113ba8000 - 0x113c6bff7 + com.adobe.dvaeve.framework (8.0.849323 - 8.0.849323.0) < CCD15677-19D7-30B3-97D8-2D7648729A54 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvaeve.framework/Versions/A/dvaeve CC

    0x113d19000 - 0x113d76fff + com.adobe.dvatemporalxmp.framework (8.0.849323 - 8.0.849323.0) < 47AA1FBB-0620-3422-B990-AE2F718E1E6A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvatemporalxmp.framework/Versions/A/dvatemporalxmp CC

    0x113d95000 - 0x113dcaff7 + com.adobe.dvamediatypes.framework (8.0.849323 - 8.0.849323.0) < 5720AA04-8020-31D5-9566-33B49AC6BAF0 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes CC

    0x113de3000 - 0x113deaff6 + com.adobe.InDesign.Workgroup IU (11.1.0.122 - 0) < 8C39529A-4571-3D96-8CCB-3297129B8472 >/Applications/Adobe InDesign CC 2015 / * / Workgroup UI

    0x113df2000 - 0x113e3cffd + com.adobe.InDesign.Snippet (11.1.0.122 - 0) < 2FF32DBE-7A8B-314B-A161-5F84BA339537 >/Applications/Adobe InDesign CC 2015 / * / extract

    0x113e55000 - 0x113f70ffa + com.adobe.InDesign.XMedia IU (11.1.0.122 - 0) < A1EF5B39-5BDC-3305-8F20-6D34B8950DF4 >/Applications/Adobe InDesign CC 2015 / * / XMedia UI

    0x113fb9000 - 0x11400eff1 + com.adobe.InDesign.Actions (11.1.0.122 - 0) < A001F377-1B40-3FC1-A505-38D9A110B7CD >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions CC

    0 x 114029000 - 0x1141f4ff6 + com.adobe.InDesign.AppFramework (11.1.0.122 - 0) < 5A5786DF-96BB-3C36-B533-1DEE05C26BD4 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework CC

    0 x 114290000 - 0x11448bfff + com.adobe.InDesign.Application IU (11.1.0.122 - 0) < 8510D60C-22A1-391F-87CB-DCC626ADCBB4 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Application UI. InDesignPlugin/Application UI

    0 x 114544000 - 0x1145d1ff7 + com.adobe.headlights.LogSessionFramework (7.2.1.3600) < F329BF2F-FD3D-342A-AA38-14922C6C21DC >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession CC

    0x1145f8000 - 0x1146a3ff7 + com.adobe.AdobeExtendScript (ExtendScript 4.5.6-4.5.6.1) < 79B05FB3-724B-3679-A9B7-E96511405E4F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript CC

    0x1146ca000 - 0x114765fff + com.adobe.AdobeScCore (ScCore 4.5.6-4.5.6.1) < B8F6ECB6-E6F8-3117-8CEF-BC00B5C924FE >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore CC

    0x11478e000 - 0x1147c3fff + AgoraLib.dylib (1.0.0.0) < 73697218-E690-371D-9728-7883DA2051A7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AgoraLib.dylib CC

    0x1147f6000 - 0x114945ff7 + com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) < 802BF0A8-A2C3-3D5F-80E3-2210DC54C809 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui CC

    0x114a6b000 - 0x114a8cff9 + com.adobe.InDesign.Article (11.1.0.122 - 0) < B6AE7DDF-A440-3B5F-B182-E89958FD5EEA >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Article.InDesignPlugin/Article CC

    0x114a9b000 - 0x114b2cff1 + com.adobe.InDesign.Assignments (11.1.0.122 - 0) < 4EF47322-79C3-39A7-ABED-085E0D29B1F7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments CC

    0x114b4d000 - 0x114b87fff + com.adobe.InDesign.AWS (11.1.0.122 - 0) < E00E6971-7C5B-3F81-BCA2-C2312B38AD98 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/AWS CC. InDesignPlugin/AWS

    0x114ba1000 - 0x114bc6ff7 + com.adobe.InDesign.AWSUI (11.1.0.122 - 0) < 63BCB3FF-6CE4-3CE2-BA1C-858E41B9F000 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/AWSUI CC. InDesignPlugin/AWSUI

    0x114bda000 - 0x114c0bff5 + com.adobe.InDesign.Basic tools (11.1.0.122 - 0) < 87BB800E-1E63-32F1-A710-F701A41BE919 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic tools

    0x114c25000 - 0x114c77ff6 + com.adobe.InDesign.Behavior (11.1.0.122 - 0) < 8FCC42D0-E6F3-33A1-9C56-E0674F052EBD >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior CC

    0x114c94000 - 0x114d26ff1 + com.adobe.InDesign.BNCore (11.1.0.122 - 0) < E65FD00C-AAB3-3710-B32E-D1A4DCB09DF0 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore CC

    0x114d44000 - 0x114da2ff6 + com.adobe.InDesign.Book (11.1.0.122 - 0) < 22884859-A9DB-3D3C-8529-F2CD7B3604AE >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Book.InDesignPlugin/Book CC

    0x114db9000 - 0x114dedffa + com.adobe.InDesign.CellStyles (11.1.0.122 - 0) < FAD5CC3B-4882-3919-8E86-E27E6F17A418 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/CellStyles.InDesignPlugin/CellStyles CC

    0x114e00000 - 0x114e76ff5 + com.adobe.InDesign.CJK text attributes (11.1.0.122 - 0) < CAC2FA42-E16D-30AC-897A-D9826118F228 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/CJK Attributes.InDesignPlugin/CJK text attributes of text

    0x114e99000 - 0x114f17ffa + com.adobe.InDesign.CJKGrid (11.1.0.122 - 0) < 3A96DF13-850A-31EA-87FE-2EA90131C6DB >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid CC

    0x114f33000 - management of + com.adobe.InDesign.Color 0x115012fff (11.1.0.122 - 0) < CF9489A9-B795-3549-ACAA-C97D0D289B5C >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management

    0x11503f000 - 0x1150a1ff7 + com.adobe.InDesign.CompFontMgr (11.1.0.122 - 0) < 137BCD06-3161-326D-9736-93C8B701D75A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr CC

    0x1150bb000 - 0x11510bff0 + com.adobe.InDesign.Conditional text (11.1.0.122 - 0) < DEDD64B1-D889-3EB3-87F0-FDE2CF48BE0D >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin CC CC / Conditional text

    0 x 115124000 - 0x115151ffe + com.adobe.InDesign.ContentDropper (11.1.0.122 - 0) < 1651A57B-49D6-32C2-9592-13BB7876343B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/ContentDropper.InDesignPlugin/ContentDropper CC

    0 x 115164000 - 0x115185ff0 + com.adobe.InDesign.Dialog layout (11.1.0.122 - 0) < EE17ADE6-ED7E-3082-9502-65FD5A45FFD8 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout

    0 x 115196000 - 0x1151b9ff8 + com.adobe.InDesign.Document shares (11.1.0.122 - 0) < FF6AC2B6-2E0B-3360-A41C-D030B4822243 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions

    0x1151c6000 - 0x115396ffa setting of + com.adobe.InDesign.Document (11.1.0.122 - 0) < B8DE33A3-26A5-3D65-A6E3-3F45D9463993 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document framework

    0x1153d6000 - 0x1153deff6 + com.adobe.InDesign.Document IU (11.1.0.122 - 0) < E5386234-9821-3637-A854-331A0A827FD1 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Document UI. InDesignPlugin/Document UI

    0x1153e6000 - 0x115427ff2 + com.adobe.InDesign.DV_Widgets (11.1.0.122 - 0) < 1F739BDD-077C-3F8F-A46F-7428ECAAD15C >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/DV_Widgets.InDesignPlugin/DV_Widgets CC

    0x11546e000 - 0x115783fff + com.adobe.InDesign.Dynamic documents (11.1.0.122 - 0) < 63397F44-E02E-3DC6-A4AC-AEBD2B31686A >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents

    0x1157cd000 - 0x1158c4fff + com.adobe.AGMFL (AdobeAGMFL 2.1.0.32362 - 2.1.0.32362) < C93FF155-AA80-34F1-A785-42BC0D8D3909 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL CC

    0x1158e1000 - 0x115abeff7 + com.adobe.AFlamingo (AFlamingo 2.4.402.31977 - 2.4.402.31977) < B90D5CA4-DA52-39A1-95DD-8011764655A1 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo CC

    0x115ae2000 - 0x115c02ffe + com.adobe.InDesign.EPS point page (11.1.0.122 - 0) < E7685111-652F-33CD-92DE-BE84B5536EB7 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC Page Item.InDesignPlugin/EPS Page 2015.app/Contents/MacOS/Required/EPS point

    0x115c42000 - Manager of + 0x115d4bff2 com.adobe.InDesign.Font (11.1.0.122 - 0) < 767C31E4-DDCA-3099-8EFE-68081EBE9CDE >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Required/Font Manager.InDesignPlugin CC CC / Font Manager

    0x115d6d000 - 0x115e34ff5 + com.adobe.InDesign.FormField (11.1.0.122 - 0) < 24F3127D-6B92-3A18-AE4D-D4E197F1E269 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField CC

    0x115e59000 - 0x115eb1ff4 + com.adobe.InDesign.Galley (11.1.0.122 - 0) < 8E7E2B93-E960-3E57-8C69-7D968FD8C096 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley CC

    0x115ec5000 - 0x116003ff6 + com.adobe.InDesign.GalleyUI (11.1.0.122 - 0) < 76F7C3EB-BA95-32EA-9A4D-39360D67ED37 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI CC

    0 x 116032000 - 0x11627eff4 + com.adobe.InDesign.Generic point page (11.1.0.122 - 0) < 9C94EF48-257E-3000-9E4E-221BA8681E8D >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page item

    0x1162c9000 - 0x1162d4ff5 + com.adobe.InDesign.GenericSettings (11.1.0.122 - 0) < E5C4D5B1-66EE-3DE1-A192-31F482F3ACC0 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings CC

    0x1162dd000 - 0x116340ff0 + com.adobe.InDesign.Gradient fill (11.1.0.122 - 0) < 849A76F5-4F47-34C8-88F3-7B0C4EDD3592 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill

    0x11635b000 - 0x116440ff8 + com.adobe.InDesign.Graphics (11.1.0.122 - 0) < A650F4DA-B157-39D3-ABA7-87B7470B4D07 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics CC

    0 x 116463000 - 0x11646effa + com.adobe.InDesign.Group (11.1.0.122 - 0) < C683334C-A69B-39F6-B91B-E1D9BE30AB7A >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Group.InDesignPlugin/Group CC

    0x11647a000 - 0x116498ff6 + com.adobe.InDesign.Guides (11.1.0.122 - 0) < 40EAEADE-6F58-3F43-8EAB-BA7828284AEF >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides CC

    0x1164a9000 - 0x116576ff2 + com.adobe.InDesign.HTMLPGT (11.1.0.122 - 0) < F50158CA-D0B3-3594-8290-14CFD29BEC43 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/HTMLPGT CC. InDesignPlugin/HTMLPGT

    0x1165d0000 - 0x1166c3ff8 + com.adobe.InDesign.Hyperlinks (11.1.0.122 - 0) < 238EC1AD-41C0-35A6-AC7A-7081486121A9 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks CC

    0x1166ed000 - 0x116739ffd + com.adobe.InDesign.Image filters (11.1.0.122 - 0) < D6FE8938-62A9-3DFC-9DEF-62659EE0C052 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image filters

    0 x 116746000 - 0x11683fff0 + com.adobe.InDesign.Image (11.1.0.122 - 0) < CF765B14-1D0D-3067-91C9-D5AE48298921 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Image.InDesignPlugin/Image CC

    0x11686b000 - 0x116880ff2 + com.adobe.InDesign.IME (11.1.0.122 - 0) < 0BFC7D5D-D4F2-34A7-BDF1-824BBFDB254B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/IME CC. InDesignPlugin/EMI

    0x11688f000 - 0x116933ff4 + com.adobe.InDesign.Import export UI (11.1.0.122 - 0) < 64D6E22C-FCDC-3710-AB14-24603F0F0476 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Import export UI. InDesignPlugin/Import Export UI

    0 x 116961000 - 0x116a52ff8 + com.adobe.InDesign.InCopyShared (11.1.0.122 - 0) < 122FF40E-ADA3-3AB7-B0F4-897D21FF9886 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared CC

    0x116a7d000 - 0x116a98ffc + com.adobe.InDesign.InCopySharedUI (11.1.0.122 - 0) < 848250DA-18C3-31F1-AB99-78CB5F549116 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI CC

    0x116aa7000 - 0x116b41ff6 + com.adobe.InDesign.InCopyWorkflow (11.1.0.122 - 0) < E3046740-DA7F-3972-AF0F-6DD3ED13C7A7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow CC

    0x116b66000 - 0x116c5aff1 + com.adobe.InDesign.Indexing (11.1.0.122 - 0) < 1D1C538F-15B4-3757-8762-5927F8FB3696 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing CC

    0x116c7b000 - 0x116d38ff8 + com.adobe.InDesign.INXCore (11.1.0.122 - 0) < 794FB216-117C-336D-A5CA-3FACD7D40030 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore CC

    0x116d60000 - 0x116d89ffc + com.adobe.InDesign.Layer (11.1.0.122 - 0) < 6D89057A-197C-3ED2-92FA-50476EEF0238 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer CC

    0x116d9c000 - 0x116fdaff2 + com.adobe.InDesign.Layout IU (11.1.0.122 - 0) < 14AC84C6-5883-3F59-96F6-D3A01DC02578 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Layout UI. InDesignPlugin/layout UI

    0 x 117049000 - 0x11706efff + com.adobe.InDesign.Layout (11.1.0.122 - 0) < B4A0B046-6D3B-3441-B31E-1825AC9D97FF >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout CC

    0x11707c000 - 0x1170c2ffc + com.adobe.InDesign.Linguistics (11.1.0.122 - 0) < 3150E99B-A630-34C7-BE37-D45D8A32CFA5 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics CC

    0x1170db000 - 0x117225ffa + com.adobe.InDesign.Links (11.1.0.122 - 0) < EF9499D2-E3A7-3B5F-80CD-A9C5F20BD2F8 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Links.InDesignPlugin/Links CC

    0 x 117261000 - 0x1172faff0 + com.adobe.InDesign.Master Page (11.1.0.122 - 0) < 0CDFA6F0-1A23-3C3E-B48A-CA5035E5648D >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page

    0 x 117314000 - 0x117364ff3 + com.adobe.InDesign.Media (11.1.0.122 - 0) < 77DA8414-D987-32D7-88D2-7BFF9225F071 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Media.InDesignPlugin/Media CC

    0 x 117379000 - 0x1173f7ff8 + com.adobe.InDesign.Metadata (11.1.0.122 - 0) < 41342207-1D8C-38EA-9D21-72D1B034CD94 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata CC

    0 x 117413000 - 0x117428ffc + com.adobe.InDesign.Movie (11.1.0.122 - 0) < C60CF123-0B78-3903-84AA-683A7C645F05 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie CC

    0 x 117437000 - 0x117477ffc + com.adobe.InDesign.Open place (11.1.0.122 - 0) < 38CD9059-90BE-3503-B604-13A9BE244009 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open space

    0x11748d000 - 0x117532ffd + com.adobe.InDesign.Paragraph composer (11.1.0.122 - 0) < CB7096DB-F029-3357-A178-34D8F1D42174 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph composer

    type of 0 x 117542000 - 0x11757dff4 + com.adobe.InDesign.Path (11.1.0.122 - 0) < 6D5B4EA1-3922-3F6B-A06D-4326F032B835 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type

    0 x 117596000 - 0x1177e1ff0 + com.adobe.InDesign.PDF (11.1.0.122 - 0) < 05EA5F4C-580D-3A26-926C-7F98440B684F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/PDF CC. InDesignPlugin/PDF

    0 x 117826000 - 0x1178dfff7 + com.adobe.JP2K (1.2.2 - 1.2.2.34491) < 574A97AF-0EA2-3FB9-BE6B-7E02C76EC6F2 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K CC

    0 x 117903000 - 0x117a08fff + com.adobe.PDFPort (AdobePDFPort 2.1.0.34494 - 2.1.0.34494) < B722768C-5135-32EC-9B39-1545486E4F78 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort CC

    0x117a1b000 - 0x117a43fff + com.adobe.PDFSettings (AdobePDFSettings 1.05.0 - 1.5) < B3E9E172-6207-3100-B476-D207FC103094 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings CC

    0x117a4c000 - filter import 0x117a89ff8 + com.adobe.InDesign.Photoshop (11.1.0.122 - 0) < 57E8936E-1556-3651-9A34-2914D3D2B6CB >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Photoshop Filter.InDesignPlugin/Photoshop import filter import

    0x117a9a000 - 0x119f7bf1f + com.adobe.psl (AdobePSL 15.1.0.34656 - 15.1.0.34656) < FB80F116-67E6-3D56-AE40-52E0961F5578 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL CC

    0x11a414000 - 0x11a418fff com.apple.agl (3.3.1 - AGL - 3.3.1) < E1C509A7-2409-3B45-9333-54DC8D74F1AC > /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0x11a420000 - 0x11a422ff7 com.apple.textencoding.unicode (3.0 - 3.0) < 30C2945A-34C2-3921-9BF6-7C88BF7F13B7 > system/library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode encodings

    0x11a648000 - filter import 0x11a680ff6 + com.adobe.InDesign.PNG (11.1.0.122 - 0) < BAD98EA2-EC03-322B-8EA0-ACF6DD8B74E6 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/PNG Filter.InDesignPlugin/PNG import filter import

    0x11a690000 - 0x11a805ff0 + com.adobe.InDesign.Print (11.1.0.122 - 0) < DDB88646-5EBE-3866-9E3B-25DEAF734AC7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Print.InDesignPlugin/Print CC

    0x11a832000 - 0x11a857ffe + com.adobe.InDesign.Rulers (11.1.0.122 - 0) < C598E21A-D373-307E-AB5D-CDBB17974A10 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers CC

    0x11a869000 - 0x11a8fdff8 + com.adobe.InDesign.Scripting (11.1.0.122 - 0) < F37ED324-CD8F-35A5-B5F5-A80A311C7E9F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting CC

    0x11a91e000 - 0x11a940ff8 + com.adobe.InDesign.Sections (11.1.0.122 - 0) < 49111487-C9E9-3729-B42E-CB7271A2835F >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections CC

    0x11a951000 - 0x11a9ccff8 + com.adobe.InDesign.SharedContent (11.1.0.122 - 0) < 536BA009-EB2B-33B8-833C-25EBC138E194 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent CC

    0x11a9eb000 - 0x11a9f7ffc + com.adobe.InDesign.Sound (11.1.0.122 - 0) < EED21E72-2A80-3612-A998-382216C8856D >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound CC

    0x11aa03000 - 0x11aa13ff3 + com.adobe.InDesign.Spelling Service (11.1.0.122 - 0) < C1A7BBA0-F5A3-3878-A695-C6DDBC9D141F >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service

    0x11aa21000 - 0x11aa64ff8 + com.adobe.InDesign.Spline IU (11.1.0.122 - 0) < DE53B1A6-D092-32AB-BF14-B1F31EB9D443 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Spline UI. InDesignPlugin/Spline UI

    0x11aa7f000 - 0x11aac3ffe + com.adobe.InDesign.Spline (11.1.0.122 - 0) < EC141ACA-E9BF-328A-B745-2DD2EBB5CDF9 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline CC

    0x11aadb000 - 0x11ab36ff8 + com.adobe.InDesign.Spread IU (11.1.0.122 - 0) < 8E41E6A6-C10F-3FA7-9076-5FAAD002872D >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Spread UI. InDesignPlugin/spread UI

    0x11ab50000 - 0x11ac7eff0 + com.adobe.InDesign.Spread (11.1.0.122 - 0) < 3B30B5B4-CB5A-3639-93D6-9DC8E408B29B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread CC

    0x11acaf000 - 0x11acffff2 + com.adobe.InDesign.Stroke and fill (11.1.0.122 - 0) < 07F393D9-8D66-327B-932D-85BB42F401C4 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Stroke CC and Fill.InDesignPlugin/Stroke and fill

    0x11ad16000 - 0x11ad6bff8 + com.adobe.InDesign.Support for AppleScript (11.1.0.122 - 0) < C35D6181-56A0-370B-B332-D62A915DE55F >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript

    0x11ad81000 - 0x11ae16ffe + com.adobe.InDesign.Support for JavaScript (11.1.0.122 - 0) < BEF11681-71DE-3A98-9E99-8FA97173D5D4 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript

    0x11ae3f000 - 0x11aebdfff + com.adobe.InDesign.SVGExport (11.1.0.122 - 0) < AF44724D-68EF-315F-9FFD-C4F3D82E36F6 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/SVGExport.InDesignPlugin/SVGExport CC

    0x11aed6000 - 0x11af94fff + com.adobe.SVGExport (AdobeSVGExport - 6.0 6.0) < 2FAB4B9A-EDB9-0FF9-55B2-52DEC380D2BF >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport CC

    0x11afb7000 - 0x11b1e9ffd + com.adobe.InDesign.Table model (11.1.0.122 - 0) < BC0582D4-A71A-305F-B77C-0DA0B5220CE0 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table model

    0x11b22c000 - 0x11b284ff0 + com.adobe.InDesign.TableStyles (11.1.0.122 - 0) < 17EC27FE-71E5-3914-A038-9B1F6E9DB78D >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles CC

    0x11b296000 - 0x11b2dcff0 + com.adobe.InDesign.Text attributes (11.1.0.122 - 0) < B9DCACA6-51CE-3346-934A-93D54F849587 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text attributes

    0x11b2f7000 - 0x11b30affb + com.adobe.InDesign.Text Model Editor (11.1.0.122 - 0) < E112C73E-86D4-3B78-AEB1-B32D9F52062D >/Applications/Adobe InDesign 2015/Adobe InDesign 2015.app/Contents/MacOS/Required/Text Model.InDesignPlugin/Text Editor CC CC Model Editor

    0x11b315000 - editor of + com.adobe.InDesign.Text 0x11b3e0ffd (11.1.0.122 - 0) < 8B0C2060-7FF0-3491-AF7E-B8AB60548523 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor

    0x11b40f000 - 0x11b5a2ff0 + com.adobe.InDesign.Text Walker (11.1.0.122 - 0) < 25C204A6-FE2A-39BE-B2B9-A38BB6C2A983 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker

    0x11b5f6000 - 0x11b615ff3 + com.adobe.InDesign.Text wrap Path (11.1.0.122 - 0) < DC3AC8B9-47A0-3F72-8E2D-879FC276AEED >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path

    0x11b61e000 - 0x11b688ffe + com.adobe.InDesign.Text wrap (11.1.0.122 - 0) < 9221662B-323F-39BA-AE57-9911281A9054 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap

    0x11b6a1000 - 0x11bc5effb + com.adobe.InDesign.Text (11.1.0.122 - 0) < 59331003-0330-31EB-88D1-8187E13352F4 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Text.InDesignPlugin/Text CC

    0x11bcff000 - 0x11bd5cffa + com.adobe.InDesign.TOC (11.1.0.122 - 0) < 59AD8DC9-DE13-3E5B-AF02-96B90B22DFE2 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/TOC CC. InDesignPlugin/table of contents

    0x11bd70000 - 0x11be9effa + com.adobe.InDesign.Transparency (11.1.0.122 - 0) < 9F91542B-DAC8-331E-BB69-271FAACD050C >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency CC

    0x11bec8000 - 0x11bee9ff4 + com.adobe.InDesign.Utilities (11.1.0.122 - 0) < 9D5CFD13-9C78-36DB-937B-E5EA32C1EDAA >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities CC

    0x11bf03000 - 0x11bfeaff1 + com.adobe.InDesign.Widgets (11.1.0.122 - 0) < 04F57602-3D56-3F3E-98BA-C1BF4B533B12 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets CC

    0x11c060000 - 0x11c068ff0 + com.adobe.InDesign.Workgroup customer UI (11.1.0.122 - 0) < 3485211D-31C0-3E0F-9577-FE940F0E45E3 >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Workgroup the Client user interface. Interface user customer InDesignPlugin/working group

    0x11c06e000 - 0x11c08cfff + com.adobe.InDesign.Workgroup client (11.1.0.122 - 0) < 89217833-BB02-341C-96D9-B5372F82D1EA >/Applications/Adobe InDesign CC 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client

    0x11c09a000 - 0x11c0d0ff8 + com.adobe.InDesign.Workgroup (11.1.0.122 - 0) < 5B95A55C-241B-3720-9FBF-211D4F85E525 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup CC

    0x11c0df000 - 0x11c106ffe + com.adobe.InDesign.WorldReady (11.1.0.122 - 0) < 2EF2D33B-7B65-39BD-8155-18297E36DF25 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady CC

    0x11c116000 - 0x11c31dff9 + com.adobe.InDesign.XML (11.1.0.122 - 0) < 79CA345B-4B98-3F1D-9751-FF3FB9467C2E >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/XML CC. InDesignPlugin/XML

    0x11c366000 - 0x11c462fff + com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.34320 - 3.8.0.34320) < AFDCC2CF-EF73-323E-A2FA-3034F26F97B9 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore CC

    0x11c477000 - 0x11c4d0ffa + com.adobe.InDesign.XMLParser (11.1.0.122 - 0) < 320E2802-D3F6-3DD9-AC02-D0081F9EB966 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser CC

    0x11c4e5000 - 0x11c5c1fff + com.adobe.AXEXSLT (AdobeAXSLE 3.8.0.34320 - 3.8.0.34320) < DB2B9E7A-210B-3981-BBD7-2CE7B5827CC8 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE CC

    0x11ce2b000 - 0x11ce2bfe7 + cl_kernels (?) < 87C6D035-AC08-4A2E-915A-410769C44EB9 > cl_kernels

    0x11d104000 - 0x11d131ff7 + com.adobe.Reader for DOCX (Reader for DOCX 5.65.0.34575 - 5.65.0.34575) < 4E2D3BF8-093E-366A-AA6B-712D619F56DF >/Applications/Adobe InDesign CC 2015 / * / player for DOCX

    0x11d13c000 - 0x11d1a7ff7 + com.adobe.AdobeSangamML (AdobeSangamML 5.65.0.34575 - 5.65.0.34575) < 5B4E44CA-7953-37FF-B884-81C2E6F91C5B >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML CC

    0x11d1cb000 - 0x11d228ff7 + com.adobe.Reader for Excel (Reader for Excel 5.65.0.34575 - 5.65.0.34575) < B029F765-C8CC-309B-91AA-3F1A64A5CEDF >/Applications/Adobe InDesign CC 2015 / * / Reader for Excel

    0x11d23b000 - 0x11d24fff7 + com.adobe.AdobeSFL (AdobeSFL 1.1.0.33621 - 1.1.0.33621) < 4C5F9909-758F-36AF-B72C-29BE5770D9F7 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL CC

    0x11d257000 - 0x11d349ff7 + com.adobe.Reader for Quark (Reader for Quark 5.65.0.34575 - 5.65.0.34575) < 9C0D973E-9B87-30D6-9633-B21683334B1B >/Applications/Adobe InDesign CC 2015 / * / player for Quark

    0x11d362000 - 0x11d3bdff7 + com.adobe.Reader for RTF (RTF 5.65.0.34575 Player - 5.65.0.34575) < D64BE815-E575-3A39-92D2-14EF36774BE7 >/Applications/Adobe InDesign CC 2015 / * / player for RTF

    0x11d3d6000 - 0x11d443ff7 + com.adobe.Reader for Word (for Word 5.65.0.34575 Reader - 5.65.0.34575) < 909E4D4C-00BE-3CE4-AC11-BA2C98094E51 >/Applications/Adobe InDesign CC 2015 / * / Word Reader

    0x11d458000 - 0x11d4c1ff7 + com.adobe.Reader for XLSX (XLSX 5.65.0.34575 Player - 5.65.0.34575) < BD80C93E-6213-3ACD-8514-3F1BC33EEF39 >/Applications/Adobe InDesign CC 2015 / * / player for XLSX

    0x11d4db000 - 0x11d4e3ff7 + com.adobe.ZTextReader (ZTextReader 5.65.0.34575 - 5.65.0.34575) < 8A3C6488-24D4-3DF6-AA70-DF04AB508B50 >/Applications/Adobe InDesign CC 2015 / * / ZTextReader

    0x11d56a000 - 0x11d590ff7 + com.adobe.ape (3.4.0.29366 - 3.4.0.29366) < 40A59819-7A57-0E9F-658D-1803B2A461AE >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/adbeapecore.framework/adbeapecore CC

    0x11d5a3000 - 0x11d6dafe7 + IMSLib.dylib (9.0.1.20 - 9.0.1.20) < DB55B46B-2C4D-38D0-9717-BEB70B164728 >/Library/Application Support/Adobe/*/IMSLib.dylib

    0x11d6fa000 - 0x11d774fff com.apple.xquery (1.3.1 - 30) < C822958E-D937-3B07-9731-A5A08142BA6A > /System/Library/PrivateFrameworks/XQuery.framework/XQuery

    0x11ecad000 - 0x11ed52fff ColorSyncDeprecated.dylib (470) < E1EB9774-DFCF-3B74-8CE1-E94C775116C9 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib

    0x11fcd1000 - 0x11fcd2fff libCyrillicConverter.dylib (68) < 84B4D880-8743-3DBF-AF13-DC8EA7783B76 > /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib

    0x1204db000 - 0x120865ff7 com.apple.driver.AppleIntelHD3000GraphicsGLDriver (10.0.40 - 10.0.0) < 8E138252-2FBF-38F9-B73D-28E40AF447AE > /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver

    0x120a7b000 - 0x120b03fff com.apple.applescript /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript < 31BCB0D0-1BAD-3B2A-9CC7-F17C04537645 > (2.5 - 376)

    0x120e02000 - 0x120e3bfff + com.adobe.pip (7.2.1.3600) < C47C1485-4832-3DFA-9729-528A935CD7C9 >/Applications/Adobe InDesign 2015/Adobe InDesign CC 2015.app/Contents/Frameworks/AdobePIP.framework/AdobePIP CC

    0x120e85000 - 0x120e94ff7 libSimplifiedChineseConverter.dylib (68) < 7D182FFD-0BCB-34D2-BE95-1764B6B3B116 > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0x12125d000 - 0x121260ff3 + FastCore (16.0.0 - 16.0.0) < F2C2654A-7864-39D2-B4F5-B72EEC5AB62D >/Applications/Adobe InDesign CC 2015/*/FastCore.plugin/Contents/MacOS/FastCore

    0 x 124629000 - 0x124645ff7 libJapaneseConverter.dylib (68) < 6E3AB9F9-BFE9-3FC1-98E3-ADC29D50CDF5 > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0x12464b000 - 0x12466dff7 libKoreanConverter.dylib (68) < D3835737-08DF-3D44-981F-D9B7C5AE60F4 > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0 x 124672000 - 0x124684fff libTraditionalChineseConverter.dylib (68) < 9B9E1280-DF9F-3353-BEA1-7DC3E80C762E > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0 x 124689000 - 0x1246b6ff3 + MMXCore (16.0.0 - 16.0.0) < 993AF7A0-E5B5-3B32-BB70-2D4EB336A61C > Applications/Adobe InDesign CC 2015/*/MMXCore.plugin/Contents/MacOS/MMXCore

    0x12472e000 - support 0x1247a5ff9 + multiprocessor (16.0.0 - 16.0.0) < 8C511939-EF04-383C-BEDC-1502FE2960F6 >/Applications/Adobe InDesign CC 2015 / * / Support multiprocessor Support.plugin/Contents/MacOS/MultiProcessor

    0x7fff6eba3000 - 0x7fff6ebd9f5f dyld (360.17) < 03673B53-B8B7-34D1-ADCE-F449E78E39CC >/usr/lib/dyld

    0x7fff85cac000 - 0x7fff85caffff com.apple.IOSurface (108.0.1 - 108.0.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface < 7B05B27A-5CC4-30D4-8A10-ED444A2807A2 >

    0x7fff86d6e000 - 0x7fff86dc0fff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs < F8B381F5-C434-3719-B26B-137D61F8DEBD > (1.0 - 382)

    0x7fff86dc9000 - 0x7fff86dcaffb libSystem.B.dylib (1225.1.1) < 59F79CA0-5D86-359D-A235-4F257409109E > /usr/lib/libSystem.B.dylib

    0x7fff883fb000 - 0x7fff883fdfff com.apple.EFILogin /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin < 1FF63331-0B4A-385D-AC44-7AE665947553 > (2.0 - 2)

    0x7fff883fe000 - 0x7fff883fefff com.apple.Accelerate (1.10 - 1.10 accelerate) < 84DA0CD4-9670-343A-B243-D03A2A6A14E2 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff883ff000 - 0x7fff8860cfff libicucore. A.dylib (551.30) < CC6AA367-C6D3-3592-A697-76C0CFFE19DD >/usr/lib/libicucore. A.dylib

    0x7fff88619000 - 0x7fff886a6dd7 com.apple.AppleJPEG (< 6230F3A0-C89D-3A35-A896-A17B3513E8DB > /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 1.0 - 1.).

    0x7fff886a7000 - 0x7fff886a9fff com.apple.SecCodeWrapper (4.0 - 261.10.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper < 54B4F790-1FD5-3DFB-8F1F-3BEE312238DC >

    0x7fff886aa000 - 0x7fff886bbfff libz.1.dylib (60) < 43317BEA-ACA2-34C2-AF37-902AA926C83A > /usr/lib/libz.1.dylib

    0x7fff886f4000 - 0x7fff88872fff com.apple.UIFoundation /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation < 237F281F-7F15-3309-B749-F8DA37822F9F > (1.0 - 435)

    0x7fff88968000 - 0x7fff88a5aff7 libJP2.dylib (1440) < 5540B4E7-CDE5-31B1-937F-E5B209E162F1 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff88a5b000 - 0x7fff88a5cff3 com.apple.print.framework.Print (10.0 - 266) < F13A0609-793A-3A43-A961-AAFC81AC8FDA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print

    0x7fff88b0a000 - 0x7fff88d16fff com.apple.CoreImage (11.1.0 - 366.1.1) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < BE963C1D-90C2-388A-85F2-D6701DC104C4 >

    0x7fff88d17000 - 0x7fff88d17ff7 libkeymgr.dylib (28) < 47080280-8B57-3D75-8A20-9E100864DE27 > /usr/lib/system/libkeymgr.dylib

    0x7fff88d18000 - 0x7fff88d34ff3 libresolv.9.dylib (60) < B192EC27-84EC-3D8A-9CBF-0374B5C9B31A > /usr/lib/libresolv.9.dylib

    0x7fff88d35000 - 0x7fff88edaff3 com.apple.audio.toolbox.AudioToolbox /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox < F84A0C1D-86BE-3E59-8EEA-BAE0E8CB834B > (1.13 - 1.13)

    0x7fff8984b000 - 0x7fff89859fff libxar.1.dylib (302) < 898402AF-0DF3-341D-83EA-4A1B1770E718 > /usr/lib/libxar.1.dylib

    0x7fff898b5000 - 0x7fff898e5ff3 com.apple.CoreAVCHD (5.8.0 - 5800.4.2) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD < 56AA41E6-2F60-31D8-B506-2D4A5C341C77 >

    0x7fff898e6000 - 0x7fff89936fff libcups.2.dylib (435) < FA565876-F9B2-3021-8E89-6D665ED01B3D > /usr/lib/libcups.2.dylib

    0x7fff89fc5000 - 0x7fff89fe9fff com.apple.quartzfilters (1.10.0 - 1.10.0) < B25F42F6-2548-39A8-9A9E-35331FD813EB > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters

    0x7fff89ff7000 - 0x7fff8a018ff7 libssl.0.9.7.dylib (106) < B69D800B-EFEE-3926-9D0A-EF9532EAFBE5 > /usr/lib/libssl.0.9.7.dylib

    0x7fff8aa2d000 - 0x7fff8acbbff3 com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < EFF00605-B354-3F94-B4D0-1A14B08482FE > (6.17 - 825)

    0x7fff8acef000 - 0x7fff8ad62fff com.apple.framework.IOKit (2.0.2 - 1178.10.1) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < 6A9D7E11-156A-3FDB-850E-114ECB1AE7FD >

    0x7fff8ad66000 - 0x7fff8ad69ffb (425.100) libScreenReader.dylib < 993C7AE7-6CA2-37B5-A13C-F9032857D3AD > /usr/lib/libScreenReader.dylib

    0x7fff8ad6a000 - 0x7fff8ad95ffb libarchive.2.dylib (32.10.1) < 88036C67-C2C8-3ADF-A4C7-6BBF94B80F15 > /usr/lib/libarchive.2.dylib

    0x7fff8ad96000 - 0x7fff8ae0aff3 com.apple.securityfoundation (6.0 - 55126) < 73D2EE6C-E3A2-32FE-89B3-BA8ACEA53F09 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x7fff8b010000 - 0x7fff8b04afff com.apple.QD (3.12 - 302) < 46969760-B02A-3ED5-B8BC-D6144939B16E > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD

    0x7fff8b06d000 - 0x7fff8b083ff7 libLinearAlgebra.dylib (1159) < 01BD9187-521F-3F96-B477-24511318AECD > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLinearAlgebra.dylib

    0x7fff8b36e000 - 0x7fff8b372fff libcache.dylib (75) < 4948E2C8-867F-3E9D-AAE7-2F30F0B345C6 > /usr/lib/system/libcache.dylib

    0x7fff8b713000 - 0x7fff8b7cdfff com.apple.DiscRecording (9.0.1 - 9010.4.3) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording < 7AFCD317-2A1C-30D3-9871-C9C2C4FF05FD >

    0x7fff8ba3d000 - 0x7fff8ba40fff com.apple.Mangrove (< 7CA6F485-F7A5-301C-9F14-4C667EF8B2F3 > /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 1.0 - 1.).

    0x7fff8ba41000 - 0x7fff8ba46fff com.apple.DiskArbitration /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration < B391A885-1286-3718-A341-8C84560DDE58 > (2.7 - 2.7)

    0x7fff8ba52000 - 0x7fff8ba54ff7 (801.10.2) libsystem_configuration.dylib < 93D5FB9A-CC7C-3672-80D8-7A1C4805204B > /usr/lib/system/libsystem_configuration.dylib

    0x7fff8bb00000 - 0x7fff8bbfbff7 libFontParser.dylib (158.3) < DBFEE35E-60F4-3F51-AA25-D4D7E4E01996 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib

    0x7fff8bc04000 - 0x7fff8bcf6ff7 libiconv.2.dylib (44) < 82529E3B-0485-344C-8075-83C7725D6A6F > /usr/lib/libiconv.2.dylib

    0x7fff8bcf7000 - 0x7fff8cf62ff7 com.apple.CoreGraphics (1.600.0 - 938) < 1BB01FAB-B403-3389-8D9F-44A04E9D8ADC > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff8d114000 - 0x7fff8d15fffb com.apple.print.framework.PrintCore /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore < 34EA102A-D482-37FF-9C9B-E4FE4275913B > (11, 0-472). framework/Versions/A/PrintCore

    0x7fff8d160000 - 0x7fff8d175fff com.apple.ToneKit (< 3722D681-0582-335A-A992-A972D2046163 > /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit 1.0 - 1.).

    0x7fff8d178000 - 0x7fff8d21ffff com.apple.LanguageModeling (< C405E993-F0DF-39E4-9B74-FE310E63DD8E > /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 1.0 - 1.).

    0x7fff8d220000 - 0x7fff8d254ff7 com.apple.CoreVideo (1, 8 - 191.1) < FA99D150-EFCE-3F32-ACDF-5E91AD97F176 > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff8d26e000 - 0x7fff8d275ff7 libcompiler_rt.dylib (62) < 253B36E5-572D-377D-AE99-A02CE32590E5 > /usr/lib/system/libcompiler_rt.dylib

    0x7fff8d295000 - 0x7fff8d2a7fff com.apple.contacts.ContactsPersistence (1.0 - 2137) < 40E67B07-5DC9-3B5E-8266-1A27142268D0 > /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersis tence

    0x7fff8d2a8000 - 0x7fff8d35dfff com.apple.CoreDuet (< 063ADBE1-44D5-30EE-887E-69ACC8EA9AB6 > /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 1.0 - 1.).

    0x7fff8d35e000 - com.apple.DictionaryServices (1.2 - 250) < 94678AC8-41FF-3D2E-A35E-D83AD18D7A78 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices 0x7fff8d38cff7

    0x7fff8d38d000 - 0x7fff8d392ff3 libunwind.dylib (35.3) < FDA18078-A775-3BAF-A5A6-8A7B75D6AA99 > /usr/lib/system/libunwind.dylib

    0x7fff8d3a3000 - 0x7fff8d3a5fff com.apple.loginsupport (1.0-1) < 09F245DC-8342-358E-A881-DAE88BF0EC1D > /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.fram ework/Versions/A/loginsupport

    0x7fff8d3ac000 - 0x7fff8d441fff (10, 9-214) com.apple.ink.framework < F1B3B6C9-FF8D-3E68-93EB-8CDCEB65171A > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A / ink jet

    0x7fff8d445000 - 0x7fff8d7c0ffb com.apple.VideoToolbox (1.0 - 1731.15.20) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < 70FDD7D4-FE98-3154-8B7D-72EDD5E92CDB >

    0x7fff8d7c1000 - 0x7fff8d7eafff (755.1.19) libxpc.dylib < 3E09C275-A33B-357A-B0AB-A2DDF88EC9D5 > /usr/lib/system/libxpc.dylib

    0x7fff8d7eb000 - 0x7fff8d7fbff3 com.apple.ProtocolBuffer /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer < B3D0CEE0-1ED1-39BB-8C81-896F36398802 > (1-242)

    0x7fff8d7fc000 - 0x7fff8d83dff7 libGLU.dylib (12.0.34.12) < 055A2B53-7C59-359A-82CB-1F79160C5C86 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff8d83e000 - 0x7fff8d83ffff libffi.dylib (18.1) < B70CE053-29D3-3F4E-A6B8-E2957BC754E3 > /usr/lib/libffi.dylib

    0x7fff8d840000 - 0x7fff8d842fff com.apple.OAuth /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth < DFC11955-75DD-303E-BFCB-0F70A4C541E0 > (25-25)

    0x7fff8d86f000 - 0x7fff8d8bdff7 libstdc ++.6.dylib (104.1) < 77780A99-22DB-35AA-BD9E-ADB83417E4BD > /usr/lib/libstdc++.6.dylib

    0x7fff8d931000 - 0x7fff8d931ff7 (755.1.19) liblaunch.dylib < 7EC0F297-43CC-3D11-B46B-7E72E372648A > /usr/lib/system/liblaunch.dylib

    0x7fff8d9b3000 - 0x7fff8d9bbfff libMatch.1.dylib (27) < D8024E9A-795B-30FC-BCE7-DB1E20889AB9 > /usr/lib/libMatch.1.dylib

    0x7fff8ddeb000 - 0x7fff8de15ff7 (12.0.34.12) GLRendererFloat < EC1AE73B-1E91-383F-9954-F6B81313794C > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat

    0x7fff8de16000 - 0x7fff8de85fff com.apple.SearchKit (1.4.0 - 1.4.0) < 45A716CD-D9E7-3F1F-9EC8-BB37CA9E8C04 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit

    0x7fff8de86000 - 0x7fff8e012ff7 (12.0.34.12) libGLProgrammability.dylib < 42F6BEA9-8680-36D9-B5B2-8B368D4F94DB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib

    0x7fff8e02a000 - 0x7fff8e0a0ff7 com.apple.MMCS /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS < C445C851-09F2-34F8-AA4C-D7135C15945F > (1.3 - 349)

    0x7fff8e0ba000 - 0x7fff8e0bcfff libCGXType.A.dylib (938) < 91E0A256-B45F-3728-B68A-250E4E74A838 > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib

    0x7fff8e0c7000 - 0x7fff8e0cfff7 libcldcpuengine.dylib (2.6.4.1) < D8A9DDA1-35B5-3D6B-85E0-A5542033FA9F > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib

    0x7fff8e0d6000 - 0x7fff8e0e0fff com.apple.NetAuth /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth < ABBBE552-26E0-3682-8BFD-C59EC702F347 > (6.0 - 6.0)

    0x7fff8e0e1000 - 0x7fff8e0e1fff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < 14019127-641A-3CB9-8155-86AD35F23597 > (728.4 - 728.4)

    0x7fff8e11e000 - 0x7fff8e122fff libGIF.dylib (1440) < 062A2A8B-E00A-34A5-9C1C-D85C1761CA70 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8e123000 - com.apple.AddressBook.ContactsFoundation (8.0 - 2137) < 082A84FD-0076-3129-8193-2BCB0EAD15E2 > 0x7fff8e14eff7 ion /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundat

    0x7fff8e14f000 - 0x7fff8e154fff com.apple.ImageCapture (9, 0-9, 0) < E53CC0B8-9D36-3636-B602-8AB4CEB4C313 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture

    0x7fff8e155000 - 0x7fff8e1c1ff7 com.apple.contacts.Contacts (1.0 - 2137) < 3503806B-F315-3869-88FD-FFF8D5C10973 > /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts

    0x7fff8e1de000 - 0x7fff8e1e0ff7 com.apple.xpc.ServiceManagement (< 0EA1807B-4F41-317D-A6C2-E6A23F201252 > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 1.0 - 1.).

    0x7fff8e1e1000 - 0x7fff8e703fff com.apple.QuartzComposer (5.1 - 334) < B28D6929-25C0-3F27-9454-EAE22857EF4A > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer

    0x7fff8e704000 - 0x7fff8e830fff com.apple.CoreText (352.0 - 494.5.1) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText < 393F0F48-0226-34BA-9793-66D8455EF894 >

    0x7fff8e835000 - 0x7fff8e837fff (12.0.34.12) libCVMSPluginSupport.dylib < F8E1EA87-73ED-3372-8C58-4209942ECD20 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib

    0x7fff8e838000 - 0x7fff8e9dfffb com.apple.avfoundation (2.0 - 1046.9.1) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < AE9896EC-F23A-3148-A757-D5807E1369EA >

    0x7fff8e9e0000 - 0x7fff8ebaeff7 com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < 4D3C169D-C579-38C3-AE10-B975E89331E0 > (1.11 - 410, 9)

    0x7fff8ebc9000 - 0x7fff8ebfaffb com.apple.GSS /System/Library/Frameworks/GSS.framework/Versions/A/GSS < D50CDB44-72E9-3520-9965-93901621F781 > (4.0 - 2.0)

    0x7fff8ebfb000 - 0x7fff8ec15ff3 liblzma.5.dylib (10) < 8CD18286-49EA-31E4-8A73-1BF8DECED6C6 > /usr/lib/liblzma.5.dylib

    0x7fff8ec16000 - 0x7fff8ec1efff com.apple.NetFS /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS < 5602F3EB-64F6-3495-BEF0-988F92974234 > (6.0 - 4.0)

    0x7fff8ec1f000 - 0x7fff8ec27fff com.apple.AppleSRP (< 8DBB11A2-150A-3E70-8B83-DDEDAB15E2C3 > /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 5.0 - 1).

    0x7fff8ec28000 - 0x7fff8ec76fff libcurl.4.dylib (90) < 00662A4C-B89A-3A17-93FF-950C6DE47F99 > /usr/lib/libcurl.4.dylib

    0x7fff8ecf5000 - 0x7fff8f0f7fff libLAPACK.dylib (1159) < BDADCDAE-1FD8-3190-B9DD-DB671495EEE2 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib

    0x7fff8f12c000 - 0x7fff8f16aff7 libGLImage.dylib (12.0.34.12) < 4FC92D21-0834-397E-BE0D-282A73FC16B2 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x7fff8f9ce000 - 0x7fff8f9fbfff (500.10.1) libdispatch.dylib < 438F4595-0731-34A2-ACAD-60121A76D1FF > /usr/lib/system/libdispatch.dylib

    0x7fff8f9fc000 - 0x7fff8fbbcfeb libBLAS.dylib (1159) < 4A01C32E-452C-314C-B878-E301D4998C68 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib

    0x7fff8fbbd000 - 0x7fff8fbc8ff7 libChineseTokenizer.dylib (16) < 1794A880-9C3D-37B2-8F3E-6CAFFB396089 > /usr/lib/libChineseTokenizer.dylib

    0x7fff8fc61000 - 0x7fff8fccfff7 com.apple.ApplicationServices.ATS (377-394, 1) < E35909E3-83E0-3671-914A-B43845D889B3 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS

    0x7fff8fcd0000 - 0x7fff8fd22fff com.apple.AppleVAFramework (5.0.31 - 5.0.31) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA < 17D3C8AE-5E48-34CE-B5FB-5F30747EDE91 >

    0x7fff8fd29000 - 0x7fff8fd47fff (3247.10.11) libsystem_kernel.dylib < FA4DCF42-27B0-3878-9158-E148D208B21E > /usr/lib/system/libsystem_kernel.dylib

    0x7fff8fd48000 - 0x7fff8fd48ff7 libunc.dylib (29) < D9B0C7B1-8648-3AAC-931C-E7CD362FAA8A > /usr/lib/system/libunc.dylib

    0x7fff8fe1c000 - 0x7fff8fe1efff libsystem_coreservices.dylib (19) < 692631A0-1923-32CA-9BD5-044B1382FFDE > /usr/lib/system/libsystem_coreservices.dylib

    0x7fff8fe1f000 - 0x7fff8fe38fff com.apple.CFOpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory < 86755CDA-B4AA-39EF-8F7B-27F120F9AAC3 > (10.11 - 194). framework/Versions/A/CFOpenDirectory

    0x7fff8fe39000 - 0x7fff8fe3cff7 (459.10.4) libsystem_sandbox.dylib < BC781530-CA98-392D-A77A-8CAD2D9C6B2F > /usr/lib/system/libsystem_sandbox.dylib

    0x7fff8fe40000 - 0x7fff8fe44fff com.apple.CommonPanels (1.2.6 - 96) < 1D76DDD3-D45A-3679-8B72-5EECE6C1ACAC > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels

    0x7fff8ff84000 - 0x7fff8ff8ffff com.apple.AppSandbox (4.0 - 261.10.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox < 9824F3E3-6212-32BB-BC68-13FCAF820FB1 >

    0x7fff8ff90000 - 0x7fff8ff9efff com.apple.opengl (12.0.34 - 12.0.34) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL < 31C23ABB-8F75-3201-8CD1-447B3052B434 >

    0x7fff8ff9f000 - 0x7fff9000effb com.apple.datadetectorscore (7.0 - 460) < 117708DA-6E19-3866-AD15-0CE3E3F2211A > e /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor

    0x7fff90015000 - 0x7fff9004cff7 com.apple.LDAPFramework (2.4.28 - 194,5) < 207E4A14-E3CC-3658-ABAF-B5CAEC9ED1EB > /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff9004d000 - 0x7fff90062ff3 libCGInterfaces.dylib (317.8) < 92EA55E8-A12D-3AFC-ADE3-F5AB6B80E638 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/Libraries/libCGInterfaces.dylib

    0x7fff90063000 - 0x7fff90065ff7 com.apple.securityhi (9.0 - 55006) < 02F35345-EFDE-3EE6-8526-F64EA74F91EA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI

    0x7fff90073000 - 0x7fff90113fff com.apple.ViewBridge /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge < EA9A214B-6AFA-3543-A4F0-8E67F6ED414F > (157-157)

    0x7fff90114000 - 0x7fff90116ff7 libRadiance.dylib (1440) < A3E73CE6-7260-3828-BCD9-756DB5167010 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

    0x7fff9017b000 - 0x7fff9021ffff com.apple.Bluetooth (4.4.2 - 4.4.2f1) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < 7037778A-6783-3727-9076-6CA9ED130A11 >

    0x7fff90220000 - 0x7fff90220fff com.apple.quartzframework /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz < E37B0DA2-8DEB-3D46-9038-BD91E789A375 > (1, 5-21)

    0x7fff90226000 - 0x7fff90232ff7 com.apple.OpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory < 7ECA481B-C265-33F6-835E-2E5B96621E51 > (10.11 - 194)

    0x7fff9040a000 - 0x7fff9051cfef libvDSP.dylib (563.4) < 7036F91A-0951-340C-8818-0AB90FF0B057 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib

    0x7fff9051d000 - 0x7fff9051fff7 libquarantine.dylib (80) < 1693C5FE-EA0A-3122-85EB-7950ECC7435A > /usr/lib/system/libquarantine.dylib

    0x7fff90543000 - 0x7fff90544fff libDiagnosticMessagesClient.dylib (100) < F2D8CFCC-A00A-3675-9C01-EF0C663F2445 > /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff90545000 - 0x7fff907ebfff com.apple.CoreData /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData < 37466A48-AA4C-3DB5-B606-C04841D3F654 > (120-640)

    0x7fff907f8000 - 0x7fff90827fff com.apple.securityinterface (10.0 - 55065.10.2) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface < 1D6DB9F4-6EB4-39E0-8E99-C09EEA78BB16 >

    0x7fff90873000 - 0x7fff9088bfc7 libcompression.dylib (23) < 803C89B9-1E7D-3658-A2CF-2B8371C54638 > /usr/lib/libcompression.dylib

    0x7fff9088c000 - 0x7fff90895ffb libsystem_notify.dylib (149) < 56ABC155-CB99-30A8-A8B1-C204B5615092 > /usr/lib/system/libsystem_notify.dylib

    0x7fff90896000 - 0x7fff908e8fff com.apple.ImageCaptureCore /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore < 74BC5DBA-FD63-31B9-A55B-C3C128852F1D > (7.0 to 7.0)

    0x7fff90917000 - 0x7fff9095cff3 libFontRegistry.dylib (155) < BC1B3AD5-4927-3AB7-94FF-CD93BF895D98 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib

    0x7fff9095d000 - 0x7fff90960ffb libdyld.dylib (360.17) < 99396189-E53A-3A78-BC49-449236DA7CFF > /usr/lib/system/libdyld.dylib

    0x7fff909d3000 - 0x7fff909d8ff7 libmacho.dylib (875.1) < A9EC23EC-11A0-3B4F-A8AC-B990C8267A6E > /usr/lib/system/libmacho.dylib

    0x7fff90a43000 - 0x7fff90abafc7 libcorecrypto.dylib (334) < 4E1B969F-8449-3B21-9880-51AD58E25AA6 > /usr/lib/system/libcorecrypto.dylib

    0x7fff90ac0000 - 0x7fff90ad2fff libsasl2.2.dylib (209) < D48CE2C5-D0C5-39BD-A7DD-C999E81CF885 > /usr/lib/libsasl2.2.dylib

    0x7fff90ad3000 - 0x7fff90ad6fff libCoreVMClient.dylib (119.5) < 56187F75-4436-31CA-8D3A-C6BC67F6F2BF > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x7fff90c01000 - 0x7fff90e6eff7 (2: 6-930) com.apple.imageKit < 8DA4A452-0E28-3A3E-82B6-93D155581002 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit

    0x7fff90e6f000 - 0x7fff90f1ffff com.apple.backup.framework /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup < 70033C43-855B-3F12-998C-343F2A8A93BA > (1, 7-1, 7)

    0x7fff90f20000 - 0x7fff9138dffb com.apple.GeoServices (1.0 - 1151.2.13.1) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices < 8305A6E9-BE86-3AC7-8EAB-6A989CC208C0 >

    0x7fff913d6000 - 0x7fff917aefef com.apple.CoreAUC (214.0.0 - 214.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC < 36675355-FEF4-3DC0-9734-AE6F125883C2 >

    0x7fff91881000 - 0x7fff91957ff7 com.apple.DiskImagesFramework (10.11.1 - 415) < F3C0F696-A10D-3A4B-9391-AAD695D29831 > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x7fff91958000 - 0x7fff91987fc3 libsystem_m.dylib (3105) < 07D50372-30ED-3B03-9FA0-0662BF8F0098 > /usr/lib/system/libsystem_m.dylib

    0x7fff919cb000 - 0x7fff919d1fff com.apple.XPCService (< E50F1206-8B6B-3CDB-BC66-E5B70B4B41C7 > /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 2.0 - 1).

    0x7fff919d4000 - 0x7fff91a83fff com.apple.cloudkit.CloudKit /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit < 2507C1D3-733F-394A-9ADC-FF8FAD7D21B9 > (480-480)

    0x7fff91a8a000 - 0x7fff91a93ff7 com.apple.DisplayServicesFW /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices < 69821BC1-66F6-30FE-B706-134F3A9FCAD7 > (3.0 - 378)

    0x7fff91a94000 - 0x7fff91bdefc7 com.apple.coreui (2.1 - 364, 1) < 4E680853-589C-3BC5-8215-240A07A92C81 > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff91de2000 - 0x7fff91dedfff com.apple.CrashReporterSupport (10.11 - 716) < 9BD908E9-368A-3B17-AFCD-185277FF70BA > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support

    0x7fff91dee000 - 0x7fff91deefff com.apple.ApplicationServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices < B5326BD2-AF17-3880-A8C5-3C990AE4A1C8 > (48-48)

    0x7fff921ad000 - 0x7fff92258fff com.apple.PDFKit (3.1 - 3.1) < CDEADFD1-493E-37A8-B2D4-42AE8F72C5FE > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit

    0x7fff92289000 - 0x7fff92290ff7 com.apple.phonenumbers (1.1.1 - 105) < 49696A1F-83FC-3BE8-A7E8-F0F4EAA326BB > /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers

    0x7fff92291000 - 0x7fff922a8fff libmarisa.dylib (4) < 4D3AE55B-CE77-364F-B8DE-C95CAA48B291 > /usr/lib/libmarisa.dylib

    0x7fff922a9000 - 0x7fff922aafff com.apple.TrustEvaluationAgent (2.0 - 25) < BC19A1D1-805B-3FC5-BF0B-1EF6FB36FE74 > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent

    0x7fff922ab000 - 0x7fff922f7ffb com.apple.HIServices (1.22 - 548) < 19389B63-C373-31AE-9180-3A11093EAE58 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices

    0x7fff9235f000 - 0x7fff92367fff com.apple.frameworks.CoreDaemon /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon < B0028247-B333-36F5-8098-8EC95E6C2B23 > (1.3 - 1.3)

    0x7fff92368000 - 0x7fff9238aff7 com.apple.IconServices /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices < 9F8B9184-8DA8-3B7A-970B-3086DDD1CC6F > (68-68)

    0x7fff9238b000 - 0x7fff92399fff com.apple.IntlPreferences /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences < 6576CA0C-BFA3-3DD4-8FB8-B2B36137060E > (2.0 - 192)

    0x7fff9239a000 - 0x7fff923a3fff com.apple.icloud.FindMyDevice (< 28CE764F-4C4C-3A75-B7AE-EDBC7A189E82 > /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 1.0 - 1.).

    0x7fff92466000 - 0x7fff9247afff libsystem_coretls.dylib (82) < 21EDACF1-D9B3-3086-9821-60EB75E7F965 > /usr/lib/system/libsystem_coretls.dylib

    0x7fff925b5000 - 0x7fff92834fff com.apple.security (7.0 - 57336.10.29) /System/Library/Frameworks/Security.framework/Versions/A/Security < FA5D22B9-3253-38CF-81E2-E243F93753DC >

    0x7fff92835000 - 0x7fff92865ff7 (459.10.4) libsandbox.1.dylib < 78F4D125-DEF0-3BEA-9D7F-E5BE5C06C8DA > /usr/lib/libsandbox.1.dylib

    0x7fff9286b000 - 0x7fff9286dff7 com.apple.SafariServices.framework (11601 - 11601.2.7.2) /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices < CC99200E-E893-3A01-AA8F-AF2856675CF7 >

    0x7fff9286e000 - 0x7fff92873fff (14-14) com.apple.AssetCacheServices < 8C912A44-6635-33A0-82A3-389585BAC0F1 > /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServi CES

    0x7fff928db000 - 0x7fff92913fff com.apple.RemoteViewServices (2.0 - 99) < 8BD12AE2-BE91-37CF-955B-62E08551FF83 > /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi CES

    0x7fff92985000 - 0x7fff929e2fff com.apple.CoreServices.OSServices (728.4 - 728.4) < 4E1819C2-F7A9-35FB-8193-FF3DCC35226C > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices

    0x7fff92a71000 - 0x7fff92a79fff com.apple.CoreServices.FSEvents (1222.1.1 - 1222.1.1) < 79DF16A7-E169-38A5-BF5E-2D45F86DE154 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framewor k/Versions/A/FSEvents

    0x7fff92aef000 - 0x7fff92af7fff (12.0.34.12) libGFXShared.dylib < F8278F50-25AC-3CEC-9F68-D83785A25F5E > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0x7fff92b0a000 - 0x7fff92f38fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) < D02FBB03-42A5-3E75-83C1-F563B1E3258F > /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff92f39000 - 0x7fff92f41ffb (624.10.1) libsystem_dnssd.dylib < 21D63EAB-27BE-3F41-B1D4-604BE7F4C9BA > /usr/lib/system/libsystem_dnssd.dylib

    0x7fff92f42000 - 0x7fff92f4bff3 com.apple.CommonAuth /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth < 6EF43A6E-C071-36A3-8B94-694AC6BEF6D3 > (4.0 - 2.0)

    0x7fff92f53000 - 0x7fff93b75fff com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < 9B600863-6A16-31CB-8138-97AC8F43FBC6 > (6, 9 - 1404.13)

    0x7fff93b76000 - 0x7fff93b86fff libbsm.0.dylib (34) < F1E41935-5C5D-3704-AE9D-AEA1F2BCF8B1 > /usr/lib/libbsm.0.dylib

    0x7fff93b87000 - 0x7fff93bc9ff7 com.apple.Metal (54.26.3 - 54.26.3) /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 54544DF5-B1D1-3139-ADE6-E815533313EB >

    0x7fff93bca000 - 0x7fff94120fff com.apple.MediaToolbox (1.0 - 1731.15.20) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < B7C4E89E-A5D5-35B2-BA8F-36EC2EAB2CFC >

    0x7fff94131000 - 0x7fff94139fef (73.1.1) libsystem_platform.dylib < 3F4D2390-E3DE-3C24-A515-95DFAC8671C4 > /usr/lib/system/libsystem_platform.dylib

    0x7fff9413a000 - 0x7fff9413afff com.apple.Accelerate.vecLib (vecLib - 3.10 3.10) < E0D5C411-052F-3B71-9562-C1098FB2F86D > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib

    0x7fff94acc000 - 0x7fff94ae8ff7 libextension.dylib (78) < 3A674BC1-8D7E-3A62-80EF-F950B02CB0FF > /usr/lib/libextension.dylib

    0x7fff94b11000 - 0x7fff94b21fff com.apple.AppleScriptObjC /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC < D34A6B42-49AE-326D-9107-8E2E02420783 > (1.4 - 32)

    0x7fff94b22000 - 0x7fff94bdfff7 libcrypto.0.9.7.dylib (106) < C9EBCD97-C008-30AC-BE1F-A9EA0E5EBC6D > /usr/lib/libcrypto.0.9.7.dylib

    0x7fff94be0000 - 0x7fff94c04ff7 libJPEG.dylib (1440) < B16D0DCA-2EA4-348B-A7EA-30E65B536C28 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff94c05000 - 0x7fff94c2aff7 libPng.dylib (1440) < D60133FC-EA26-3DD4-8F5F-AE854244A648 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff94c5f000 - 0x7fff94c63fff libpam.2.dylib (20) < 7F986CE8-EF74-3BC3-BB7E-5267E24EAFFE > /usr/lib/libpam.2.dylib

    0x7fff94c69000 - 0x7fff94c71fff (384.1.2) libsystem_networkextension.dylib < 4736FCC5-9DBA-31F4-AAC8-CD0A177CF502 > /usr/lib/system/libsystem_networkextension.dylib

    0x7fff94c72000 - 0x7fff94c73fff libsystem_blocks.dylib (65) < 1B4F1F10-823E-3781-8162-6884D14DF0D6 > /usr/lib/system/libsystem_blocks.dylib

    0x7fff94c74000 - 0x7fff94d99ff7 com.apple.LaunchServices (728.4 - 728.4) < A4913361-072C-3A0E-9231-0D9B1DC4ECC5 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices

    0x7fff94dad000 - 0x7fff94dc3fff com.apple.CoreMediaAuthoring (2.2 - 953) < 8F5453F5-DC0E-39B8-9CB0-0A89268F6930 > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing

    0x7fff94dc9000 - 0x7fff94dd4fff libcsfde.dylib (517) < C8C9A632-5072-3D24-8EBF-CCDE0BC8BFB5 > /usr/lib/libcsfde.dylib

    0x7fff94e11000 - 0x7fff94e26fff com.apple.AppContainer (4.0 - 261.10.2) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer < ABF27707-2925-3A25-916E-370A3E342AF0 >

    0x7fff9504e000 - 0x7fff9504efff com.apple.Cocoa /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa < A033F342-1FEC-3DFD-830A-E8EE284DF492 > (6.11 - 22)

    0x7fff9505b000 - 0x7fff950f1ff7 com.apple.ColorSync (4.9.0 - 4.9.0) < 1FBEDDC2-4BCD-3148-800E-968814206CB9 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync

    0x7fff950f2000 - 0x7fff9545cddf libobjc. A.dylib (680) < CE3C3C78-A7BB-3147-8375-55424032FF5E >/usr/lib/libobjc. A.dylib

    0x7fff9545d000 - 0x7fff95477fff com.apple.Kerberos (< D2F0BF94-8656-3FBF-81AC-43D417B661F1 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 3.0 - 1).

    0x7fff9553b000 - 0x7fff9553eff7 libCoreFSCache.dylib (119.5) < 5935DEAB-4236-38D2-8C76-5AF9A5700559 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib

    0x7fff956cf000 - 0x7fff95715ff7 libauto.dylib (186) < 460B0167-C89B-37EC-823C-52F684B31C26 > /usr/lib/libauto.dylib

    0x7fff95716000 - 0x7fff95774fff com.apple.SystemConfiguration /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration < E3F5D239-4CBE-3B77-A8D9-F3423702AAB9 > (1.14 - 1.14)

    0x7fff95f78000 - 0x7fff95faafff libTrueTypeScaler.dylib (158.3) < 92500805-6264-3379-953E-9DF988965584 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib

    0x7fff960ce000 - 0x7fff961bdfff libxml2.2.dylib (29) < 0702E13C-D726-3DAF-B0D1-77F7B9EF6A37 > /usr/lib/libxml2.2.dylib

    0x7fff96216000 - 0x7fff96279ff3 libAVFAudio.dylib (161) < 1E0384CE-FF8D-36EE-8A28-50CD673D3109 > /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib

    0x7fff9627a000 - 0x7fff9650ffff libmecabra.dylib (696,1) < 8FCC4C88-BE6A-3697-B1D3-8E1A2A3B99BA > /usr/lib/libmecabra.dylib

    0x7fff96514000 - 0x7fff96631fff libsqlite3.dylib (216,4) < 5CF0D77D-CF0A-301C-8003-69A840AC47FD > /usr/lib/libsqlite3.dylib

    0x7fff96632000 - 0x7fff9664bffb com.apple.openscripting (1, 7-169) < 6AA25650-8900-33C6-AD49-D0543DB27C16 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x7fff9664c000 - 0x7fff9664cfff libenergytrace.dylib (10) < 64F779D4-2192-37EC-8DB5-EC55BAE50058 > /usr/lib/libenergytrace.dylib

    0x7fff967a4000 - 0x7fff96a89ff3 com.apple.CoreServices.CarbonCore (1136-1136) < 9DE930A3-63C0-3E21-965A-132D97D61892 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore

    0x7fff96a8a000 - 0x7fff96a9bff7 libsystem_trace.dylib (200) < 1D289F35-BFA2-3B9E-BDF9-20F34F9A01D4 > /usr/lib/system/libsystem_trace.dylib

    0x7fff96a9c000 - 0x7fff96ac3ff7 com.apple.ProtectedCloudStorage (1.0-1) < 403BC9E0-2A4E-3481-BDFE-B3CB372E5051 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedClo udStorage

    0x7fff96aed000 - 0x7fff96af8fff com.apple.DirectoryService.Framework /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService < D3F78A43-A04D-31CA-AFF0-52E129CEDB91 > (10.11 - 194)

    0x7fff96b85000 - 0x7fff96ba0fff com.apple.aps.framework /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService < A3971E50-DD87-3752-B37A-E58557AD5AF2 > (4.0 - 4.0)

    0x7fff96ba4000 - 0x7fff96ce8ff7 com.apple.QTKit (7.7.3 - 2937) < C04A69AB-93F9-3BB4-BF56-1CD408183CE7 > /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit

    0x7fff96ce9000 - 0x7fff96d12ff7 libxslt.1.dylib (14) < 412A09C9-7C02-351E-A416-2453361EACA9 > /usr/lib/libxslt.1.dylib

    0x7fff96d45000 - 0x7fff96e2cff7 libcrypto.0.9.8.dylib (59) < 7C4E5457-B66C-39CA-BC0E-15CA6C051FC0 > /usr/lib/libcrypto.0.9.8.dylib

    0x7fff96e2d000 - 0x7fff96e41fff com.apple.CoreDuetDaemonProtocol (1.0-1) < C0619E4A-5CF8-357E-B571-2398239911A1 > /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDae monProtocol

    0x7fff96fd5000 - 0x7fff97008fff com.apple.MediaKit /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit < CCE5E5C0-B379-3F2C-AE16-7BB543FF7C09 > (16-807)

    0x7fff9705c000 - 0x7fff974d1ff7 com.apple.CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation < 86B26482-C917-34F2-80D8-02911B6001E0 > (6, 9 - 1255.1)

    0x7fff974d2000 - 0x7fff974defff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) < 8D8F331E-21D2-3B7E-B977-3EB1D9E44D5B > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    0x7fff974df000 - 0x7fff97532ff7 libc ++.1.dylib (120,1) < 54190E1B-EE49-3D6D-AC29-2813D7380BA5 > /usr/lib/libc++.1.dylib

    0x7fff97539000 - 0x7fff97597fff (582.1.4) libsystem_network.dylib < C5DC3F04-7011-34D4-9682-E1B31999A89C > /usr/lib/system/libsystem_network.dylib

    0x7fff9761b000 - 0x7fff9761bfff com.apple.audio.units.AudioUnit /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit < CFB91CDC-5BBA-3A8E-BA05-6E972217BD57 > (1.13 - 1.13)

    0x7fff97683000 - 0x7fff97684fff liblangid.dylib (122) < EAC09BF0-5E88-3060-AA51-EC71B4D26F3C > /usr/lib/liblangid.dylib

    0x7fff976ae000 - 0x7fff976faff7 com.apple.corelocation /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation < AF201676-FFF5-39E1-8B0A-D670F4129CA8 > (1486.17 - 1615.37)

    0x7fff976fb000 - 0x7fff97783fff com.apple.CoreSymbolication (3.1 - 58048.1) < 7B9BCFD9-3600-3973-841D-6227BEDE5D36 > /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n

    0x7fff9797e000 - 0x7fff979a7ff7 libsystem_info.dylib (476) < 65D0643A-C8AE-3E8D-9F6E-E4AD823F16B2 > /usr/lib/system/libsystem_info.dylib

    0x7fff979a8000 - 0x7fff979bbfff com.apple.CoreBluetooth (< A63B8FB0-F8B3-368D-B482-733FF0373610 > /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 1.0 - 1.).

    0x7fff97a2d000 - 0x7fff97a30fff libspindump.dylib (197) < 4DAD2F5F-B719-3DD8-9D7C-135314CE85D0 > /usr/lib/libspindump.dylib

    0x7fff97a32000 - 0x7fff97a83ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < 73EF4EB0-315C-3064-A991-3DBFF6BDDFE1 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff97acc000 - 0x7fff97b27ff7 libTIFF.dylib (1440) < 53EB5B1D-0080-367C-ADB6-5A57D1B423ED > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff97b8a000 - 0x7fff97bf4ff7 com.apple.framework.CoreWLAN /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN < BA9EB0BF-7915-3DB0-9ACE-EC52CD07E1A8 > (11, 0 - 1101.20)

    0x7fff97bf5000 - 0x7fff97e00fff libFosl_dynamic.dylib (16.24) < 28CD6965-696D-32D0-B76F-4EA21DC1984A > /usr/lib/libFosl_dynamic.dylib

    0x7fff97e57000 - 0x7fff97e63fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) < 12117823-8A9E-3C88-A01C-3B25D68535CE > /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecogn itionCore

    0x7fff97e6c000 - 0x7fff98512ffb com.apple.JavaScriptCore (11601 - 11601.2.3) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < CAB09947-EC70-3CFC-9C24-101122452A58 >

    0x7fff98564000 - 0x7fff9861dff7 libvMisc.dylib (563.4) < 04503007-DE32-34EB-90BB-740C289E3784 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib

    0x7fff986aa000 - 0x7fff986c9ff7 com.apple.contacts.vCard (1.0 - 2137) < 74FA0133-CFBB-3055-B429-AF2D13B24D7D > /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard

    0x7fff986ca000 - 0x7fff986cdff7 com.apple.help (1.3.3 - 46) < AA185754-DEEB-3091-9301-7B23C4D36818 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/aide

    0x7fff986ce000 - 0x7fff986ddffb com.apple.LangAnalysis (1.7.0 - 1.7.0) < E7D610A1-1445-3CA3-B9A1-EE15D54B75AB > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis

    0x7fff986de000 - 0x7fff9877efff com.apple.Metadata (10.7.0 - 972,9) < 303B6874-8B16-39A0-BB9D-5B7A59D3B8A2 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/metadata

    0x7fff98786000 - 0x7fff98a0dff3 com.apple.CFNetwork (760.1.2 - 760.1.2) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < D4FD8DF6-8481-3BE6-9E93-A3268B16774E >

    0x7fff98a0e000 - 0x7fff98a0efff libOpenScriptingUtil.dylib (169) < 5C4A51D4-09A9-3209-8E57-15F112725CC4 > /usr/lib/libOpenScriptingUtil.dylib

    0x7fff98a0f000 - 0x7fff98a14fff com.apple.MediaAccessibility /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility < 309526B0-1A18-3C2D-B425-A2BB61EED005 > (1.0 - 79)

    0x7fff98a1f000 - 0x7fff98a21fff com.apple.CoreDuetDebugLogging (1.0-1) /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebug < B390CD9A-A04F-3A9E-A40C-CB317F40AFE5 > logging

    0x7fff98a22000 - 0x7fff98a3dff7 libCRFSuite.dylib (34) < 65E4DC91-A994-3921-B5B0-696123CE0C1E > /usr/lib/libCRFSuite.dylib

    0x7fff98bb5000 - 0x7fff98bfaff7 (24, 4-24, 4) com.apple.coreservices.SharedFileList < 3C8665BA-A9CD-377C-BECB-2E933FDB68AE > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.fr amework/Versions/A/SharedFileList

    0x7fff9904d000 - 0x7fff9912dff7 unorm8_rgba.dylib (2.6.4.1) < 49FF2837-D97B-3CFF-B139-E57D40700F32 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba .dylib

    0x7fff993a3000 - 0x7fff993d1ff7 com.apple.CoreServicesInternal (248.1 - 248.1) < 834B5D98-DB81-36B1-BD2A-640928EDAAF6 > /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI internal

    0x7fff993d2000 - 0x7fff994e0fff com.apple.desktopservices (1.10 - 1.10) < 76AA21FE-0F96-366A-9B43-6188FBC29ABE > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv

    0x7fff994f6000 - 0x7fff99541ff7 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < EE999B42-E879-346B-829F-6CE9E2806187 > (701.0 - 4790)

    0x7fff99562000 - 0x7fff995d5ffb com.apple.Heimdal /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal < 2D358FB4-61BB-3BB6-9EF7-D9868A0B0275 > (4.0 - 2.0)

    0x7fff995d6000 - 0x7fff995e1ff7 libcommonCrypto.dylib (60074) < BD1DCF19-8353-3F6A-AFFA-EBBA29A302A8 > /usr/lib/system/libcommonCrypto.dylib

    0x7fff995f7000 - 0x7fff99646ff7 com.apple.opencl (2.6.9 - 2.6.9) < CA196FE1-7E95-3CBD-A97F-90747B9F5CBC > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff99647000 - 0x7fff99648fff libsystem_secinit.dylib (20) < 932ED582-E80F-39DA-B0FA-F1BC5F1AD2F8 > /usr/lib/system/libsystem_secinit.dylib

    0x7fff99649000 - 0x7fff99665ff7 libsystem_malloc.dylib (67) < 1B57A614-3D60-3F87-876F-7DB4AF38120F > /usr/lib/system/libsystem_malloc.dylib

    0x7fff997d7000 - 0x7fff99800ffb libRIP.A.dylib (938) < 4D830858-FD2C-32B1-9B29-E88AD815E604 > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

    0x7fff99968000 - 0x7fff999f1ff7 com.apple.PerformanceAnalysis (lysis of /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna < BE35D3E9-570D-3483-9C78-82F3EFB56D43 > 1.0 - 1.).

    0x7fff99a67000 - 0x7fff99a77fff libSparseBLAS.dylib (1159) < C10D35D2-3D3D-3EB0-8215-527BD1F1F3E0 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libSparseBLAS.dylib

    0x7fff99a78000 - 0x7fff99a89fff libcmph.dylib (6) < 43880250-9C2D-395C-90C7-CCCE109FF1B2 > /usr/lib/libcmph.dylib

    0x7fff99a8a000 - 0x7fff99a8fff7 libheimdal - asn1.dylib (452.1.1) < 6E911973-1E1A-3F80-B955-FA78CF20FBFD > /usr/lib/libheimdal-asn1.dylib

    0x7fff99a96000 - 0x7fff99ad0ff7 com.apple.DebugSymbols /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols < 6F5853A1-5DA8-3C42-8E02-2B972F34BCE0 > (132-132)

    0x7fff99ad1000 - 0x7fff99ba9fff com.apple.CoreMedia (1.0 - 1731.15.20) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < F30D52A8-5FA9-3BFE-856F-D6EDBC725A80 >

    0x7fff99f7b000 - 0x7fff99fb3ff7 com.apple.Accounts /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts < 22DBA9B9-F70A-33CB-B87C-4D11AD66D126 > (113-113)

    0x7fff99fb4000 - 0x7fff99fdbfff com.apple.ChunkingLibrary /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary < C22F5038-7354-330F-8F38-36F187E6A4B1 > (167-167)

    0x7fff99fdc000 - 0x7fff99ffdfff com.apple.Sharing (438.0.1 - 438.0.1) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing < 679D40D7-3C04-3D2C-962B-E8A959E5889E >

    0x7fff99ffe000 - 0x7fff9a1c7ff7 com.apple.ImageIO.framework (3.3.0 - 1440) < C00A0D30-2F60-30F1-9BE5-B7FA33A13DC2 > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff9a23f000 - 0x7fff9a2a6fff com.apple.framework.CoreWiFi /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi < D5DC3626-3131-3BAA-8552-294B4CE1EFCB > (11, 0 - 1101.20)

    0x7fff9a2a7000 - 0x7fff9a2a9ffb libutil.dylib (43) < E37832CF-5EE6-345A-B0EC-FFC8D2B67375 > /usr/lib/libutil.dylib

    0x7fff9a2aa000 - 0x7fff9a2b3ff7 (137.1.1) libsystem_pthread.dylib < 1373D0F1-C6CA-364E-A6BA-8BDBD0D34670 > /usr/lib/system/libsystem_pthread.dylib

    0x7fff9a2b4000 - 0x7fff9a304ff7 com.apple.Symbolication /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication < BC1259C8-C671-3014-A9C4-85BC767EA962 > (1.4 - 58044)

    0x7fff9a6aa000 - 0x7fff9a6affff com.apple.TCC (< 96281C9E-B2DF-325F-BFA4-0A15150165EC > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x7fff9a73e000 - 0x7fff9a744fff com.apple.IOAccelerator (203.10 - 203.10) < A9827A1B-1337-31CF-9D96-791868B51A49 > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator

    0x7fff9a802000 - 0x7fff9a8edff7 com.apple.QuickLookUIFramework (5.0 - 696.1) < 921959F6-96C2-3814-8D20-0E761AB51199 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI

    0x7fff9a8ee000 - 0x7fff9a8f1ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) < E4643432-0DF2-3CD3-9F63-3A7665B25838 > /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo

    0x7fff9a8f2000 - 0x7fff9abe7ff3 com.apple.HIToolbox (2.1.1 - 806) < 359FC9DB-B64C-3BC7-B9DA-401D8A5337DC > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox

    0x7fff9abe8000 - 0x7fff9ac75fe7 (1081.1.3) libsystem_c.dylib < A60CE86D-1FF3-32AD-A672-C7597F884529 > /usr/lib/system/libsystem_c.dylib

    0x7fff9ada8000 - 0x7fff9af53ffb (12.0.34.12) GLEngine < 0D0BD639-B516-3216-A0A5-AC4CDD202689 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine

    0x7fff9afc5000 - 0x7fff9b0abfef unorm8_bgra.dylib (2.6.4.1) < 28F838EA-19E5-3724-99FF-B61132555D09 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib

    0x7fff9b266000 - 0x7fff9b266fff com.apple.Carbon /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon < DF95E7EB-1CFC-3C83-B114-60FFEEAE166E > (154 to 157)

    0x7fff9b26c000 - 0x7fff9b277fff (3247.10.11) libkxld.dylib < 22BBF963-3808-3320-8BDA-5B7A99035F14 > /usr/lib/system/libkxld.dylib

    0x7fff9b278000 - 0x7fff9b294fff com.apple.GenerationalStorage (2.0 - 239) < 05652CAD-E7F5-3225-929D-E13F241FBA41 > /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt storm

    0x7fff9b297000 - 0x7fff9b297fff (600.0.41.2) libmetal_timestamp.dylib < 2E74E3DE-B13E-3645-8A32-90D889FE92E1 > /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib

    0x7fff9b298000 - 0x7fff9b2c1fff libc ++ abi.dylib (125) < F5027B46-1801-344D-BD51-2E6D188C8900 > /usr/lib/libc++abi.dylib

    0x7fff9b36c000 - 0x7fff9b3fbff7 libCoreStorage.dylib (517) < 1CC0776E-B682-3CC1-8CC2-2305E0FA439D > /usr/lib/libCoreStorage.dylib

    0x7fff9b412000 - 0x7fff9b467fff com.apple.AE (701-701) < 87FDCC5A-82AC-36A2-BFE9-D0B2A3D870F1 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE

    0x7fff9b496000 - 0x7fff9b525fff com.apple.CorePDF /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF < 023E8BCC-DA79-34EE-8975-45690E97F862 > (4.0 - 4)

    0x7fff9b526000 - 0x7fff9b54afff (304, 9-304, 9) com.apple.MultitouchSupport.framework < 90E9EC0A-57D0-331E-AE0D-FF1A7756A409 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t

    0x7fff9b54d000 - 0x7fff9b54effb libremovefile.dylib (41) < C7CFF5F2-AFFB-3C8D-BDB4-D66D50E657C0 > /usr/lib/system/libremovefile.dylib

    0x7fff9b54f000 - 0x7fff9b55dfff com.apple.ToneLibrary (< E8B44453-4E70-393C-AECF-988D0A8284A6 > /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary 1.0 - 1.).

    0x7fff9b5a2000 - 0x7fff9b5aafff libcopyfile.dylib (127) < CA2602AB-E8B7-3CD8-A0C5-D86E35FDA09F > /usr/lib/system/libcopyfile.dylib

    0x7fff9b5ab000 - 0x7fff9b60bff7 com.apple.QuickLookFramework (5.0 - 696.1) < 727FE6BE-8E92-38A3-BDEB-2410B553BB27 > /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook

    0x7fff9b60c000 - 0x7fff9b623fff libsystem_asl.dylib (322) < 97D794DA-8CE5-3676-AC5E-364F6D172BDA > /usr/lib/system/libsystem_asl.dylib

    0x7fff9b687000 - 0x7fff9bb45fcf com.apple.vImage (8.0 - 8, 0) < 04ADAB75-1588-32BD-96B9-8CEE5543599E > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage

    0x7fff9bb58000 - 0x7fff9bda3fff com.apple.AddressBook.framework (9.0 - 1679) < 87B2D9E4-A042-3A99-BC5F-BA48D6896D12 > /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook

    0x7fff9bda4000 - 0x7fff9bdaffff libGL.dylib (12.0.34.12) < 182B925C-7BF6-3EFE-85AF-54760206A6FD > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff9bdf6000 - 0x7fff9be15ff7 com.apple.framework.Apple80211 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < B94B708C-D7E8-3733-B360-0D5A48FBB873 > (11, 0 - 1102.32)

    0x7fff9be16000 - 0x7fff9be33fff com.apple.AppleVPAFramework (2.0.15 - 2.0.15) < 86BC6DCE-8590-38E3-9C0C-52E97F617B58 > /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

    0x7fff9be47000 - 0x7fff9be4dff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) < 433F8745-874A-39B3-A7C6-2EDA8C2C6B4A > work/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame

    0x7fff9be57000 - 0x7fff9be65ff7 libbz2.1.0.dylib (38) < 99C5121D-8147-3B51-8D79-66245C863338 > /usr/lib/libbz2.1.0.dylib

    0x7fff9be66000 - 0x7fff9c1bafff com.apple.Foundation /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation < 3AD7B198-3943-3919-B6F2-B0C28DC817B1 > (6, 9 - 1255.1)

    0x7fff9c4f8000 - 0x7fff9c503ff7 (12.0.34.12) libGPUSupport.dylib < F3C93564-1800-3B23-83E4-C6ECBDEEEEDA > /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib

    Summary of the external change:

    Calls made by other processes for 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: 1626

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

    ReadOnly part of libraries: Total = 543.5 M resident = 0 K (0%) swapped_out_or_unallocated=543.5M(100%)

    Regions in writing: Total = 404.0 M written = 0 K (0%) resident = 0 K (0%) swapped_out = 0 K (0%) unallocated=404.0M(100%)

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

    ===========                     =======  =======

    Accelerate.Framework 128K 2

    2048K 2 follow-up activity

    CG backup stores 5600K 10

    CG image 12 K 4

    CG shared images 432K 12

    CoreAnimation 48K 9

    CoreUI 260 K 12 image data

    CoreUI image file 320K 5

    Ship 8192 K 2 continuations

    Image IO 1748 K 16

    Kernel Alloc once 8 K 3

    MALLOC 297,0 M 77

    MALLOC 32K 7 cover page

    (Unassigned) (reserved) MALLOC_LARGE 7436 K 3 reserved VM address space

    Tag memory 242 12K 2

    249 156 K 3 memory tag

    OpenCL                               8K        2

    Corpse process Info 2048 K 2

    BATTERY GUARD 56.1 M 38

    The stack of 25.9 M 46

    VM_ALLOCATE 30.4 M 23

    __DATA 47.5 M 828

    2588 K 2 __GLSLBUILTINS

    __IMAGE 528K 2

    __LINKEDIT 129.7 M 339

    __TEXT 413,8 613 M

    __UNICODE 552K 2

    mapped file 160.1 M 30

    16.4 shared memory M 12

    ===========                     =======  =======

    TOTAL 1.2 G 2079

    TOTAL, less reserved VM space 1.2 G 2079

    Model: Macmini5, 1, MM51.0077.B12 of BootROM, 2 processors, Intel Core i5, 2.3 GHz, 16 GB, MSC 1.76f0

    Graphics card: integrated Intel HD Graphics 3000, Intel HD Graphics 3000,

    Memory module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464544

    Memory module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464544

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4: 0xE4), Broadcom BCM43xx 1.0 (5.106.98.100.24)

    Bluetooth: Version 4.4.2f1 16391, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: TOSHIBA MK5065GSXF, 500,11 GB

    USB device: USB 2.0 Bus

    USB device: Hub

    USB Device: IR receiver

    USB device: USB 2.0 Bus

    USB device: Hub

    USB device: Hub BRCM20702

    USB Device: USB Bluetooth host controller

    Bus crush: Mac mini, Apple Inc., 25.1

    reset your preferences: https://forums.adobe.com/thread/526990

Maybe you are looking for