[JS][CS5] ScriptUI

I was just wondering if it was possible to link a web graphic to a ScriptUI window using something like this:
myImage = myDialog.add('image',undefined,'http://dl.dropbox.com/u/1942401/tabs.gif');
Just wondered....
The above example didn't work by the way, and the link is a public link.
Roy

Roy Marshall wrote:
How do I process the string from an existing icon, and the the correct syntax for reading it back in?  Can you help with this?
Here is the basic idea:
function serializeFile(/*str*/path)
     var f = new File(path),
          s = null;
     if( f && (f.encoding='BINARY') && f.open('r') )
          s = f.read();
          f.close();
     return s && s.toSource();
alert( serializeFile("/path/to/my/file.png") );
@+
Marc

Similar Messages

  • [JS CS4/CS5] ScriptUI Click Event Issue in JSXBIN

    Still working on a huge ScriptUI project, I discovered a weird issue which appears to *only* affect 'binary compiled' scripts (JSXBIN export), not the original script!
    When you repeatedly use addEventListener() with the same event type, you theorically have the possibility to attach several handlers to the same component and event, which can be really useful in a complex framework:
    // Declare a 'click' manager on myWidget (at this point of the code)
    myWidget.addEventListener('click', eventHandler1);
    // Add another 'click' manager (for the same widget)
    myWidget.addEventListener('click', eventHandler2);
    When you do this, both eventHandler1 and eventHandler2 are registered, and when the user clicks on myWidget, each handler is called back.
    The following script shows that this perfectly works in ID CS4 and CS5:
    // Create a dialog UI
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    // Set some widget properties
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    // g->click Listener #1
    g.addEventListener('click', function(ev)
         e1.text = 'click handler 1';
    // g->click Listener #2
    g.addEventListener('click', function(ev)
         e2.text = 'click handler 2';
    w.show();
    The result is that when you click on the group box, e1.text AND e2.text are updated.
    But now, if I export the above code as a JSXBIN from the ESTK, the 2nd event handler sounds to be ignored! When I test the 'compiled' script and click on the group box, only e1.text is updated. (Tested in ID CS4 and CS5, Win32.)
    By studying the JSXBIN code as precisely as possible, I didn't find anything wrong in the encryption. Each addEventListener() statement is properly encoded, with its own function handler, nothing is ignored. Hence I don't believe that the JSXBIN code is defective by itself, so I suppose that the ExtendScript/ScriptUI engine behaves differently when interpreting a JSXBIN... Does anyone have an explanation?
    @+
    Marc

    John Hawkinson wrote:
    Not an explanation, but of course we know that in JSXBIN you can't use the .toSource() method on functions.
    So the implication here is that perhaps the .toSource() is somehow implicated in event handlers and there's some kind of static workaround for it?
    Perhaps you can get around this by eval() or doScript()-ing strings?
    Thanks a lot, John, I'm convinced you're on the good track. Dirk Becker suggested me that this is an "engine scope" issue and Martinho da Gloria emailed me another solution —which also works— and joins Dirk's assumption.
    Following is the result of the various tests I did from your various suggestions:
    // #1 - THE INITIAL PROBLEM// =====================================
    // EVALUATED BINARY CODE
    var handler1 = function(ev)
         ev.target.parent.children[1].text = 'handler 1';
    var handler2 = function(ev)
         ev.target.parent.children[2].text = 'handler 2';
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBn0AKJAnASzIjIjBjOjEjMjFjShRByBNyBnA . . . . .");
    // RESULT
    // handler 1 only, that's the issue!
    Now to John's approach:
    // #2 - JOHN'S TRICK
    // =====================================
    var handler1 = function(ev)
         ev.target.parent.children[1].text = 'handler 1';
    var handler2 = function(ev)
         ev.target.parent.children[2].text = 'handler 2';
    // EVALUATED BINARY CODE
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBn0AIbCn0AFJDnA . . . . .");
    // RESULT
    // handler1 + handler2 OK!
    This test shows that if handler1 and handler2's bodies are removed from the binary, the script works. Note that the handlers are declared vars that refer to (anonymous) function expressions. (BTW, no need to use a non-main #targetengine.) This is not a definitive workaround, of course, because I also want to hide handlers code...
    Meanwhile, Martinho suggested me an interesting approach in using 'regular' function declarations:
    // #3 - MARTINHO'S TRICK
    // =====================================
    // EVALUATED BINARY CODE
    function handler1(ev)
         ev.target.parent.children[1].text = 'handler 1';
    function handler2(ev)
         ev.target.parent.children[2].text = 'handler 2';
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBnACMAbyBn0ABJCnA . . . . .");
    // RESULT
    // handler1 + handler2 OK!
    In the above test the entire code is binary-encoded, and the script works. What's the difference? It relies on function declarations rather than function expressions. As we know, function declarations and function expressions are not treated the same way by the interpreter. I suppose that function declarations are stored at a very persistent level... But I don't really understand what happens under the hood.
    (Note that I also tried to use function expressions in global variables, but this gave the original result...)
    Thanks to John, Dirk, and Martinho for the tracks you've cleared. As my library components cannot use neither the global scope nor direct function declarations my problem is not solved, but you have revealed the root of my troubles.
    @+
    Marc

  • CS5 ScriptUI dialogs open with no minimum width or height

    Hi There,
    Running my script as ScriptUI in CS5 seems to cause a strange issue with window drawing / resizing.  I am unable to reproduce the issue in CS6 or CC.  In some cases, when I run the script targeting CS5 from within ESTK, the initial window panel will appear very small and requires a user to resize it until it becomes totally visible.  Also, when I spawn a new dialog window from within a button's click handler, the dialog displays, but appears to have no specified or determined width or height.  As a workaround, I set the "resizing" for the dialog to true even though I would prefer not to let the user resize this particular dialog.  I tried setting preferredSize on almost all the elements so that I could minimize the use of automatic layout, but that didn't seem to do the trick.
    Has anybody encountered this?  Does CS5 require that the Bounds property is set?  It doesn't seem to be the case for CS6+
    If anyone has encountered this type of UI issue in CS5, any help or suggestions to fix would be appreciated.
    Thank you for your time and help!
    --Arie

    You can't "minimize the use of automatic layout". Either you use it, either you don't.
    I can't speak for others, but when using layout.layout(true), i often have to do many tries until "it behaves as i wanted to" (which actually means: until i find how things should be written).
    There are few rules though, and one is that preferredSize is irreliable, better use minimumSize and maximumSize (can't remember where i read that but i did, probably in the Javascript Tools Guide).
    What i do all the time is create a big group (in the exemple below it is called 'content') within the window and specify min or max dimensions for that group, not the window itself.
    Also, if you dont want the window to be resized, just set its creation property 'resizeable' to false.
    var win = new Window("palette", "myScript", undefined, {resizeable: false});
    win.alignChildren = ['left', 'top'];
    win.margins=8;
    win.content = win.add("group{ orientation:'column', margins: 0, spacing: 5, alignChildren:['left', 'top'],\
                                                " /* more stuff here */  + "\
    win.content.minimumSize = [500,300];
    win.layout.layout(true);
    win.layout.resize();
    win.show();
    If this doesnt help, please provide a bit of your code. I have CS5.5 and never encountered your issue.
    Xavier.

  • [CS4/CS5] ScriptUI focus event (Win/Mac)

    Hi friends,
    I'm looking after a way to control the focus of EditText widgets within a Dialog but I'm totally confused by the event loop logics —especially in Mac OS.
    The basic task I need to achieve is to attach a validation mechanism to an EditText. When the user has entered a wrong field and the change event occurs, I want to display an alert box, then re-activate the field. The problem is that both the change event and the alert box interfer with focus attribution. I think that user or system focus/blur events are stacked so that any command that attempts to focus back to the original widget cannot work while the stack is not empty.
    Here is a simple test to illustrate my problem. The script is supposed to display an alert when the user change a field, then it tries to focus back to the corresponding field through myWidget.active = true. This does not work.
    var     u,
         w = new Window('dialog',u,u,{xname:'Window'}),
         e1 = w.add('edittext', u, "",{xname:'EditText (1)'}),
         e2 = w.add('edittext', u, "",{xname:'EditText (2)'}),
         eInfo = w.add('edittext', [0,0,300,400], "",{xname: 'EditText (Info)', multiline:true}),
         b = w.add('button',u,'Clear', {xname:'Button'});
    e1.characters = e2.characters = 20;
    var anyEvent = function(ev)
         var tg = ev.target;
         eInfo.text += (tg.properties.xname + ' -> ' +
              ev.type.toUpperCase() +
              (tg.active ? '  (active)':'  (non active)') +
              '\n');
    var changeEvent = function(ev)
         eInfo.text += ('\n--- BEFORE Breaking Alert\n');
         alert("Breaking alert");
         // Trying to FOCUS back on ev.target
         eInfo.text += ('\n--- BEFORE Active=true\n');
         ev.target.active = true;
         eInfo.text += ('--- AFTER Active=true\n');
    // Event 'inspector'
    w.addEventListener('change', anyEvent);
    w.addEventListener('focus', anyEvent);
    w.addEventListener('blur', anyEvent);
    // Events
    w.addEventListener('change', changeEvent);
    b.onClick = function(){eInfo.text = '';};
    w.show();
    I tried various strategies to address this problem by using event timestamps and/or dispatching custom new UIEvent('focus'...), but nothing works conveniently.
    In addition I got odd behaviours in Mac OS. The below screenshot shows a piece of a ScriptUI dialog —using a custom framework, so don't be surprised by the skin! What is weird is that in a particular state *two* EditText controls have the focus ring at the same time:
    I didn't know such a thing could happen. I probably did not understand anything about the 'focus' paradigm.
    Any help from an expert would be greatly appreciated. Thanks a lot!
    @+
    Marc

    Harbs. wrote:
    It does seem to change the focus, but you are still left with a cursor sometimes (which does not work).
    The one that has the focus rect allows input and .active = true seems to work fine. (Mac 10.6 CS5)
    Harbs
    Well, this is not so clear to me. My beta-tester —also Mac CS5— reports unpredictable behaviors. It also depends on how the user change the focus: using the TAB key and clicking into another field are not equivalent. (It seems that the change-focus-by-click event is more complicated to counteract...)
    But generally, on Mac platforms, we cannot be sure that setting myEditText.active = true gives the focus back to myEditText when other user events are running. The problem is that the active property is not always 'reliable'. We found that (under unstable circumstances) e1.active might returns true while e2 actually owns the focus ring! Somehow, Mac systems can dissociate the 'active' control and the focus... I don't know.
    My assumption is that the focus has a high level priority in the Mac event loop and that it closely mirrors the user interaction, while the active property is an abstract thing featured by the ScriptUI layer. The purpose of ScriptUI is to wrap OS events and widgets in a single scripting interface for both Mac and Win, but ScriptUI is nothing but a bridge. I suppose that "myWidget is active" and "myWidget has the focus" means exactly the same thing in Windows, so ScriptUI can easily target the focus through the active property in Win environment. But Mac OS doesn't work the same way.
    Interestingly when we set an EditText as borderless in Windows, we entirely remove the default widget appearence. On the contrary, a borderless EditText in Mac still reserve an additional region for the focus and there is no way to hide the focus ring when the control receives the inputs.
    In addition, I posted above a screenshot where two EditText instances have the focus ring at the same time. I'm not a Mac user but I was told that this is not a normal situation. Then playing with the active property in ScriptUI can really disrupt the focus behavior on Mac platforms...
    My first idea was to study more closely event triggering and to use a timestamp-based routine to keep the control of the focus. So I sent the following script to my beta-tester:
    var     u,
         w = new Window('dialog',u,u,{xname:'Window'}),
         e1 = w.add('edittext', u, "aaa",{xname:'(1)'}),
         e2 = w.add('edittext', u, "",{xname:'(2)'}),
         eInfo = w.add('edittext', [0,0,300,400], "",{xname: '(Info)', multiline:true}),
         cForce = w.add('checkbox', u, "Force default value on error"),
         b = w.add('button',u,'Clear', {xname:'(Button)', name:'ok'});
    e1.characters = e2.characters = 20;
    var fgTarget = null,
         fgTimeStamp = +new Date,
         fgAlerting = null,
         fgNonValid;
    var blurEventHandler = function(ev)
         if( fgAlerting ) return;
         var d = +new Date - fgTimeStamp;
         if( 100 < d )
              eInfo.text = '';
              fgTarget = ev.target;
              fgTimeStamp = +new Date;
              fgAlerting = null;
              fgNonValid = isNaN(fgTarget.text);
         d += ' ms';
         eInfo.text += (ev.target.properties.xname + ' is losing the focus  ' + d + '\n');
         fgTarget.active = true;
         if( fgNonValid )
              eInfo.text += ('  Re-activate ' + fgTarget.properties.xname +
                   ' from '+ ev.target.properties.xname + '\n' +
                   '  w.active=' + w.active + '\n' +
                   '  e1.active=' + e1.active + '\n' +
                   '  e2.active=' + e2.active + '\n') ;
              if( null===fgAlerting )
                   fgAlerting = true;
                   eInfo.text += '--- ALERT ---\n';
                   alert("Please enter a numeric value or let the field empty.");
                   fgAlerting = false;
                   if( cForce.value ) fgTarget.text = '50';
                   fgTimeStamp = +new Date;
    e1.addEventListener('blur',blurEventHandler);
    e2.addEventListener('blur',blurEventHandler);
    var anyEventHandler = function(ev)
         eInfo.text += (ev.target.properties.xname + ' -> ' + ev.type + '\n');
    e1.addEventListener('mousedown',anyEventHandler);
    e1.addEventListener('mouseup',anyEventHandler);
    e1.addEventListener('keydown',anyEventHandler);
    e1.addEventListener('keyup',anyEventHandler);
    e2.addEventListener('mousedown',anyEventHandler);
    e2.addEventListener('mouseup',anyEventHandler);
    e2.addEventListener('keydown',anyEventHandler);
    e2.addEventListener('keyup',anyEventHandler);
    b.onClick = function(){eInfo.text='';}
    e1.active = true;
    w.show();
    This script gives unstable results. ScriptUI does not always report every event that actually occurs.
    But as a general rule, what the user has done supersedes what the script can do.
    Any help from ScriptUI / Mac gurus would be highly welcome.
    @+
    Marc

  • [JS CS5] ScriptUI: changing position of cursor in EditText control

    Is there a way to change the position of the cursor in an EditText control? I've played around with the textselection property, but with no luck in getting the cursor between the right characters.

    Hi JJ Fulks,
    ScriptUI does not allow to directly change the position of an EditText's cursor but there is a trick to emulate this by successively setting text and textselection.
    As far as I remember—I cannot test this now, sorry—if you want to get aaaa•bbbb (where • represents the cursor location), you need to do:
    myEditText.text = "bbbb";
    myEditText.textselection = "aaaa";
    (or something similar).
    @+
    Marc

  • [CS5/JS/ScriptUI]: All contents is removed from tabbedpanel when showing alert box or other Window.

    When I open a new window (an alert box, another scriptUI window, or an old style InDesign dialog) from my non modal ScriptUI interface, the contents inside all tabs on the tabbedpanel of the window disappear completely, and the last tab is selected.
    Other controls, outside the tabbed panel (but in the same window) are left untouched.
    I suspect the error has to do with the tab control. I have been able to recreate the error in an extremely simple window, and I attach the code below.
    #targetengine 'test'
    var Window1 = new Window('palette','Test',undefined);
    buildWindow();
    Window1.show();
    function buildWindow(){
        Window1.tabMain = Window1.add('tabbedpanel',undefined,undefined);
        Window1.tabMain.minimumSize= [450,170];
        Window1.tabMain.Tab1 = Window1.tabMain.add('tab',undefined,"Tab 1");
        Window1.tabMain.Tab1.Static1 = Window1.tabMain.Tab1.add('staticText',undefined,"Text on tab 1");
        Window1.tabMain.Tab2 = Window1.tabMain.add('tab',undefined,"Tab 2");
        Window1.tabMain.Tab2.Static1 = Window1.tabMain.Tab2.add('staticText',undefined,"Text on tab 2");
        Window1.tabMain.Tab1.btnTest = Window1.tabMain.Tab1.add('button',undefined,"Test");
        Window1.tabMain.Tab1.btnTest.onClick = function(){alert('btnTest_onClick')};
        // Trying with calls to layout . (This button is not affected by the alert showing - only controls inside the tabbed panel)
        Window1.btnLayout = Window1.add('button', undefined, 'Window1.layout.layout()');
        Window1.btnLayout.onClick = function(){Window1.layout.layout()};
    The interface works well in CS4, and also if I make the window modal (by creating it as a "dialog").
    In CS5, the result is this:
    Calling layout.layout() or layout.resize() doesn't do anything.
    If someone else would like to try my code, do you get the same effect?
    Is the behaviour known?
    Is there a way to prevent this from happening for non modal ScriptUI windows?
    Best regards,
    Andreas Jansson

    Thanks Marijan, for testing and letting me know!
    I filed a bug report now. We would perhaps have to "force" a couple of our clients to an upgrade from CS5 to CS5.5 in order to beat this bug and get it working, unless Adobe acknowledges it quickly, which I don't count on.
    No good news then... I took for granted that the interface would work in CS5 if I made it in CS4.
    (The thing that I was mostly concerned about was a tree view which I tested in Mac/PC and on CS4/CS5. Not the "tabbed panel"...)
    Andreas
    Adding this answer I got from Adobe:
    Monday, November 21, 2011 2:21:03 AM PST
    Hello Andreas,
    I was able to replicate this problem with InDesign CS5. This bug seems
    to have already been fixed as a side effect of some code change within
    InDesign CS5.5.
    I have logged this under bug # 3050997. This will now be worked upon by
    InDesign engineering and should be fixed soon.
    I'll keep you informed about updates on this bug.
    Message was edited by: Andreas Jansson. Response from Adobe added.

  • ScriptUI Checkbox onClick fires differently in CS5 vs CS3?

    I'm developing an application consisting of a ScriptUI interface and a custom InDesign template. The ScriptUI interface contains a few checkboxes, with onClick event handlers assigned to read their value and store them to a preferences variable whenever they change. This all works perfectly in InDesign CS3 which was my primary development environment.
    Now I need to get this application compatible with InDesign CS5, but the checkboxes seem to consistently be returning the wrong value. No matter whether my event handler reads this.value, event.target.value or a direct reference to the checkbox, the returned value is the opposite of the expected. If I use the direct reference to read the value from elsewhere though, the returned value is correct! It almost seems like in CS5 the onClick event handler is fired before the value is changed, while in CS3 it is fired after the value is changed. Just tried CS4 and it seems to behave the same way as CS5.
    Did they actually change the checkboxes to behave this way (which makes no sense to me) or am I doing something wrong? Is there any way to get the old behavior back, or is the only solution to manually invert the value if the script detects CS4 or later as the runtime?

    Mayhem SWE wrote:
     I wonder how the execution order is in a web browser. The only valid reason I can come up with to justify the CS4/5 change would be if this is how a web browser would behave (perhaps in order to give you an opportunity to cancel the event before the value is changed?), but it is still quite confusing and illogical IMHO...
    I totally agree with you. The reason behind this —I think— is that the ScriptUI event model has been modified in CS4 in order to enhance the compliance with the DOM Level 3 Events Specification — http://www.w3.org/TR/DOM-Level-3-Events — which states that the click event must be cancelable. Thus you probably can use myClickEvent.preventDefault() in CS4/CS5 while this probably has no effect in CS3 (not tested). I suppose that the checkbox value should be actually changed if and only if the event is completed and not canceled. That makes sense, but the counterpart is that there is no more equivalence between using the onClick handler and a 'pure' click event listener: myWidget.addEventListener(...)
    On this subject, the specification says that using the shortcut myWidget.onEvent = myFunction to register an 'event listener' depends on the host language: "Because the details of this are often language-specific, this type of event listener registration is not defined in this specification, but in general, any event type may be used as an attribute in this way by adding the prefix on- to the event type name, and events so dispatched should behave consistently with the event registration and propagation defined in this specification, with the same interfaces, properties, and methods." —DOM Level3 Events Specification, 4.3 "Interface EventTarget", note 2.
    Of course, the easiest approach is to use myCheckbox.onClick = ... since the handler is called once the value has been updated, whatever the version of ScriptUI. But I don't believe it's a good practice if you're working on a complex project —especially a library!— because the onClick handler can be easily rewritten by the client code, and because you may need to deal with event propagation/cancellation at a deeper level. For my part I always use addEventListener(...) and removeEventListener(...) in my library code, although it implies that I fit my implementation to the ScriptUI version. (In CS3, reversing the checkbox value, etc.) That way the client code cannot pollute the basic behavior of my widgets.
    Hope that helps,
    @+
    Marc

  • [JS/CS4/CS5] Catching a selection event in a ScriptUI interface.

    I've got this ScriptUI interface (javascript based), and now I wonder if it would be possible to change one of its button captions depending on whether anything is selected or not, in the active document (would also have to be updated if the user selects or opens another document).
    1. Is it possible to write event listeners for this?
    2. Would it be possible to include this in the same script as the rest of the Script UI interface code (that is, I'd prefer avoiding a separate file in the startup folder).
    3. What's the best source of information regarding events, which ones there are, and how to handle them in javascript?
    Andreas

    1. Yes. The selection events work well in my experience.
    2. Yes, you don't have to add them at startup. You can do something like:
    app.addEventListener("afterSelectionChanged", selectionChangedFunction);
    before you open your window. Remove the listener in the onClose event of the window. I think you'll have to have some error trapping in the selectionChangedFunction to deal with app.selection erroring after a document close or during a revert.
    3. See this thread for an extension that lets you see events as they're happening.
    Jeff

  • [JS][CS5.5] Interrupting a script via ScriptUI

    I have a script that automates the placement of PDFs onto pages based on an input XML file. It works splendidly, but I would like users to be able to interrupt the placement, particularly if they have accidentally passed the wrong XML file to the script!
    Since the total time taken for the PDF placements can be a while, I put up a simple palette window containing a progress bar to give an idea of progress. I also added a cancel button, but although the window appears to have focus at least some of the time during the placements, it never becomes possible to press the cancel button, nor to close the window. The mouse pointer is an hourglass the whole time.
    Below is a simplified test script that demonstrates the problem. I've only run it on CS5.5 on Windows XP, but I believe it should work at least as far back as CS4 on Mac and Windows. It asks for a PDF file and then places it in a new document 16 times. My PC is slow enough that it takes enough time overall to give me plenty of time to hit the cancel button, if it were possible to do so. If your machine is really fast, you might want to increase gridSize so that the script has more to do.
    Is there anything I can do such that my cancel button can be pressed? I don't need to see the PDF import window, so if that can and needs to be turned off, that's fine. I dabbled with chains of IdleTasks, and was able to press my cancel button, but the chain didn't always end, and I ended up locking things up nastily. I probably need to read up more on IdleTasks. There may be potential there, but I would like to support earlier than CS5 if possible, and IdleTasks were introduced in CS5.
    #target indesign
    (function() {
        var gridSize = 4;
        // Ask user for a PDF
        var pdfFilter =($.os.toLowerCase().indexOf("macintosh") != -1) ?
            (function(file) { return file.name.match(/\.pdf$/); }) : '*.pdf';
        var pdfFile = File.openDialog("Choose a small PDF to place...", pdfFilter);
        if (!pdfFile) { return; }
        // Show a simple progress bar
        var active = true;
        var win = new Window('palette', 'Placing ' + pdfFile.name);
        var label = win.add('statictext', undefined, '');
        label.preferredSize.width = 300;
        label.justify = 'left';
        var progressBar = win.add('progressbar', undefined, 0, gridSize * gridSize);
        progressBar.preferredSize = [ 300, 12 ];
        var cancelButton = win.add('button', undefined, 'Cancel');
        cancelButton.onClick = function() { win.close(); };
        win.onClose = function() { active = false; };
        win.show();
        // Make a grid of rectangles and place the PDF in each rectangle,
        // advancing the progress bar as we go
        var doc = app.documents.add();
        var page = doc.pages[0];
        var mp = page.marginPreferences;
        var originX = page.bounds[1] + mp.left;
        var originY = page.bounds[0] + mp.top;
        var rectWidth = (page.bounds[3] - mp.right - originX) / gridSize;
        var rectDepth = (page.bounds[2] - mp.bottom - originY) / gridSize;
        var placePDF = function(n) {
            var y = Math.floor(n / gridSize);
            var x = n % gridSize;
            label.text = 'Placing PDF in [ ' + x + ', ' + y + ' ]';
            var rect = page.rectangles.add();
            rect.geometricBounds = [
                originY + y * rectDepth,
                originX + x * rectWidth,
                originY + (y + 1) * rectDepth,
                originX + (x + 1) * rectWidth
            rect.strokeWeight = 0;
            var pdfList = rect.place(pdfFile);
            pdfList[0].fit(FitOptions.PROPORTIONALLY);
            (progressBar.value)++;
            // Even this sleep doesn't let me press the cancel button!
            //$.sleep(1000);
        for (var i = 0; active && i < gridSize*gridSize; i++) {
            placePDF(i);
        win.close();

    Sadly, neither of your suggestions in reply 1 appear to make any difference.
    Out of interest though, how would I additionally test that the button had been clicked if the Window held the event listener, rather than the button?
    In regards to reply 2, an extra alert does not show itself either. If the onClick was being acted upon, my window would close. It is only when the window closes that the "active" boolean is set to false to terminate the placement loop, but my window remains open no matter how often I click.
    I think the trouble is really that I'm expecting multi-threaded behaviour (one thread for the placement loop, one to look after the gui and process clicks) when in reality there is only one thread, and it's busy placing PDFs. I wonder though if there is some pseudo-way to carve up the single thread and get it to check GUI state often enough to get what I want. As I said earlier, using IdleTasks sort of works in principle, but can get a little out of control!

  • [CS4/CS5, Win] Pasting into ScriptUI interface, focus-problems

    There are discussions about palettes receiving keystrokes when they are not in focus (and something that regards mouse events here):
    http://forums.adobe.com/message/1109106#1109106
    and here: http://forums.adobe.com/message/3564410#3564410
    I have a specific question about pasting, which is the most annoying thing I've noticed (yet) regarding the behaviour of the non modal window types. Ctrl+V puts the clipboard contents in the active document instead of pasting where the cursor is, in the textbox on the ScriptUI window.
    Mouse right click + popup menu (Paste) is a workaround, but it doesn't prevent the accident of putting the pastboard contents in the document using the keyboard (you might not even notice). I'd like Ctrl+V to go to the Script UI window, when the Script UI window has focus.
    Are there workarounds for this as well?
    Best regards,
    Andreas

    As far as I know, no, there aren't any workarounds for that.
    Peter

  • ScriptUI openDialog not working downgrading from CS5.5 to CS4

    So here is my newest bit of fun.  The scripts I have been writing have been in CS5.5, but I was informed today that they need to run on CS4.
    Most everything seems to be working, except one critical piece. Here is  a quick summary of what I am doing. 
    I am opening a window that has two text boxes and two buttons.  The first button opens up a file dialog box that lets the client choose where their XML file is located.  When they select it and click ok, it populates the first text box with the path. 
    The second button opens up a folder dialog box that lets the client choose the location of their images folder, and when they click ok, it populates the second text box with the path. 
    Everything works peachy in CS5.5.  But when I tried it in CS4, this is what it is doing.  When I choose a file and click OK, it is populating the text box with the word "File".  When I choose a folder, it is populating the second box with the word "Folder"
    Here are the relevant functions:
    f2.onClick = function()
         tf = File.openDialog("Select your XML File","*.xml");
         if (tf != null)
              e2.text = tf;
              tf = tf.fsName;
    f3.onClick = function()
         var tfol = new Folder("~/My Documents")
         tfo = tfol.selectDlg("Get Folder");
         if (tfo != null)
              e3.text = tfo;
              tfo = tfo.fsName;
    Like I said, this is working fine is CS5.5, but I need to know what is different in CS4 and how to get it to work.
    Thanks in advance for all your help.

    Add a line to your code:
    if (tf != null)
         $.writeln (tf.constructor.name);
          e2.text = tf;
          tf = tf.fsName;
    And run your script from the ESTK with the console open. You'll see that File is printed. So tf is not a string but a file object. Use e2.text = tf.fsName to display the file's full path name or e2.text = tf.name to show just the name. The same applies to the other function, the one that shows Folder instead of the folder's name.
    Peter

  • ScriptUI and Windows 8

    Hi,
    Every so often I'm getting feedback from users that certain ScriptUI things are not working in Windows 8.
    I don't have Windows 8, so I can't test.
    Has anyone come across problems with ScriptUI and Windows 8?
    For example, I have a free script here:
    http://www.freelancebookdesign.com/scripts/quick-apply-with-next-style
    Somebody has just posted that it's not working with Windows 8 (but it does work with Windows 7).
    Can anyone shed any light on this?
    Thanks,
    Ariel

    Hi Fred,
    I think the problem exists also with CS6 on Windows 8. The new CC SciptUI is completely rewritten, and was probably tested on Windows 8 as well.
    If you've got Windows 8 installed and ID CS5 or CS6, you should be able to test this and see what, if anything, can be done.
    I doubt that Adobe are going to fix it, of course, because as far as they're concerned CC is probably the "fix" they want people to use!
    Actually, Microsoft are probably the people to blame, as their aim is always backwards compatibility with new Windows releases, and this is broken for ScriptUI.

  • CS5 crashing every time i open it

    hello,
    i have photoshop cs5 and since last night every time i try to open it, it instantly crashes. the rest of the creative suite works fine, just photoshop has an issue. if anyone can help i'd really appreciate it. for now i just downloaded a trial of cs5 and that is working fine...here is a copy of the report...
    Process:         Adobe Photoshop CS5 [2142]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265) (12.0.4)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-05-05 11:53:54.073 -0400
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          8503 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  11 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      EA8F049A-345D-4410-9D64-A3C61C02F274
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000aa4e5887
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.adobeswfl               0x0000000120ea4920 APXGetHostAPI + 2584320
    1   com.adobe.adobeswfl               0x000000012108347b SWFLPlayer_Initialize + 17627
    2   com.adobe.adobeswfl               0x0000000121087466 SWFLPlayer_Initialize + 33990
    3   com.adobe.ape                     0x000000011f96cf74 APEInitialize + 2980
    4   com.adobe.ape                     0x000000011f971e6f APEPlayerLoadComponent + 63
    5   com.adobe.PSAutomate              0x000000011f442b3a ScriptUI::APE_Player::apLoadComponent(ScCore::String const&) + 138
    6   com.adobe.PSAutomate              0x000000011f43dc25 ScriptUI::FlexServer::initializeServerPlayer(Opaque_APEPlayer*, bool, bool) + 245
    7   com.adobe.PSAutomate              0x000000011f437644 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 260
    8   com.adobe.PSAutomate              0x000000011f42d29e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    9   com.adobe.PSAutomate              0x000000011f30321e JavaScriptUI::IJavaScriptUI() + 544
    10  com.adobe.PSAutomate              0x000000011f3042d8 InitJavaScriptUI() + 106
    11  com.adobe.PSAutomate              0x000000011f304ba4 CScriptPs::DoLateInitialize() + 622
    12  com.adobe.PSAutomate              0x000000011f304ed1 CScriptPs::DoExecute(PIActionParameters*) + 763
    13  com.adobe.PSAutomate              0x000000011f305910 PluginMain + 110
    14  com.adobe.Photoshop               0x00000001006fdf96 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4332282
    15  com.adobe.Photoshop               0x0000000100276f66 0x100000000 + 2584422
    16  com.adobe.Photoshop               0x00000001002770f3 0x100000000 + 2584819
    17  com.adobe.Photoshop               0x00000001000711ba 0x100000000 + 463290
    18  com.adobe.Photoshop               0x00000001000665d3 0x100000000 + 419283
    19  com.adobe.Photoshop               0x0000000100066696 0x100000000 + 419478
    20  com.adobe.Photoshop               0x000000010024eadf 0x100000000 + 2419423
    21  com.adobe.Photoshop               0x0000000100278377 0x100000000 + 2589559
    22  com.adobe.PSAutomate              0x000000011f3043d3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    23  com.adobe.Photoshop               0x0000000100249fed 0x100000000 + 2400237
    24  com.adobe.Photoshop               0x00000001000711ba 0x100000000 + 463290
    25  com.adobe.Photoshop               0x00000001000665d3 0x100000000 + 419283
    26  com.adobe.Photoshop               0x0000000100066696 0x100000000 + 419478
    27  com.adobe.Photoshop               0x00000001012e0583 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793831
    28  com.apple.Foundation              0x00007fff846398f5 __NSFireTimer + 114
    29  com.apple.CoreFoundation          0x00007fff87422be8 __CFRunLoopRun + 6488
    30  com.apple.CoreFoundation          0x00007fff87420dbf CFRunLoopRunSpecific + 575
    31  com.apple.HIToolbox               0x00007fff86b7891a RunCurrentEventLoopInMode + 333
    32  com.apple.HIToolbox               0x00007fff86b7871f ReceiveNextEventCommon + 310
    33  com.apple.HIToolbox               0x00007fff86b785d8 BlockUntilNextEventMatchingListInMode + 59
    34  com.apple.AppKit                  0x00007fff8177ce64 _DPSNextEvent + 718
    35  com.apple.AppKit                  0x00007fff8177c7a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    36  com.apple.AppKit                  0x00007fff8174248b -[NSApplication run] + 395
    37  com.adobe.Photoshop               0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    38  com.adobe.Photoshop               0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    39  com.adobe.Photoshop               0x00000001000682e6 0x100000000 + 426726
    40  com.adobe.Photoshop               0x00000001002371f1 0x100000000 + 2322929
    41  com.adobe.Photoshop               0x0000000100237281 0x100000000 + 2323073
    42  com.adobe.Photoshop               0x00000001000022f4 0x100000000 + 8948
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff888e316a kevent + 10
    1   libSystem.B.dylib                 0x00007fff888e503d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff888e4d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff888e483e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff888e4168 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff888e3f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff888e439c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x00000001090bdc53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x00000001090b6cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x00000001090bdcbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff888ca32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff82cde1f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011bd4ab93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff82c49411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff82d07e27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff82c77310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff82c7121b MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                          0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore    0x00007fff82c49411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88904e59 nanosleep + 148
    2   com.adobe.PSAutomate              0x000000011f482e4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x000000011f464d83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x000000011f482f46 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff888e3f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff888e439c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x0000000120e7f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x0000000120c40a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x0000000120e7f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x0000000120e7f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x0000000120e7f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x0000000120e7f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x0000000120c40a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x0000000120e7f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x0000000120e7f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x0000000120e7f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff888ca2da mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff888ca94d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff87421932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff87420dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices     0x00007fff833ba61b MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices     0x00007fff833bc1e6 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff888ca33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88908cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x0000000120e7f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x00000001210148e5 APXGetHostAPI + 4091589
    4   com.adobe.adobeswfl               0x0000000120e7f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x0000000120e7f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x0000000120e7f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000120b2eaf0  rbx: 0x0000000121c7b000  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
      rdi: 0x0000000121c7b000  rsi: 0x0000000121c5d000  rbp: 0x00007fff5fbfd240  rsp: 0x00007fff5fbfcfb8
       r8: 0x00000000000001cb   r9: 0x0000000121bb7280  r10: 0x000000000000001d  r11: 0x00007fff5fbfcf4f
      r12: 0x0000000121c5d000  r13: 0x0000000121c7b000  r14: 0x0000000000000000  r15: 0x0000000121c5d000
      rip: 0x0000000120ea4920  rfl: 0x0000000000010246  cr2: 0x00000000aa4e5887
    Binary Images:
           0x100000000 -        0x1026fbfff +com.adobe.Photoshop 12.0.4 (12.0.4x20110407.r.1265) (12.0.4) <6BFE637D-7ADA-BD5C-F1C5-64AD4688D89D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x1032f4000 -        0x10336cfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103382000 -        0x103389fff  org.twain.dsm 1.9.4 (1.9.4) <82EBD05C-E2FB-ADC0-4040-F8855F97D73B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103391000 -        0x1033a1ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1033ac000 -        0x1033b2ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033b9000 -        0x1035bffef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x103652000 -        0x103800fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1038a2000 -        0x103cd2fef +AdobeMPS ??? (???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e2c000 -        0x104157ff7 +AdobeAGM ??? (???) <770E65CA-643B-CFEE-2BE1-F73D45B77D09> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104224000 -        0x10454cfe7 +AdobeCoolType ??? (???) <9979447D-9477-BC48-A84E-8A6A6AF380B5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045e4000 -        0x104605ff7 +AdobeBIBUtils ??? (???) <E0E813D7-0DEE-4BD6-599B-B1DE16008C3C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104612000 -        0x10463dff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x10464f000 -        0x104793fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047da000 -        0x10483ffff +aif_core ??? (???) <28B07687-9957-7C0B-B221-1B849283C87A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x10485b000 -        0x104871fff +data_flow ??? (???) <81432128-C1BC-2E87-852E-2E4FBE63DEF3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104889000 -        0x10491ffff +image_flow ??? (???) <83A775AD-5EFE-4EC1-4EE4-7A92C88D1B02> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104996000 -        0x1049b4fff +image_runtime ??? (???) <F3EE4945-4348-A9BE-61AD-A546D0371C62> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049d1000 -        0x104c00fff +aif_ogl ??? (???) <0C2C2B20-688E-18BE-B33C-9B2A816A7E65> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104cdf000 -        0x104d72fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d92000 -        0x1050dbfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10526b000 -        0x1053edfe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10548f000 -        0x105807fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x105951000 -        0x105a66fff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a8b000 -        0x105aa7fff +AdobeBIB ??? (???) <EBA9513A-E3A2-10A8-35E9-B2A8DCDE10DD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105ab1000 -        0x105b1bff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105b4e000 -        0x105c21ffb +AdobeJP2K ??? (???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c41000 -        0x105c45ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105c49000 -        0x105cc0fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105ce1000 -        0x105d3fffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d4d000 -        0x1061e8fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10676e000 -        0x1067c4feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106809000 -        0x10682effe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106868000 -        0x10686dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106872000 -        0x106a0efff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106ab6000 -        0x106b9cfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
           0x106bf4000 -        0x106c0dfeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106c1e000 -        0x106c24feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106c2b000 -        0x106c2bff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <424E55F7-B6DA-0F5C-E56B-9ECB4A2E6BA8> /usr/lib/libmx.A.dylib
           0x106c2e000 -        0x106c36ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106fdb000 -        0x106fddfef  com.apple.textencoding.unicode 2.3 (2.3) <D95D796E-4D14-665C-F439-4652C0CD453F> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff6000 -        0x106ff7fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <0739FD38-CF46-0ECC-517C-E187C5A3B8D6> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10909a000 -        0x10910aff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x119966000 -        0x11997dfe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <5C25B45F-7A9E-3259-0532-E13B34B5398A> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x119981000 -        0x1199a2fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <1CC25A05-9E4C-ACBE-546E-34063A4CEB09> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x1199a6000 -        0x1199b5fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1199b9000 -        0x1199cbfff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <CC30A563-5E4C-7ACE-3B73-90E8F582171A> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1199cf000 -        0x1199d7fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11b469000 -        0x11b5fafff  GLEngine ??? (???) <BB46BB42-B574-1E54-101B-A68E43576B26> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11b62b000 -        0x11ba4efef  libclh.dylib 3.1.1 C  (3.1.1) <49B010DC-B120-EF70-B369-FB53E56DE658> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11bad2000 -        0x11baf8fff  GLRendererFloat ??? (???) <0310BFE5-B3DE-BCD8-EFD7-42C574EBF776> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11bc00000 -        0x11bc07fff +Enable Async IO ??? (???) <3935C129-0FAE-3EAC-0CF2-4D740CD22E43> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11bc12000 -        0x11bc1bfff +FastCore ??? (???) <25D92063-457F-C14A-6BE8-1C96C54F904C> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11bc2a000 -        0x11bc8dff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11bd15000 -        0x11bd80ff0 +MultiProcessor Support ??? (???) <4CDEDB26-96A2-631F-3C4B-FC3DBE9E2A02> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11f300000 -        0x11f55dfef +com.adobe.PSAutomate 12.0.2 (12.0.2) <2A43E60A-F63A-68A0-A73C-5BEEE05E6F33> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11f77c000 -        0x11f820ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.26 (4.1.26.11099) <00717496-ACE1-7D2F-DEE7-4316D0AB52D5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11f882000 -        0x11f922fef +com.adobe.AdobeScCore ScCore 4.1.26 (4.1.26.11099) <036DBC1F-0576-705F-3507-213E9F455222> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11f968000 -        0x11f988ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x11f9df000 -        0x11f9e3fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F99C2FBC-103D-DB2D-8D53-CFB8CEFA90F8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11fb18000 -        0x11fb34ff7 +MeasurementCore ??? (???) <23B22EB7-5FF8-BAAC-CA6D-084FDEA9AA5A> /Applications/Adobe Photoshop CS5/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x11fb56000 -        0x11fb5cfff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <933CA4C6-F428-0E2E-DCBE-FA0284914092> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11fc01000 -        0x11fc2bff7  com.apple.mio.DAL.VDC_4 133.0 (1158) <75A32DC1-B6D9-A21B-7CDF-110B6C6ABDC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x11fda1000 -        0x11fddfff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <9F954DFA-3A8B-DE02-5B44-8A9B51394BEF> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x120c00000 -        0x121a47fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x200000000 -        0x200787fef  com.apple.GeForceGLDriver 1.6.24 (6.2.4) <FA0ED181-B06F-1868-B4B6-978FC4BD0DBE> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8004cfef  libGLU.dylib ??? (???) <EB4255DD-A9E5-FAD0-52A4-CCB4E792B86F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8004d000 -     0x7fff80051ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff800cf000 -     0x7fff8015bfef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8015c000 -     0x7fff80160ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80161000 -     0x7fff801defef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff801df000 -     0x7fff80249fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff8024a000 -     0x7fff80250ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff80251000 -     0x7fff8094e06f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8094f000 -     0x7fff80a59ff7  com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff80a5a000 -     0x7fff80b17ff7  com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff80b18000 -     0x7fff80bcefff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <1960E662-D35C-5D98-EB16-D43166AE6A22> /usr/lib/libobjc.A.dylib
        0x7fff80bcf000 -     0x7fff80c13fe7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff80c5e000 -     0x7fff80c74fff  com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff80c75000 -     0x7fff80cc4fef  libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff80d22000 -     0x7fff80d22ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80d9d000 -     0x7fff80e1cfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80e1d000 -     0x7fff80eadfff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff80eb5000 -     0x7fff816bffe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff816c0000 -     0x7fff81707fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff81729000 -     0x7fff81738fff  com.apple.NetFS 3.2.1 (3.2.1) <DE59FB56-8536-9999-352A-2016ADCF4FCF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81739000 -     0x7fff8212ffff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff82130000 -     0x7fff821e9fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff821ea000 -     0x7fff82239ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <F5B744D7-AEAF-6B66-43CF-6E31CDA18EAB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff8223a000 -     0x7fff824a4fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff824a5000 -     0x7fff824d4fff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff824d5000 -     0x7fff82516fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff82517000 -     0x7fff82579fe7  com.apple.datadetectorscore 2.0 (80.7) <C3A68083-AFB0-CFC6-8AA5-517C9D1489B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8257a000 -     0x7fff8259bfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff8259c000 -     0x7fff8261afff  com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff8261b000 -     0x7fff8261bff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8261c000 -     0x7fff826d1fe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff82915000 -     0x7fff82918ff7  libCoreVMClient.dylib ??? (???) <B1F41E5B-8B59-DB81-1654-C1F9B11E885F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff82b18000 -     0x7fff82b2cff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff82b2d000 -     0x7fff82b6eff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff82b6f000 -     0x7fff82bcffe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff82bd0000 -     0x7fff82c41ff7  com.apple.AppleVAFramework 4.10.12 (4.10.12) <1B68BE43-4C54-87F5-0723-0B0A14CD21E8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff82c42000 -     0x7fff82f76fff  com.apple.CoreServices.CarbonCore 861.23 (861.23) <08F360FA-1771-4F0B-F356-BEF68BB9D421> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82f77000 -     0x7fff82fb0fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <97F968EB-80ED-36FB-7819-D438B489E46E> /usr/lib/libcups.2.dylib
        0x7fff83039000 -     0x7fff83076ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83077000 -     0x7fff83084fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83085000 -     0x7fff83107fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff83108000 -     0x7fff8312efe7  libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff833ac000 -     0x7fff833f1fff  com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff833f2000 -     0x7fff8351aff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8351b000 -     0x7fff8351bff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff835d2000 -     0x7fff836a4fe7  com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff83a05000 -     0x7fff83a28fff  com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff83a29000 -     0x7fff83b40fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AFE91118-DBF3-6313-37B8-8A2002C6A46B> /usr/lib/libxml2.2.dylib
        0x7fff83b41000 -     0x7fff83b56ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff83b86000 -     0x7fff83b88fff  libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff83b89000 -     0x7fff83b9afff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
        0x7fff83b9b000 -     0x7fff83ba0ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff83ba1000 -     0x7fff83bebff7  com.apple.Metadata 10.6.3 (507.12) <9231045A-E2E3-B0C2-C81A-92C9EA98A4DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff83bec000 -     0x7fff83c8cfff  com.apple.LaunchServices 362.1 (362.1) <B4083624-2C88-0C4F-B047-40D3CC5B3325> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff83c8d000 -     0x7fff83c90fff  com.apple.help 1.3.1 (41) <AEDDF93F-BAC0-0308-68FD-039A99F3A158> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff83c91000 -     0x7fff83e4ffff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
        0x7fff83e80000 -     0x7fff83e85fff  libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff83ec8000 -     0x7fff83efafff  libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83efb000 -     0x7fff83f43ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff83f44000 -     0x7fff84065fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84066000 -     0x7fff8456afe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff845b2000 -     0x7fff845d2ff7  com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff845d3000 -     0x7fff84856ff7  com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84857000 -     0x7fff848f1fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff849a2000 -     0x7fff84ac8fff  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84ac9000 -     0x7fff84af4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <6589F0FC-41DB-8494-CA8B-487F4E328EB9> /usr/lib/libxslt.1.dylib
        0x7fff84af5000 -     0x7fff84b04fff  com.apple.opengl 1.6.11 (1.6.11) <43D5BE71-E1F6-6974-210C-17C68919AE08> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84b05000 -     0x7fff84bdffff  com.apple.vImage 4.0 (4.0) <B5A8B93B-D302-BC30-5A18-922645DB2F56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff85854000 -     0x7fff85a0bfef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff85a0c000 -     0x7fff85a13fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85aa2000 -     0x7fff85b9aff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <208C6671-4A63-B101-9885-7ECCE25DC34D> /usr/lib/libiconv.2.dylib
        0x7fff85bc5000 -     0x7fff85f62fe7  com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85f63000 -     0x7fff85f63ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86039000 -     0x7fff86104fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff86158000 -     0x7fff8616afe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff86247000 -     0x7fff86360fef  libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff86361000 -     0x7fff8649ffff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff864a0000 -     0x7fff864b6fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff864b7000 -     0x7fff866f2fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff866f3000 -     0x7fff8672cff7  com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8672d000 -     0x7fff86b07fff  com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff86b08000 -     0x7fff86b23ff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff86b24000 -     0x7fff86b2fff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff86b30000 -     0x7fff86b49fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff86b4a000 -     0x7fff86e48fe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff86faa000 -     0x7fff86faffff  libGFXShared.dylib ??? (???) <A94DE483-A586-A172-104F-1CFC5F0BFD57> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8720f000 -     0x7fff872c4fe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff872c5000 -     0x7fff872d3ff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff8738b000 -     0x7fff873d4ff7  com.apple.securityinterface 4.0.1 (37214) <08DB37D6-A716-DC37-536C-7889999EF395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff873d5000 -     0x7fff8754cfe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8754d000 -     0x7fff8755eff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff875e4000 -     0x7fff875e4ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff875e5000 -     0x7fff875e6ff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87665000 -     0x7fff876cdfff  com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff876ce000 -     0x7fff876cfff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff87745000 -     0x7fff87b88fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff87cca000 -     0x7fff87d16fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff87d17000 -     0x7fff87d3cff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87d3d000 -     0x7fff87d92fef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff880d7000 -     0x7fff882c6fe7  com.apple.JavaScriptCore 6533.19 (6533.19.1) <233B3E34-CDC4-668A-529A-7E61D510D991> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff882c7000 -     0x7fff88333ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff88337000 -     0x7fff8841cfef  com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff88426000 -     0x7fff88461fff  com.apple.AE 496.4 (496.4) <CB905496-4D6B-F26A-399D-840D26DBEE5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff884b2000 -     0x7fff884b4fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff884d1000 -     0x7fff88512fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff88513000 -     0x7fff88682fe7  com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88683000 -     0x7fff886d4fef  com.apple.HIServices 1.8.1 (???) <BE479ABF-3D27-A5C7-800E-3FFC1731767A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff886d5000 -     0x7fff88796fe7  libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff887a7000 -     0x7fff887c4ff7  libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff887c5000 -     0x7fff88854fff  com.apple.PDFKit 2.5.1 (2.5.1) <C0E3AE4B-E71A-16D8-0D51-FB7D3E3AD793> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff88855000 -     0x7fff8887dfff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff888c9000 -     0x7fff88a8afff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
        0x7fff88ab3000 -     0x7fff88b62fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88b63000 -     0x7fff88b63ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88b64000 -     0x7fff88b7afe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff88b7b000 -     0x7fff88b7cfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff88b7d000 -     0x7fff88e03fef  com.apple.security 6.1.1 (37594) <17CF7858-52D9-9665-3AE8-23F07CC8BEA1> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88e04000 -     0x7fff88e0aff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88e0b000 -     0x7fff88e0bff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88e0c000 -     0x7fff88e0fff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff88f90000 -     0x7fff88f91fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff88f94000 -     0x7fff88fa8fff  libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff88fa9000 -     0x7fff88fdafff  libGLImage.dylib ??? (???) <57DA0064-4581-62B8-37A8-A07ADEF46EE2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8901f000 -     0x7fff890a4ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff890a5000 -     0x7fff890e8ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff890e9000 -     0x7fff89130ff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8913d000 -     0x7fff8913dff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8914a000 -     0x7fff89153ff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x06400000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000

    i did the update through bridge like you suggested. i got an error at the end that said the following two components weren't installed:
      Adobe Player for Embedding 3.1
      Installation failed. Error Code: U44M1P7
      Dreamweaver CS5 11.0.4 Updater
      Installation failed. Error Code: U44M1P7
    and then i tried to launch photoshop again and it crashed. here is that report.
    Process:         Adobe Photoshop CS5 [9547]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265) (12.0.4)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-08 09:53:13.241 -0400
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          318764 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  98 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      EA8F049A-345D-4410-9D64-A3C61C02F274
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000a9de5887
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.adobeswfl               0x00000001207a4920 APXGetHostAPI + 2584320
    1   com.adobe.adobeswfl               0x000000012098347b SWFLPlayer_Initialize + 17627
    2   com.adobe.adobeswfl               0x0000000120987466 SWFLPlayer_Initialize + 33990
    3   com.adobe.ape                     0x000000011e68df74 APEInitialize + 2980
    4   com.adobe.ape                     0x000000011e692e6f APEPlayerLoadComponent + 63
    5   com.adobe.PSAutomate              0x000000011f442b3a ScriptUI::APE_Player::apLoadComponent(ScCore::String const&) + 138
    6   com.adobe.PSAutomate              0x000000011f43dc25 ScriptUI::FlexServer::initializeServerPlayer(Opaque_APEPlayer*, bool, bool) + 245
    7   com.adobe.PSAutomate              0x000000011f437644 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 260
    8   com.adobe.PSAutomate              0x000000011f42d29e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    9   com.adobe.PSAutomate              0x000000011f30321e JavaScriptUI::IJavaScriptUI() + 544
    10  com.adobe.PSAutomate              0x000000011f3042d8 InitJavaScriptUI() + 106
    11  com.adobe.PSAutomate              0x000000011f304ba4 CScriptPs::DoLateInitialize() + 622
    12  com.adobe.PSAutomate              0x000000011f304ed1 CScriptPs::DoExecute(PIActionParameters*) + 763
    13  com.adobe.PSAutomate              0x000000011f305910 PluginMain + 110
    14  com.adobe.Photoshop               0x00000001006fdf96 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4332282
    15  com.adobe.Photoshop               0x0000000100276f66 0x100000000 + 2584422
    16  com.adobe.Photoshop               0x00000001002770f3 0x100000000 + 2584819
    17  com.adobe.Photoshop               0x00000001000711ba 0x100000000 + 463290
    18  com.adobe.Photoshop               0x00000001000665d3 0x100000000 + 419283
    19  com.adobe.Photoshop               0x0000000100066696 0x100000000 + 419478
    20  com.adobe.Photoshop               0x000000010024eadf 0x100000000 + 2419423
    21  com.adobe.Photoshop               0x0000000100278377 0x100000000 + 2589559
    22  com.adobe.PSAutomate              0x000000011f3043d3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    23  com.adobe.Photoshop               0x0000000100249fed 0x100000000 + 2400237
    24  com.adobe.Photoshop               0x00000001000711ba 0x100000000 + 463290
    25  com.adobe.Photoshop               0x00000001000665d3 0x100000000 + 419283
    26  com.adobe.Photoshop               0x0000000100066696 0x100000000 + 419478
    27  com.adobe.Photoshop               0x00000001012e0583 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793831
    28  com.apple.Foundation              0x00007fff846398f5 __NSFireTimer + 114
    29  com.apple.CoreFoundation          0x00007fff87422be8 __CFRunLoopRun + 6488
    30  com.apple.CoreFoundation          0x00007fff87420dbf CFRunLoopRunSpecific + 575
    31  com.apple.HIToolbox               0x00007fff86b7891a RunCurrentEventLoopInMode + 333
    32  com.apple.HIToolbox               0x00007fff86b7871f ReceiveNextEventCommon + 310
    33  com.apple.HIToolbox               0x00007fff86b785d8 BlockUntilNextEventMatchingListInMode + 59
    34  com.apple.AppKit                  0x00007fff8177ce64 _DPSNextEvent + 718
    35  com.apple.AppKit                  0x00007fff8177c7a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    36  com.apple.AppKit                  0x00007fff8174248b -[NSApplication run] + 395
    37  com.adobe.Photoshop               0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    38  com.adobe.Photoshop               0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    39  com.adobe.Photoshop               0x00000001000682e6 0x100000000 + 426726
    40  com.adobe.Photoshop               0x00000001002371f1 0x100000000 + 2322929
    41  com.adobe.Photoshop               0x0000000100237281 0x100000000 + 2323073
    42  com.adobe.Photoshop               0x00000001000022f4 0x100000000 + 8948
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff888e316a kevent + 10
    1   libSystem.B.dylib                 0x00007fff888e503d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff888e4d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff888e483e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff888e4168 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff888e3f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff888e439c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000109040c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x0000000109039cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000109040cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff888ca32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff82cde1f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011be20b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff82c49411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff82d07e27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff82c77310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff82c7121b MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                          0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore    0x00007fff82c49411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88904e59 nanosleep + 148
    2   com.adobe.PSAutomate              0x000000011f482e4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x000000011f464d83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x000000011f482f46 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff888e3f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff888e439c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff888e4005 start_wqthread + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000012077f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x0000000120540a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000012077f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000012077f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000012077f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff88904fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88908de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000012077f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x0000000120540a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000012077f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000012077f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000012077f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff888ca2da mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff888ca94d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff87421932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff87420dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices     0x00007fff833ba61b MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices     0x00007fff833bc1e6 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff888ca33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88908cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000012077f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x00000001209148e5 APXGetHostAPI + 4091589
    4   com.adobe.adobeswfl               0x000000012077f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000012077f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000012077f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff88903536 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff889033e9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000012046c1e0  rbx: 0x000000012157b000  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
      rdi: 0x000000012157b000  rsi: 0x000000012155d000  rbp: 0x00007fff5fbfd240  rsp: 0x00007fff5fbfcfb8
       r8: 0x00000000000001cb   r9: 0x00000001214b7280  r10: 0x000000000000001d  r11: 0x00007fff5fbfcf4f
      r12: 0x000000012155d000  r13: 0x000000012157b000  r14: 0x0000000000000000  r15: 0x000000012155d000
      rip: 0x00000001207a4920  rfl: 0x0000000000010246  cr2: 0x00000000a9de5887
    Binary Images:
           0x100000000 -        0x1026fbfff +com.adobe.Photoshop 12.0.4 (12.0.4x20110407.r.1265) (12.0.4) <6BFE637D-7ADA-BD5C-F1C5-64AD4688D89D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x1032f4000 -        0x10336cfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103382000 -        0x103389fff  org.twain.dsm 1.9.4 (1.9.4) <82EBD05C-E2FB-ADC0-4040-F8855F97D73B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103391000 -        0x1033a1ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1033ac000 -        0x1033b2ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033b9000 -        0x1035bffef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x103652000 -        0x103800fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1038a2000 -        0x103cd2fef +AdobeMPS ??? (???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e2c000 -        0x104157ff7 +AdobeAGM ??? (???) <770E65CA-643B-CFEE-2BE1-F73D45B77D09> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104224000 -        0x10454cfe7 +AdobeCoolType ??? (???) <9979447D-9477-BC48-A84E-8A6A6AF380B5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045e4000 -        0x104605ff7 +AdobeBIBUtils ??? (???) <E0E813D7-0DEE-4BD6-599B-B1DE16008C3C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104612000 -        0x10463dff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x10464f000 -        0x104793fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047da000 -        0x10483ffff +aif_core ??? (???) <28B07687-9957-7C0B-B221-1B849283C87A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x10485b000 -        0x104871fff +data_flow ??? (???) <81432128-C1BC-2E87-852E-2E4FBE63DEF3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104889000 -        0x10491ffff +image_flow ??? (???) <83A775AD-5EFE-4EC1-4EE4-7A92C88D1B02> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104996000 -        0x1049b4fff +image_runtime ??? (???) <F3EE4945-4348-A9BE-61AD-A546D0371C62> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049d1000 -        0x104c00fff +aif_ogl ??? (???) <0C2C2B20-688E-18BE-B33C-9B2A816A7E65> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104cdf000 -        0x104d72fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d92000 -        0x1050dbfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10526b000 -        0x1053edfe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10548f000 -        0x105807fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x105951000 -        0x105a66fff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a8b000 -        0x105aa7fff +AdobeBIB ??? (???) <EBA9513A-E3A2-10A8-35E9-B2A8DCDE10DD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105ab1000 -        0x105b1bff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105b4e000 -        0x105c21ffb +AdobeJP2K ??? (???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c41000 -        0x105c45ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105c49000 -        0x105cc0fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105ce1000 -        0x105d3fffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d4d000 -        0x1061e8fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10676e000 -        0x1067c4feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106809000 -        0x10682effe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106868000 -        0x10686dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106872000 -        0x106a0efff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106ab6000 -        0x106b9cfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
           0x106bf4000 -        0x106c0dfeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106c1e000 -        0x106c24feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106c2b000 -        0x106c2bff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <424E55F7-B6DA-0F5C-E56B-9ECB4A2E6BA8> /usr/lib/libmx.A.dylib
           0x106c2e000 -        0x106c36ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106fd8000 -        0x106fdafef  com.apple.textencoding.unicode 2.3 (2.3) <D95D796E-4D14-665C-F439-4652C0CD453F> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff3000 -        0x106ff4fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <0739FD38-CF46-0ECC-517C-E187C5A3B8D6> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10901d000 -        0x10908dff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1199fb000 -        0x119a12fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <5C25B45F-7A9E-3259-0532-E13B34B5398A> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x119a16000 -        0x119a37fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <1CC25A05-9E4C-ACBE-546E-34063A4CEB09> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119a3b000 -        0x119a4afe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x119a4e000 -        0x119a60fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <CC30A563-5E4C-7ACE-3B73-90E8F582171A> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x119a64000 -        0x119a6cfff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11b4f3000 -        0x11b684fff  GLEngine ??? (???) <BB46BB42-B574-1E54-101B-A68E43576B26> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11b6b5000 -        0x11bad8fef  libclh.dylib 3.1.1 C  (3.1.1) <49B010DC-B120-EF70-B369-FB53E56DE658> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11bb5c000 -        0x11bb82fff  GLRendererFloat ??? (???) <0310BFE5-B3DE-BCD8-EFD7-42C574EBF776> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11bb8a000 -        0x11bb91fff +Enable Async IO ??? (???) <3935C129-0FAE-3EAC-0CF2-4D740CD22E43> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11bb9c000 -        0x11bba5fff +FastCore ??? (???) <25D92063-457F-C14A-6BE8-1C96C54F904C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11bd00000 -        0x11bd63ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11bdeb000 -        0x11be56ff0 +MultiProcessor Support ??? (???) <4CDEDB26-96A2-631F-3C4B-FC3DBE9E2A02> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11c5f4000 -        0x11c5f8fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F99C2FBC-103D-DB2D-8D53-CFB8CEFA90F8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11d4e3000 -        0x11d4e9fff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <933CA4C6-F428-0E2E-DCBE-FA0284914092> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11e689000 -        0x11e6a9ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x11f300000 -        0x11f55dfef +com.adobe.PSAutomate 12.0.2 (12.0.2) <2A43E60A-F63A-68A0-A73C-5BEEE05E6F33> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11f77c000 -        0x11f820ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.26 (4.1.26.11099) <00717496-ACE1-7D2F-DEE7-4316D0AB52D5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11f882000 -        0x11f922fef +com.adobe.AdobeScCore ScCore 4.1.26 (4.1.26.11099) <036DBC1F-0576-705F-3507-213E9F455222> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11f9a8000 -        0x11f9c4ff7 +MeasurementCore ??? (???) <23B22EB7-5FF8-BAAC-CA6D-084FDEA9AA5A> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x11fd0c000 -        0x11fd4aff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <9F954DFA-3A8B-DE02-5B44-8A9B51394BEF> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x11fec6000 -        0x11fef0ff7  com.apple.mio.DAL.VDC_4 133.0 (1158) <75A32DC1-B6D9-A21B-7CDF-110B6C6ABDC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x120500000 -        0x121347fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x200000000 -        0x200787fef  com.apple.GeForceGLDriver 1.6.24 (6.2.4) <FA0ED181-B06F-1868-B4B6-978FC4BD0DBE> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8004cfef  libGLU.dylib ??? (???) <EB4255DD-A9E5-FAD0-52A4-CCB4E792B86F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8004d000 -     0x7fff80051ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff800cf000 -     0x7fff8015bfef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8015c000 -     0x7fff80160ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80161000 -     0x7fff801defef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff801df000 -     0x7fff80249fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff8024a000 -     0x7fff80250ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff80251000 -     0x7fff8094e06f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8094f000 -     0x7fff80a59ff7  com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff80a5a000 -     0x7fff80b17ff7  com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff80b18000 -     0x7fff80bcefff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <1960E662-D35C-5D98-EB16-D43166AE6A22> /usr/lib/libobjc.A.dylib
        0x7fff80bcf000 -     0x7fff80c13fe7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff80c5e000 -     0x7fff80c74fff  com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff80c75000 -     0x7fff80cc4fef  libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff80d22000 -     0x7fff80d22ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80d9d000 -     0x7fff80e1cfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80e1d000 -     0x7fff80eadfff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff80eb5000 -     0x7fff816bffe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff816c0000 -     0x7fff81707fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff81729000 -     0x7fff81738fff  com.apple.NetFS 3.2.1 (3.2.1) <DE59FB56-8536-9999-352A-2016ADCF4FCF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81739000 -     0x7fff8212ffff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff82130000 -     0x7fff821e9fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff821ea000 -     0x7fff82239ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <F5B744D7-AEAF-6B66-43CF-6E31CDA18EAB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff8223a000 -     0x7fff824a4fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff824a5000 -     0x7fff824d4fff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff824d5000 -     0x7fff82516fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff82517000 -     0x7fff82579fe7  com.apple.datadetectorscore 2.0 (80.7) <C3A68083-AFB0-CFC6-8AA5-517C9D1489B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8257a000 -     0x7fff8259bfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff8259c000 -     0x7fff8261afff  com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff8261b000 -     0x7fff8261bff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8261c000 -     0x7fff826d1fe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff82915000 -     0x7fff82918ff7  libCoreVMClient.dylib ??? (???) <B1F41E5B-8B59-DB81-1654-C1F9B11E885F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff82b18000 -     0x7fff82b2cff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff82b2d000 -     0x7fff82b6eff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff82b6f000 -     0x7fff82bcffe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff82bd0000 -     0x7fff82c41ff7  com.apple.AppleVAFramework 4.10.12 (4.10.12) <1B68BE43-4C54-87F5-0723-0B0A14CD21E8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff82c42000 -     0x7fff82f76fff  com.apple.CoreServices.CarbonCore 861.23 (861.23) <08F360FA-1771-4F0B-F356-BEF68BB9D421> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82f77000 -     0x7fff82fb0fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <97F968EB-80ED-36FB-7819-D438B489E46E> /usr/lib/libcups.2.dylib
        0x7fff83039000 -     0x7fff83076ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83077000 -     0x7fff83084fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83085000 -     0x7fff83107fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff83108000 -     0x7fff8312efe7  libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff833ac000 -     0x7fff833f1fff  com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff833f2000 -     0x7fff8351aff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8351b000 -     0x7fff8351bff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff835d2000 -     0x7fff836a4fe7  com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff83a05000 -     0x7fff83a28fff  com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff83a29000 -     0x7fff83b40fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AFE91118-DBF3-6313-37B8-8A2002C6A46B> /usr/lib/libxml2.2.dylib
        0x7fff83b41000 -     0x7fff83b56ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff83b86000 -     0x7fff83b88fff  libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff83b89000 -     0x7fff83b9afff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
        0x7fff83b9b000 -     0x7fff83ba0ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff83ba1000 -     0x7fff83bebff7  com.apple.Metadata 10.6.3 (507.12) <9231045A-E2E3-B0C2-C81A-92C9EA98A4DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff83bec000 -     0x7fff83c8cfff  com.apple.LaunchServices 362.1 (362.1) <B4083624-2C88-0C4F-B047-40D3CC5B3325> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff83c8d000 -     0x7fff83c90fff  com.apple.help 1.3.1 (41) <AEDDF93F-BAC0-0308-68FD-039A99F3A158> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff83c91000 -     0x7fff83e4ffff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
        0x7fff83e80000 -     0x7fff83e85fff  libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff83ec8000 -     0x7fff83efafff  libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83efb000 -     0x7fff83f43ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff83f44000 -     0x7fff84065fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84066000 -     0x7fff8456afe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff845b2000 -     0x7fff845d2ff7  com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff845d3000 -     0x7fff84856ff7  com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84857000 -     0x7fff848f1fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff849a2000 -     0x7fff84ac8fff  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84ac9000 -     0x7fff84af4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <6589F0FC-41DB-8494-CA8B-487F4E328EB9> /usr/lib/libxslt.1.dylib
        0x7fff84af5000 -     0x7fff84b04fff  com.apple.opengl 1.6.11 (1.6.11) <43D5BE71-E1F6-6974-210C-17C68919AE08> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84b05000 -     0x7fff84bdffff  com.apple.vImage 4.0 (4.0) <B5A8B93B-D302-BC30-5A18-922645DB2F56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff85854000 -     0x7fff85a0bfef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff85a0c000 -     0x7fff85a13fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85aa2000 -     0x7fff85b9aff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <208C6671-4A63-B101-9885-7ECCE25DC34D> /usr/lib/libiconv.2.dylib
        0x7fff85bc5000 -     0x7fff85f62fe7  com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85f63000 -     0x7fff85f63ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86039000 -     0x7fff86104fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff86158000 -     0x7fff8616afe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff86247000 -     0x7fff86360fef  libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff86361000 -     0x7fff8649ffff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff864a0000 -     0x7fff864b6fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff864b7000 -     0x7fff866f2fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff866f3000 -     0x7fff8672cff7  com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8672d000 -     0x7fff86b07fff  com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff86b08000 -     0x7fff86b23ff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff86b24000 -     0x7fff86b2fff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff86b30000 -     0x7fff86b49fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff86b4a000 -     0x7fff86e48fe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff86faa000 -     0x7fff86faffff  libGFXShared.dylib ??? (???) <A94DE483-A586-A172-104F-1CFC5F0BFD57> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8720f000 -     0x7fff872c4fe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff872c5000 -     0x7fff872d3ff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff8738b000 -     0x7fff873d4ff7  com.apple.securityinterface 4.0.1 (37214) <08DB37D6-A716-DC37-536C-7889999EF395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff873d5000 -     0x7fff8754cfe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8754d000 -     0x7fff8755eff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff875e4000 -     0x7fff875e4ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff875e5000 -     0x7fff875e6ff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87665000 -     0x7fff876cdfff  com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff876ce000 -     0x7fff876cfff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff87745000 -     0x7fff87b88fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff87cca000 -     0x7fff87d16fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff87d17000 -     0x7fff87d3cff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87d3d000 -     0x7fff87d92fef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff880d7000 -     0x7fff882c6fe7  com.apple.JavaScriptCore 6533.19 (6533.19.1) <233B3E34-CDC4-668A-529A-7E61D510D991> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff882c7000 -     0x7fff88333ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff88337000 -     0x7fff8841cfef  com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff88426000 -     0x7fff88461fff  com.apple.AE 496.4 (496.4) <CB905496-4D6B-F26A-399D-840D26DBEE5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff884b2000 -     0x7fff884b4fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff884d1000 -     0x7fff88512fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff88513000 -     0x7fff88682fe7  com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88683000 -     0x7fff886d4fef  com.apple.HIServices 1.8.1 (???) <BE479ABF-3D27-A5C7-800E-3FFC1731767A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff886d5000 -     0x7fff88796fe7  libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff887a7000 -     0x7fff887c4ff7  libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff887c5000 -     0x7fff88854fff  com.apple.PDFKit 2.5.1 (2.5.1) <C0E3AE4B-E71A-16D8-0D51-FB7D3E3AD793> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff88855000 -     0x7fff8887dfff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff888c9000 -     0x7fff88a8afff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
        0x7fff88ab3000 -     0x7fff88b62fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88b63000 -     0x7fff88b63ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88b64000 -     0x7fff88b7afe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff88b7b000 -     0x7fff88b7cfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff88b7d000 -     0x7fff88e03fef  com.apple.security 6.1.1 (37594) <17CF7858-52D9-9665-3AE8-23F07CC8BEA1> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88e04000 -     0x7fff88e0aff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88e0b000 -     0x7fff88e0bff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88e0c000 -     0x7fff88e0fff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff88f90000 -     0x7fff88f91fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff88f94000 -     0x7fff88fa8fff  libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff88fa9000 -     0x7fff88fdafff  libGLImage.dylib ??? (???) <57DA0064-4581-62B8-37A8-A07ADEF46EE2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8901f000 -     0x7fff890a4ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff890a5000 -     0x7fff890e8ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff890e9000 -     0x7fff89130ff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8913d000 -     0x7fff8913dff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8914a000 -     0x7fff89153ff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000

  • On trying to launch CS5 Photoshop: An unexpected and unrecoverable problem has occurred. Photoshop w

    I have an iMac 27" with 2.8 GHz Intel Core 17. 4 GB RAM. It's running OS X 10.6.8 Snow Leopard.
    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive.
    Since then my CS5 Photoshop comes up with this error message at each launch attempt:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    I took the computer back to the repair shop. They said they got CS5 Photoshop working on my computer so I brought it home and -- this is totally inexplicable -- I STILL get the error message.
    Subsequently I've trashed CS5 Photoshop and reinstalled from the original Adobe Design Premium CS5 suite .dmg but I continue to get the same message. I've also trashed the preferences several times and the message still occurs. Creating a new user account for my computer and trying to open CS5 Photoshop there didn't help. I had no problems with fonts and Photoshop CS5 before the hard drive was changed.
    I have no idea what else to do. Any help will be greatly appreciated. Thanks!
    Here is the Photoshop Problem Report:
    Process:         Adobe Photoshop CS5 [426]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2013-01-20 10:08:41.018 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          28237 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  2014 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      399C19BD-C233-4F20-9385-CBEADC8E2EA4
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff878340b6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff878d49f6 abort + 83
    2   com.adobe.Photoshop               0x0000000100237b1b 0x100000000 + 2325275
    3   libstdc++.6.dylib                 0x00007fff810d6ae1 __cxxabiv1::__terminate(void (*)()) + 11
    4   libstdc++.6.dylib                 0x00007fff810d5e9c __cxa_call_terminate + 46
    5   libstdc++.6.dylib                 0x00007fff810d69fc __gxx_personality_v0 + 1011
    6   libSystem.B.dylib                 0x00007fff8784aeb1 unwind_phase2 + 145
    7   libSystem.B.dylib                 0x00007fff878547eb _Unwind_Resume + 91
    8   com.adobe.ape                     0x00000001222d2a61 APEStreamWrite + 10193
    9   com.adobe.ape                     0x00000001222d56bf APEStreamWrite + 21551
    10  com.adobe.ape                     0x00000001222d75dc APEStreamWrite + 29516
    11  com.adobe.PSAutomate              0x0000000121dab869 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 121
    12  com.adobe.PSAutomate              0x0000000121daa8ed ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 189
    13  com.adobe.PSAutomate              0x0000000121da8a32 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66
    14  com.adobe.PSAutomate              0x0000000121da833c ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172
    15  com.adobe.PSAutomate              0x0000000121d9e8f6 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198
    16  com.adobe.PSAutomate              0x0000000121d9458e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    17  com.adobe.PSAutomate              0x0000000121c6ab2e JavaScriptUI::IJavaScriptUI() + 544
    18  com.adobe.PSAutomate              0x0000000121c6bbb0 InitJavaScriptUI() + 106
    19  com.adobe.PSAutomate              0x0000000121c6be7c CScriptPs::DoLateInitialize() + 622
    20  com.adobe.PSAutomate              0x0000000121c6cc20 CScriptPs::DoExecute(PIActionParameters*) + 630
    21  com.adobe.PSAutomate              0x0000000121c6d0fe PluginMain + 110
    22  com.adobe.Photoshop               0x00000001006fe2c3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4331399
    23  com.adobe.Photoshop               0x0000000100278000 0x100000000 + 2588672
    24  com.adobe.Photoshop               0x000000010027817d 0x100000000 + 2589053
    25  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    26  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    27  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    28  com.adobe.Photoshop               0x000000010024fb1b 0x100000000 + 2423579
    29  com.adobe.Photoshop               0x000000010027910b 0x100000000 + 2593035
    30  com.adobe.PSAutomate              0x0000000121c6c4e3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    31  com.adobe.Photoshop               0x000000010024b057 0x100000000 + 2404439
    32  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    33  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    34  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    35  com.adobe.Photoshop               0x00000001012f0007 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16856267
    36  com.apple.AppKit                  0x00007fff841f06de -[NSApplication run] + 474
    37  com.adobe.Photoshop               0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    38  com.adobe.Photoshop               0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    39  com.adobe.Photoshop               0x0000000100068e82 0x100000000 + 429698
    40  com.adobe.Photoshop               0x0000000100238308 0x100000000 + 2327304
    41  com.adobe.Photoshop               0x00000001002383a7 0x100000000 + 2327463
    42  com.adobe.Photoshop               0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff877fec0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff87800add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff878007b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff878002de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff877ffc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108523c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010851ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108523cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   com.adobe.PSAutomate              0x0000000121dea0fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x0000000121dcc033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x0000000121dea1f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 21:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff87820863 usleep + 57
    3   com.apple.AppKit                  0x00007fff843763a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff82401114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001233c9a20  rcx: 0x00007fff5fbfd808  rdx: 0x0000000000000000
      rdi: 0x00000000000001aa  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfd820  rsp: 0x00007fff5fbfd808
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff878300fa  r11: 0x0000000000000202
      r12: 0x00007fff5fbfd830  r13: 0x00007fff5fbfdde0  r14: 0x00007fff5fbfde28  r15: 0x000000012339e3f0
      rip: 0x00007fff878340b6  rfl: 0x0000000000000202  cr2: 0x000000011a1ce044
    Binary Images:
           0x100000000 -        0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103295000 -        0x10330dfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103323000 -        0x10332afff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103332000 -        0x103342ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10334d000 -        0x103353ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10335a000 -        0x103560fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035f3000 -        0x1037a1fef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103843000 -        0x103c73fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dcd000 -        0x1040f8ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041c5000 -        0x1044edfe7 +AdobeCoolType ??? (???) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104585000 -        0x1045a6ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045b3000 -        0x1045deff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045f0000 -        0x104734fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10477b000 -        0x1047e0fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047fc000 -        0x104812fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10482a000 -        0x1048c0fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104937000 -        0x104955fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104972000 -        0x104ba1fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c80000 -        0x104d13fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d33000 -        0x10507cfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10520c000 -        0x10538efe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105430000 -        0x1057a8fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058f2000 -        0x105a06fff +AdobeACE ??? (???) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a2b000 -        0x105a47fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a51000 -        0x105abbff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105aee000 -        0x105bc1ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105be1000 -        0x105be5ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105be9000 -        0x105c60fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c81000 -        0x105cdfffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ced000 -        0x106188fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10670e000 -        0x106764feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067a9000 -        0x1067ceffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106808000 -        0x10680dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106812000 -        0x1069adfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a55000 -        0x106a6efeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a7f000 -        0x106a85feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a8c000 -        0x106a8cff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a8f000 -        0x106a97ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a9e000 -        0x106b84fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x106f78000 -        0x106f7afef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff9000 -        0x106ffafff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108500000 -        0x108570ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1086cd000 -        0x1086e4fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1086e8000 -        0x108709fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x10870d000 -        0x10871cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x108720000 -        0x108732fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x108737000 -        0x10873ffff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x1087d2000 -        0x1087f8fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11a6de000 -        0x11a6e5fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11aedb000 -        0x11aee4fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11c840000 -        0x11c9d3fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11ca04000 -        0x11ce20fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
           0x11d100000 -        0x11d163ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11d1e9000 -        0x11d254ff0 +MultiProcessor Support ??? (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x121c68000 -        0x121ec4fef +com.adobe.PSAutomate 12.0 (12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1220da000 -        0x12217effb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x1221e0000 -        0x122280fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1222c6000 -        0x1222e6ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x123500000 -        0x12351cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800e0fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff800e1000 -     0x7fff80104fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff80105000 -     0x7fff8014dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8014e000 -     0x7fff801a1ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff801b5000 -     0x7fff801c9fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff801f4000 -     0x7fff809fefe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff80b28000 -     0x7fff80ba7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80ba8000 -     0x7fff80bf4fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8108c000 -     0x7fff81109fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff81116000 -     0x7fff8112dfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff814ad000 -     0x7fff8166bfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8166c000 -     0x7fff81670ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81671000 -     0x7fff81671ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81a26000 -     0x7fff81a90fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff81ac1000 -     0x7fff81ad0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81ad1000 -     0x7fff81ad1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff81ad2000 -     0x7fff81e6ffe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81e70000 -     0x7fff81eb9fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81eba000 -     0x7fff81ebffff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff81ec0000 -     0x7fff81efafff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff81efb000 -     0x7fff8222ffef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82230000 -     0x7fff823effff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff823f0000 -     0x7fff82672fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff82673000 -     0x7fff8273efff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <86982FBB-B224-CBDA-A9AD-8EE97BDB8681> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8273f000 -     0x7fff8275ffff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff82760000 -     0x7fff8276eff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8279f000 -     0x7fff827d0fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8283a000 -     0x7fff8283dfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff82842000 -     0x7fff8285bfff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff82912000 -     0x7fff82a2cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82a71000 -     0x7fff82a73fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff82a74000 -     0x7fff82a7aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82a7b000 -     0x7fff82d04ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82d59000 -     0x7fff831a0fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff831a1000 -     0x7fff831b7fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff831ef000 -     0x7fff83210fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8361c000 -     0x7fff836a8fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff83733000 -     0x7fff83744ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff83745000 -     0x7fff8382afef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8382b000 -     0x7fff83923ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <44AADE50-15BC-BC6B-BEF0-5029A30766AC> /usr/lib/libiconv.2.dylib
        0x7fff83924000 -     0x7fff839e1fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff83a17000 -     0x7fff83a32ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff83e3e000 -     0x7fff83ef3fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff83ef4000 -     0x7fff83ef9fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff83efa000 -     0x7fff83f37ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83faa000 -     0x7fff8404afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8404b000 -     0x7fff8404bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8404c000 -     0x7fff84102ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff84186000 -     0x7fff841e6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff841e7000 -     0x7fff84be1ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84c9b000 -     0x7fff84cdeff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84f1a000 -     0x7fff84fd3fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84fd4000 -     0x7fff85112fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8511f000 -     0x7fff85140fe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff8530f000 -     0x7fff8542efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85498000 -     0x7fff854adff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff854be000 -     0x7fff8556efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff855d8000 -     0x7fff855fdff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85622000 -     0x7fff85622ff7  com.apple.Carbon 150 (152) <FA427C37-CF97-6773-775D-4F752ED68581> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8564b000 -     0x7fff8568cfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8571b000 -     0x7fff857a0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff857a1000 -     0x7fff857c9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff85933000 -     0x7fff85a4afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff85a7b000 -     0x7fff85a7eff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff85a7f000 -     0x7fff85b0ffff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff86bcf000 -     0x7fff872cbff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff872cc000 -     0x7fff872cefff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff872cf000 -     0x7fff872faff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff87309000 -     0x7fff87344fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff87345000 -     0x7fff8735bfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8735c000 -     0x7fff8741dfff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8741e000 -     0x7fff874dffef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff874ea000 -     0x7fff874f0ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8750d000 -     0x7fff8758bff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff877df000 -     0x7fff877e4ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff877e5000 -     0x7fff879a6fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87a8b000 -     0x7fff87a98fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff87ad8000 -     0x7fff87c0dfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87c0e000 -     0x7fff87c55ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87c68000 -     0x7fff87cb7ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff87cc4000 -     0x7fff87e3bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87e3c000 -     0x7fff87e4efe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff87e58000 -     0x7fff87e63ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff87ef4000 -     0x7fff87f8efe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff87fa8000 -     0x7fff87facff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87fad000 -     0x7fff87fadff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff880bf000 -     0x7fff88193fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff88419000 -     0x7fff88419ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8842e000 -     0x7fff88431ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff88455000 -     0x7fff88456ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff88463000 -     0x7fff88464fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff88477000 -     0x7fff88477ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88478000 -     0x7fff884c2ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff884c3000 -     0x7fff884c4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff884c5000 -     0x7fff884ecff7  libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff8856a000 -     0x7fff88868fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff88869000 -     0x7fff8886fff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88870000 -     0x7fff888c6fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff8973b000 -     0x7fff8976eff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8976f000 -     0x7fff897c4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff897e1000 -     0x7fff897e8fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff897e9000 -     0x7fff897fdff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff897fe000 -     0x7fff8980dfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff898aa000 -     0x7fff898ebfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff89902000 -     0x7fff89d45fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa140000 / 6
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa130000 / 5
    USB Device: Intern

    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive
    It depends on how the program was transfered.  If direct file copy it probably will not work, as all the files are not in one directory.  It is usually safest to reinstall from a disk or download.  You might want to unistall the programs and run Adobe Script Cleaner and then reinstall.

  • Photoshop CS5 keeps crashing.

    Hi!
    My photoshop CS5 keeps crashing every time, right after I open it.
    I have read about 8 forum threads with the same problem, but no solutions have worked. Here's my crash report:
    Please help
    Process:    
    Adobe Photoshop CS5 [525]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [245]
    Date/Time:  
    2013-05-04 20:23:16.668 +0200
    OS Version: 
    Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Interval Since Last Report:     
    275539 sec
    Crashes Since Last Report:      
    10
    Per-App Interval Since Last Report:  2125565 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                 
    07B2F930-DB3C-4C68-BACA-836707CEBB7E
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000016ec7edc0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.adobeswfl      
    0x000000016ec7edc0 APXGetHostAPI + 2429856
    1   com.adobe.adobeswfl      
    0x000000016f768574 0x16ea00000 + 14058868
    2   dyld                     
    0x00007fff5fc0d500 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 228
    3   dyld                     
    0x00007fff5fc0bcec ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 236
    4   dyld                     
    0x00007fff5fc0bda6 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 58
    5   dyld                     
    0x00007fff5fc08fbb dlopen + 573
    6   libSystem.B.dylib        
    0x00007fff885fc2c0 dlopen + 61
    7   com.apple.CoreFoundation 
    0x00007fff828a19b7 _CFBundleDlfcnLoadBundle + 231
    8   com.apple.CoreFoundation 
    0x00007fff828a0957 _CFBundleLoadExecutableAndReturnError + 1191
    9   com.apple.CoreFoundation 
    0x00007fff828a049d CFBundleLoadExecutable + 13
    10  com.adobe.ape            
    0x000000016d7a2b84 APEStreamWrite + 2292
    11  com.adobe.ape            
    0x000000016d7a2cf5 APEStreamWrite + 2661
    12  com.adobe.ape            
    0x000000016d7a2676 APEStreamWrite + 998
    13  com.adobe.ape            
    0x000000016d79d1b1 APEInitialize + 3553
    14  com.adobe.ape            
    0x000000016d7a4371 APEStreamWrite + 8417
    15  com.adobe.ape            
    0x000000016d7a7678 APEStreamWrite + 21480
    16  com.adobe.ape            
    0x000000016d7a95dc APEStreamWrite + 29516
    17  com.adobe.PSAutomate     
    0x000000016d363869 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 121
    18  com.adobe.PSAutomate     
    0x000000016d3628ed ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 189
    19  com.adobe.PSAutomate     
    0x000000016d360a32 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66
    20  com.adobe.PSAutomate     
    0x000000016d36033c ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172
    21  com.adobe.PSAutomate     
    0x000000016d3568f6 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198
    22  com.adobe.PSAutomate     
    0x000000016d34c58e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    23  com.adobe.PSAutomate     
    0x000000016d222b2e JavaScriptUI::IJavaScriptUI() + 544
    24  com.adobe.PSAutomate     
    0x000000016d223bb0 InitJavaScriptUI() + 106
    25  com.adobe.PSAutomate     
    0x000000016d223e7c CScriptPs::DoLateInitialize() + 622
    26  com.adobe.PSAutomate     
    0x000000016d224c20 CScriptPs::DoExecute(PIActionParameters*) + 630
    27  com.adobe.PSAutomate     
    0x000000016d2250fe PluginMain + 110
    28  com.adobe.Photoshop      
    0x00000001006fe2c3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4331399
    29  com.adobe.Photoshop      
    0x0000000100278000 0x100000000 + 2588672
    30  com.adobe.Photoshop      
    0x000000010027817d 0x100000000 + 2589053
    31  com.adobe.Photoshop      
    0x0000000100071d74 0x100000000 + 466292
    32  com.adobe.Photoshop      
    0x000000010006716f 0x100000000 + 422255
    33  com.adobe.Photoshop      
    0x0000000100067232 0x100000000 + 422450
    34  com.adobe.Photoshop      
    0x000000010024fb1b 0x100000000 + 2423579
    35  com.adobe.Photoshop      
    0x000000010027910b 0x100000000 + 2593035
    36  com.adobe.PSAutomate     
    0x000000016d2244e3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    37  com.adobe.Photoshop      
    0x000000010024b057 0x100000000 + 2404439
    38  com.adobe.Photoshop      
    0x0000000100071d74 0x100000000 + 466292
    39  com.adobe.Photoshop      
    0x000000010006716f 0x100000000 + 422255
    40  com.adobe.Photoshop      
    0x0000000100067232 0x100000000 + 422450
    41  com.adobe.Photoshop      
    0x00000001012ee27b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848703
    42  com.apple.Foundation     
    0x00007fff85e26a2d __NSFireTimer + 114
    43  com.apple.CoreFoundation 
    0x00007fff828a4678 __CFRunLoopRun + 6488
    44  com.apple.CoreFoundation 
    0x00007fff828a284f CFRunLoopRunSpecific + 575
    45  com.apple.HIToolbox      
    0x00007fff83d2791a RunCurrentEventLoopInMode + 333
    46  com.apple.HIToolbox      
    0x00007fff83d2771f ReceiveNextEventCommon + 310
    47  com.apple.HIToolbox      
    0x00007fff83d275d8 BlockUntilNextEventMatchingListInMode + 59
    48  com.apple.AppKit         
    0x00007fff8405e29e _DPSNextEvent + 708
    49  com.apple.AppKit         
    0x00007fff8405dbed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    50  com.apple.AppKit         
    0x00007fff840238d3 -[NSApplication run] + 395
    51  com.adobe.Photoshop      
    0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    52  com.adobe.Photoshop      
    0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    53  com.adobe.Photoshop      
    0x0000000100068e82 0x100000000 + 429698
    54  com.adobe.Photoshop      
    0x0000000100238308 0x100000000 + 2327304
    55  com.adobe.Photoshop      
    0x00000001002383a7 0x100000000 + 2327463
    56  com.adobe.Photoshop      
    0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff8860f08a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff88610f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff88610c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff8861075e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff88610088 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff8860ff25 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff88630eb6 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff88634cd1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services   
    0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services   
    0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services   
    0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib        
    0x00007fff885f634e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff88ba288e MPWaitOnSemaphore + 96
    2   MultiProcessor Support   
    0x000000011e730bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff885f634e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff88ba288e MPWaitOnSemaphore + 96
    2   MultiProcessor Support   
    0x000000011e730bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff885f634e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff88ba288e MPWaitOnSemaphore + 96
    2   MultiProcessor Support   
    0x000000011e730bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff88630eb6 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff88634cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore
    0x00007fff88bcc4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b3bcc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore
    0x00007fff88b35bcf MPWaitOnQueue + 215
    5   AdobeACE                 
    0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                 
    0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff88630eb6 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff88634cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore
    0x00007fff88bcc4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b3bcc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore
    0x00007fff88b35bcf MPWaitOnQueue + 215
    5   AdobeACE                 
    0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                 
    0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff88630eb6 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff88634cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore
    0x00007fff88bcc4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore
    0x00007fff88b3bcc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore
    0x00007fff88b35bcf MPWaitOnQueue + 215
    5   AdobeACE                 
    0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                 
    0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore
    0x00007fff88b0dea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff88630eb6 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff88630d45 nanosleep + 148
    2   com.adobe.PSAutomate     
    0x000000016d3a20fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x000000016d384033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x000000016d3a21f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib        
    0x00007fff8862f456 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff8862f309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff707bc318  rbx: 0x00007fff5fc404a0  rcx: 0x00007fff5fbffb00  rdx: 0x00007fff5fbffaa0
      rdi: 0x000000016f9b5ec0  rsi: 0x000000000000ffff  rbp: 0x00007fff5fbfc9f0  rsp: 0x00007fff5fbfc9e8
       r8: 0x00007fff5fc40548   r9: 0x00007fff707bc178  r10: 0x00007fff70942f48  r11: 0x00007fff707bc358
      r12: 0x000000000000000b  r13: 0x000000016f768590  r14: 0x000000016ea006f0  r15: 0x000000016f971cc8
      rip: 0x000000016ec7edc0  rfl: 0x0000000000010246  cr2: 0x000000016ec7edc0
    Binary Images:
    0x100000000 -   
    0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    0x103295000 -   
    0x10330dfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x103323000 -   
    0x10332afff  org.twain.dsm 1.9.4 (1.9.4) <46B3568D-9CD5-4B11-4984-E50264A6B7EE> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103332000 -   
    0x103342ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x10334d000 -   
    0x103353ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x10335a000 -   
    0x103560fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x1035f3000 -   
    0x1037a1fef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x103843000 -   
    0x103c73fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103dcd000 -   
    0x1040f8ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1041c5000 -   
    0x1044edfe7 +AdobeCoolType ??? (???) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x104585000 -   
    0x1045a6ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1045b3000 -   
    0x1045deff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1045f0000 -   
    0x104734fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x10477b000 -   
    0x1047e0fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x1047fc000 -   
    0x104812fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x10482a000 -   
    0x1048c0fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x104937000 -   
    0x104955fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x104972000 -   
    0x104ba1fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104c80000 -   
    0x104d13fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d33000 -   
    0x10507cfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x10520c000 -   
    0x10538efe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x105430000 -   
    0x1057a8fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x1058f2000 -   
    0x105a06fff +AdobeACE ??? (???) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a2b000 -   
    0x105a47fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105a51000 -   
    0x105abbff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x105aee000 -   
    0x105bc1ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105be1000 -   
    0x105be5ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x105be9000 -   
    0x105c60fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105c81000 -   
    0x105cdfffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105ced000 -   
    0x106188fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
    0x10670e000 -   
    0x106764feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1067a9000 -   
    0x1067ceffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x106808000 -   
    0x10680dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106812000 -   
    0x1069adfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106a55000 -   
    0x106a6efeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
    0x106a7f000 -   
    0x106a85feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106a8c000 -   
    0x106a8cff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
    0x106a8f000 -   
    0x106a97ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x106a9e000 -   
    0x106b84fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
    0x106f52000 -   
    0x106f54fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x106ff1000 -   
    0x106ff2fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <5EB939D1-53CF-EDD2-36DF-3E8A3FB13179> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x108700000 -   
    0x108770ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x1087b2000 -   
    0x1087c9fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1B9D1076-CC7C-521A-676C-F7BE51F65271> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x1087cd000 -   
    0x1087eefef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <FA6280BD-A73C-3A3D-6494-81EB80FE1C24> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x109ddd000 -   
    0x109decfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <0628B99F-F193-89BF-6332-B8C50D301F29> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x11af53000 -   
    0x11af65fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <A77665EF-B6FB-00B4-2F3D-90D7845814C9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x11af69000 -   
    0x11af71fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x11afcf000 -   
    0x11aff5fff  GLRendererFloat ??? (???) <10AFC7E0-A5CE-8F0E-7084-439BE59F7E95> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x11c92e000 -   
    0x11cabbfe7  GLEngine ??? (???) <57D733C2-F7CB-2B8F-CD34-C85A193145DE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x11caec000 -   
    0x11cf0ffef  libclh.dylib 3.1.1 C  (3.1.1) <83F3C7DB-D2E2-07B0-E433-386C9428AD72> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x11cf93000 -   
    0x11de48fff  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.16 (6.1.6) <E3FD5349-E823-4294-FACB-349DBCD224EF> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelH DGraphicsGLDriver
    0x11e5ec000 -   
    0x11e5f3fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x11e5fc000 -   
    0x11e605fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x11e612000 -   
    0x11e675ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x11e6fb000 -   
    0x11e766ff0 +MultiProcessor Support ??? (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x16d220000 -   
    0x16d47cfef +com.adobe.PSAutomate 12.0 (12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x16d692000 -   
    0x16d736ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x16d798000 -   
    0x16d7b8ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
    0x16e000000 -   
    0x16e0a0fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x16e400000 -   
    0x16e41cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x16ea00000 -   
    0x16f847fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
    0x200000000 -   
    0x2006fbff7  com.apple.GeForceGLDriver 1.6.16 (6.1.6) <4F3D3917-641B-AA12-04DE-D3A1995C3B18> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff5fc00000 -
    0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
    0x7fff80003000 -
    0x7fff8009dfff  com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x7fff8009e000 -
    0x7fff8011dfef  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8011e000 -
    0x7fff80156fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
    0x7fff80157000 -
    0x7fff80157ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff80158000 -
    0x7fff804cdfe7  com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8050f000 -
    0x7fff80d19fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x7fff80d1a000 -
    0x7fff80ddafff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7fff80ddb000 -
    0x7fff812dffe7  com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff81316000 -
    0x7fff81398fff  com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x7fff81399000 -
    0x7fff813d6ff7  libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x7fff813d7000 -
    0x7fff813ebfff  libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff813ec000 -
    0x7fff81430fe7  com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff81431000 -
    0x7fff81446ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x7fff81447000 -
    0x7fff8144cff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff8144d000 -
    0x7fff81527ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x7fff815a7000 -
    0x7fff815e8fef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x7fff815e9000 -
    0x7fff815e9ff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff822a4000 -
    0x7fff822a5fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff8233c000 -
    0x7fff82407fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff8246c000 -
    0x7fff8246dff7  com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff8246e000 -
    0x7fff824c3fef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff824e5000 -
    0x7fff8254dfff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
    0x7fff8258c000 -
    0x7fff82642fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff82650000 -
    0x7fff82689ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff82713000 -
    0x7fff82714ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff827a7000 -
    0x7fff82856fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff82857000 -
    0x7fff829ccff7  com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff829cd000 -
    0x7fff82a37fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <514D400C-50A5-C196-83AA-1035DDC8FBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x7fff82a68000 -
    0x7fff82a6afff  libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x7fff82a6b000 -
    0x7fff82b0bfff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7fff82b13000 -
    0x7fff82c3bff7  com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff82cf3000 -
    0x7fff82d0cfff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7fff82f3f000 -
    0x7fff82f51fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff82f68000 -
    0x7fff82f7efef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
    0x7fff82f7f000 -
    0x7fff8308efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8308f000 -
    0x7fff8308fff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff83090000 -
    0x7fff830dcfff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff830dd000 -
    0x7fff830ecfff  com.apple.NetFS 3.2.1 (3.2.1) <0357C371-2E2D-069C-08FB-1180512B8516> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff830ed000 -
    0x7fff831d3fe7  com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x7fff831d4000 -
    0x7fff832a4ff7  com.apple.CFNetwork 454.9.7 (454.9.7) <AA6EB690-6CCF-603D-AAC2-35B9E05D1593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x7fff836a8000 -
    0x7fff83a41ff7  com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff83a42000 -
    0x7fff83a56ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x7fff83bd4000 -
    0x7fff83c03ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x7fff83c04000 -
    0x7fff83c15fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x7fff83c4f000 -
    0x7fff83cdffff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff83cf9000 -
    0x7fff83ff7fe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x7fff83ff8000 -
    0x7fff8400eff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x7fff8400f000 -
    0x7fff84015ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff84016000 -
    0x7fff84019ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x7fff8401a000 -
    0x7fff84a10fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff84a11000 -
    0x7fff84a17ff7  IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84a18000 -
    0x7fff84a39fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff84a3a000 -
    0x7fff84a50fff  com.apple.ImageCapture 6.0 (6.0) <BF702F65-8E30-E318-1B58-AE6C0D5E5715> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff84a80000 -
    0x7fff84aa0ff7  com.apple.DirectoryService.Framework 3.6 (621.4) <969734C3-D21E-2F30-5CBB-D9F23D123643> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff84aa1000 -
    0x7fff84aa9fff  com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff84aaa000 -
    0x7fff84ab8ff7  libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
    0x7fff84ab9000 -
    0x7fff84af4fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff84b07000 -
    0x7fff84c2cfef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff84d8e000 -
    0x7fff84e47fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff84e4e000 -
    0x7fff84e71fff  com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff84e72000 -
    0x7fff84ee0fff  com.apple.AppleVAFramework 4.9.20 (4.9.20) <78727165-8D44-0354-6F6C-68FD798E04A1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84ee1000 -
    0x7fff85050fe7  com.apple.QTKit 7.6.6 (1742) <7E254184-757D-E87C-5B2A-7612A2C85243> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff85051000 -
    0x7fff8507cff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff850a1000 -
    0x7fff85156fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x7fff85157000 -
    0x7fff85172ff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff85173000 -
    0x7fff85173ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff85174000 -
    0x7fff851d6fe7  com.apple.datadetectorscore 2.0 (80.7) <5F0F865C-A80F-FE7F-7DF8-894A4A99EACA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x7fff851d7000 -
    0x7fff8521efef  com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8521f000 -
    0x7fff85269ff7  com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x7fff8526a000 -
    0x7fff85381fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff85382000 -
    0x7fff85385fff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x7fff85386000 -
    0x7fff853cfff7  com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff853d0000 -
    0x7fff854daff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
    0x7fff854db000 -
    0x7fff85598ff7  com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x7fff85599000 -
    0x7fff855dcff7  libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff855dd000 -
    0x7fff85603fe7  libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x7fff8564f000 -
    0x7fff856cdfff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x7fff8583d000 -
    0x7fff8588efe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x7fff858c5000 -
    0x7fff858c9ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff858ca000 -
    0x7fff85936ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff85937000 -
    0x7fff85995ff7  com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff85a6f000 -
    0x7fff85a72ff7  libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff85ab3000 -
    0x7fff85b38fff  com.apple.print.framework.PrintCore 6.2 (312.5) <C20F87CE-ACC1-552B-8A73-2B3846A01D80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x7fff85b39000 -
    0x7fff85dbfff7  com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff85dc0000 -
    0x7fff86041fef  com.apple.Foundat

    Hey, thanks. But it's like the whole Adobe crashes when I run any adobe application. I did however update my OS, so that is done. When I tried to upgrade PS, the Adobe Application Manager crashed every time... Take a look at the report:
    Date/Time:  
    2013-05-04 22:51:37 +0200
    OS Version: 
    10.6.8 (Build 10K549)
    Architecture:
    x86_64
    Report Version:  7
    Command:    
    Adobe Application Manager
    Path:       
    /Library/Application Support/Adobe/OOBE/PDApp/core/PDApp.app/Contents/MacOS/PDApp
    Version:    
    1.0.179.0 (1.0.179.0)
    Parent:     
    launchd [1]
    PID:        
    423
    Event:      
    hang
    Duration:   
    6.04s (sampling started after 2 seconds)
    Steps:      
    20 (100ms sampling interval)
    Pageins:    
    3
    Pageouts:   
    0
    Process:    
    PDApp [423]
    Path:       
    /Library/Application Support/Adobe/OOBE/PDApp/core/PDApp.app/Contents/MacOS/PDApp
    UID:        
    35415
      Thread d29   
    DispatchQueue 100
      User stack:
    20 start + 54 (in PDApp) [0x2ef2]
    20 start + 10802 (in PDApp) [0x58ee]
    20 NSApplicationMain + 574 (in AppKit) [0x91047289]
    20 -[NSApplication run] + 821 (in AppKit) [0x9104f1f3]
    20 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156 (in AppKit) [0x9108cdd6]
    20 _DPSNextEvent + 847 (in AppKit) [0x9108d595]
    20 BlockUntilNextEventMatchingListInMode + 81 (in HIToolbox) [0x94a17a3e]
    20 ReceiveNextEventCommon + 354 (in HIToolbox) [0x94a17bb9]
    20 RunCurrentEventLoopInMode + 392 (in HIToolbox) [0x94a17e04]
    20 CFRunLoopRunInMode + 97 (in CoreFoundation) [0x94dd3221]
    20 CFRunLoopRunSpecific + 452 (in CoreFoundation) [0x94dd33f4]
    20 __CFRunLoopRun + 8059 (in CoreFoundation) [0x94dd5a6b]
    20 initializeApplet + 60570 (in UWANative.dylib) [0x1abe1428]
    20 initializeApplet + 25356 (in UWANative.dylib) [0x1abd8a9a]
    20 UCGetprogress + 90 (in UpdaterCore) [0x1acbd4b4]
    20 UpdaterCoreImpl::UCGetprogress(E_UCProcessType, E_UCStatusCode&, int&, int&, char**, UCAdditionalProgressData*) + 9405 (in UpdaterCore) [0x1acb7fa9]
    20 UpdaterCoreImpl::UCProcessPatchProgress(E_UCStatusCode&, int&, int&) + 340 (in UpdaterCore) [0x1acac54c]
    20 UpdaterIPC_Recv_Data + 30 (in UpdaterCore) [0x1acd6718]
    20 MsgPipe::Read(Packet&) + 188 (in UpdaterCore) [0x1acd6944]
    20 read$UNIX2003 + 10 (in libSystem.B.dylib) [0x97b7be5e]
      Kernel stack:
    20 lo_unix_scall + 280 [0x2a1fd8]
    20 unix_syscall + 579 [0x4f7f90]
    20 read_nocancel + 158 [0x49fd75]
    20 write + 312 [0x49f5f9]
    20 utf8_encodelen + 3711 [0x2f45e1]
    20 VNOP_READ + 157 [0x2ff592]
    20 fifo_read + 198 [0x30c4d0]
    20 soreceive + 1134 [0x4b959f]
    20 sbwait + 150 [0x4bb742]
    20 msleep + 157 [0x49149d]
    20 wakeup + 334 [0x490daa]
    20 lck_mtx_sleep + 87 [0x221d42]
    20 thread_block + 33 [0x227654]
    20 thread_block_reason + 331 [0x2275c6]
    20 thread_dispatch + 1966 [0x227327]
    20 machine_switch_context + 659 [0x2a9adb]
      Thread d2e   
    DispatchQueue 1634545000
      User stack:
    20 start_wqthread + 30 (in libSystem.B.dylib) [0x97b965c6]
    20 _pthread_wqthread + 390 (in libSystem.B.dylib) [0x97b96781]
    20 _dispatch_worker_thread2 + 240 (in libSystem.B.dylib) [0x97b96cfe]
    20 _dispatch_queue_invoke + 163 (in libSystem.B.dylib) [0x97b96f59]
    20 kevent + 10 (in libSystem.B.dylib) [0x97b97382]
      Kernel stack:
    20 kevent + 97 [0x47a699]
      Thread d35  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 82783 (in AdobeSWFL) [0x150401ef]
    20 APXGetHostAPI + 2567887 (in AdobeSWFL) [0x1529ed5f]
    20 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x97be705f]
    20 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b42]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d36  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 82783 (in AdobeSWFL) [0x150401ef]
    20 APXGetHostAPI + 2567887 (in AdobeSWFL) [0x1529ed5f]
    20 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x97be705f]
    20 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b42]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d37  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 82783 (in AdobeSWFL) [0x150401ef]
    20 APXGetHostAPI + 2567887 (in AdobeSWFL) [0x1529ed5f]
    20 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x97be705f]
    20 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b42]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d38  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 82783 (in AdobeSWFL) [0x150401ef]
    20 APXGetHostAPI + 2567887 (in AdobeSWFL) [0x1529ed5f]
    20 pthread_cond_wait + 48 (in libSystem.B.dylib) [0x97be705f]
    20 semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b42]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d3a  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 462154 (in AdobeSWFL) [0x1509cbda]
    20 APXGetHostAPI + 462076 (in AdobeSWFL) [0x1509cb8c]
    20 APXGetHostAPI + 2567513 (in AdobeSWFL) [0x1529ebe9]
    20 pthread_cond_timedwait_relative_np + 47 (in libSystem.B.dylib) [0x97bcd5a8]
    20 semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b5a]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d3b  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 4096584 (in AdobeSWFL) [0x154140d8]
    20 APXGetHostAPI + 2567831 (in AdobeSWFL) [0x1529ed27]
    20 pthread_cond_timedwait_relative_np + 47 (in libSystem.B.dylib) [0x97bcd5a8]
    20 semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b5a]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Thread d3c  
      User stack:
    20 thread_start + 34 (in libSystem.B.dylib) [0x97b9e0de]
    20 _pthread_start + 345 (in libSystem.B.dylib) [0x97b9e259]
    20 APXGetHostAPI + 2568459 (in AdobeSWFL) [0x1529ef9b]
    20 APXGetHostAPI + 2568231 (in AdobeSWFL) [0x1529eeb7]
    20 APXGetHostAPI + 2568124 (in AdobeSWFL) [0x1529ee4c]
    20 APXGetHostAPI + 2676814 (in AdobeSWFL) [0x152b96de]
    20 APXGetHostAPI + 2567831 (in AdobeSWFL) [0x1529ed27]
    20 pthread_cond_timedwait_relative_np + 47 (in libSystem.B.dylib) [0x97bcd5a8]
    20 semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x97b70b5a]
      Kernel stack:
    20 semaphore_wait_continue + 0 [0x22a88f]
      Binary Images:
    0x1000 -
    0x34fe7  com.adobe.PDApp 1.0.179.0 (1.0.179.0) <E16462A8-1AB0-9745-0E41-6B3F6A4C897B> /Library/Application Support/Adobe/OOBE/PDApp/core/PDApp.app/Contents/MacOS/PDApp
      0x14ffc000 - 0x15e15fc3  com.adobe.adobeswfl ??? (2.0.0.7489) <C954CA64-9B28-A7FA-E391-C1C6524F1639> /Library/Application Support/Adobe/OOBE/PDApp/core/Adobe Application Manager.app/Contents/Frameworks/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents /MacOS/AdobeSWFL
      0x1abd1000 - 0x1ac4efef  UWANative.dylib ??? (???) <9325CC23-2FFE-140C-0806-EB32ABCC879D> /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
      0x1ac5c000 - 0x1ae04ff7  com.adobe.AAM.AdobeUpdaterCoreFramework UpdaterCore 1.5.0.6 (1.5.0.6) <662CD7F6-3848-A241-02EB-DAC9A5F88C78> /Library/Application Support/Adobe/OOBE/PDApp/UWA/../UWA/UpdaterCore.framework/UpdaterCore
      0x91045000 - 0x91928ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
      0x949e3000 - 0x94d07fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
      0x94d97000 - 0x94f12fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
      0x97b70000 - 0x97d17ff7  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    [ less useful bits removed ]
    Model: MacBookPro6,2, BootROM MBP61.0057.B0A, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS545032B9SA02, 298,09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 4,07 GB
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3

Maybe you are looking for

  • MM-SUS Scenario---Error while posting the PO in SUS System from R/3 system.

    Hi All, An error occurred within an XI interface: Exception occurred:BBP_PD:004 -Partner 0000003000 not found E:BBP_PD:147 -Enter a country for partner 0000003000 with type 'Sold-to Party' Programm: CX_BBP_BD_ERROR===============CP; Include: CX_BBP_B

  • I want /tmp in RAM

    Hi, I'm enjoying 1 Gb RAM, then I decided to allocate some RAM as temporary use. I set in my /etc/fstab /tmp /dev/shm tmpfs size=256m 0 0 But I'm not sure whether my /tmp is erased by boot procedures or because it's a real RAM. Is there some test, to

  • Primary key updation in the Master details form.

    Hi All, I am struggling with Master Detail form in apex 3.12. I have two tables. SaleMaster ( TRN_ID as PK ) Created from Sequence. SaleDetail ( TRN_ID , TRN_TYPE as PK) TRN_ID FK from SaleMaster , TRN Type is user Input in SaleDetail. What is best s

  • Editing Text in files

    In Xcode I would like to build a project which alters the text in system files, so I want to find a string and replace it with another string and then possibly keep track of the change in a visible way saya display or LED. I found this very easy in a

  • Alternative streaming source for AppleTV?

    I just bought the new Time Capsule to make room for more movies to be played on my AppleTV, but then it seems I still need my mac running to manage it all thru iTunes!!! This is so not ok! I don't want to keep my Mac running at all times just to conn