Trying to print separation to pdf in Adobe Illustrator CS5 using Mac OS 10.6.7

Is it possible to print separations to pdf in Adobe Illustrator CS5 using Mac OS 10.6.7. Can't seem to make it work. Help.

You should be able to input any size you want into both fields. If not reinstall acrobat or manually assign a correct PPD. System Preferences >>Print & Fax >> Adobe PDF >> Options >> Driver

Similar Messages

  • Unable to print doc as .pdf with Adobe reader XI

    Unable to print doc as .pdf with Adobe reader XI in windows 7. Tried uninstalling the software and also repair with same result. When clicked on print doc the option to print as .pdf cannot be seen. It just does not appear in the printer option. Help pls.

    cooljolu wrote:
    ya downloaded the trial version of acrobat. I guess it was free earlier and never faced a problem.
    Acrobat has NEVER been free. Reader (formerly called "Acrobat Reader") has always been free, but the Creation/Editing software has always had a price tag.

  • I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page, but not all or pages 1-5.  Can this be overcome?

    I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page only, but not all or pages 1-5.  I need to go to the next subsequent page and command to print current page; continuing with this procedure until all pages are printed one at a time. Can this be overcome?

    You can use printPages(1, 5), however I need to know how you print current page.

  • Help! Trying to print emails w/PDF attachments via bluetooth from 8300 to HP OfficeJet8470

    Trying to print emails w/PDF attachments via bluetooth from 8300 to HP OfficeJet8470.
    My boss shopped for and picked this phone based on the store staff.  He wants to be able to have our service tech be able to receive work orders via email, in the form of a pdf attachment, and be able to print using the bluetooth enabled HP Office Jet 8470, hardware that was sold to him in another store with the statements that it would work with his application.
    Everything I have seen on this site, and the lack of information elsewhere, leads me to question if we have the correct applications/hardware at all...
    If so, I need to be able to explain clearly to my boss any options that we have, and why or why not it won't work. 
    Any ideas at all?  Thanks in advance~    Reagan

    Your BlackBerry alone won't connect to a Bluetooth printer. Whoever told him that it would should be questioned.
    However, there is an application called BeamSuite, that offers a printing solution specifically for PDF documens that you should explore...
    Print Documents to a Bluetooth Enabled Printer 
    http://www.slgmobile.com/beamsuite.html
    BeamSuite is much more than a document viewer though. You can also print your documents directly from your BlackBerry to any Bluetooth enabled printer. Simply pair your BlackBerry device with the printer and print your documents.
    If your printer is not Bluetooth enabled, you can still print your documents to it by connecting a Bluetooth printer adapter to your printer that connects to the printer’s USB port. A key differentiator of our solution is that it allows you to easily and transparently print to over 1500 compatible printers from virtually any BlackBerry device, not just the latest and the most powerful BlackBerry.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Color variations from Adobe Illustrator CS5 to Acrobat 9 (PDF)

    I'm a new designer who is trying to solve issues of color variations when I create a PDF file from Illustrator CS5. Can anyone tell me what I need to do to ensure that the colors match from application to application? Do I need to select certain settings for RGB, CYMK, or other color libraries (i.e., Pantone)? Thanks for the help!

    If you are creating your PDF using Save As > PDF or Print > PDF; your selections in Illustrator's Color Settings should go with the file.  However, it could also be the settings you choose when you create the PDF.  I use Distiller where I can use the same settings from Illustrator and have them embedded in the PDF when distilled.  The key being that settings match when you create the PDF.

  • I'm trying to print  an Ancestry document from an iPad 2 using air print onto a Canon 5350 (one of the printers ok'd by Apple) I am unable to change the print orientation from portrait to landscape.  That is I change it in printer settings but no use.

    I'm trying to print an Ancestry document from an iPad 2 using air print.  The printer is a Canon MG5350 (on the Apple approved list) I have no difficulty printing but only in portrait format.  I've tried changing printer preferences from my computer but even though the Canon accepts the changes it will not print landscape - can anyone advise please?

    Hi,
    How do you connect the printer to the XP machine ? If USB, you need to make that machine as a Print server. Please try this:
       http://techtips.salon.com/make-windows-computer-pr​int-server-11914.html
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I am trying to export the combained PDF based on BOOK opetion using below scripts. but i am getting following error message "Invalid value for parameter 'to' of method 'exportFile'. Expected File, but received 1952403524". anyone knows, please suggest me

    Dear ALL,
    i am trying to export the combained PDF based on BOOK opetion using below scripts. but i am getting following error message "Invalid value for parameter 'to' of method 'exportFile'. Expected File, but received 1952403524". anyone knows, please suggest me solutions.
    var myBookFileName ,myBookFileName_temp;
                    if ( myFolder != null )
                            var myFiles = [];
                            var myAllFilesList = myFolder.getFiles("*.indd");    
                            for (var f = 0; f < myAllFilesList.length; f++)
                                        var myFile = myAllFilesList[f]; 
                                        myFiles.push(myFile);
                            if ( myFiles.length > 0 )
                                        myBookFileName = myFolder + "/"+ myFolder.name + ".indb";
                                        myBookFileName_temp=myFolder.name ;
                                        myBookFile = new File( myBookFileName );
                                        myBook = app.books.add( myBookFile );  
                                       myBook.automaticPagination = false;
                                        for ( i=0; i < myFiles.length; i++ )
                                                   myBook.bookContents.add( myFiles[i] );             
                                        var pdfFile =File(File(myFolder).fsName + "\\"+myBookFileName_temp+"_WEB.pdf");
                                        var bookComps = myBook.bookContents;
                                        if (bookComps.length === 1)
                                                       bookComps = [bookComps];
                                         var myPDFExportPreset = app.pdfExportPresets.item("AER6");
                                        app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFEx portPreset,bookComps);
                                      //myBook.exportFile (ExportFormat.pdfType, pdfFile, false);
                                      //myBook.exportFile(pdfFile, false, pdfPref, bookComps);
                                        myBook.close(SaveOptions.yes);      

    Change the below line:
    app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFExp ortPreset,bookComps);
    to
    app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFExp ortPreset);
    Vandy

  • I am trying to update Adobe Illustrator CS5.1 So my files are compatible.

    I am trying to update Adobe Illustrator CS5.1 So my files are compatible.
    I get an error message when I try to update saying:
    Updates could not be applied. The error log file may help you in identifying the problem. Then, try updating again. If the problem persist, contact customer support for further assistance.
    Error Log: Premiere Elements 9.0.1 Updater There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207
    What do I do with information? I tried updating several times. None of my Adobe products will update.

    Nobody can tell you anything without proper system info or other technical details. And I fail to see what compatibility issues you are trying to fix. Illustrator allows to save to a variety of formats, including older versions of its own AI files...
    Mylenium

  • I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ?

    I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ? Right now I have a 10.5.8 is there a way to upgrade or something?

    Buy the Snow Leopard retail installer (http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA).
    That will take you to 10.6.3.
    If required you can then use the combo updater to get to the latest version, 10.6.8 (http://support.apple.com/kb/DL1399)
    SL system reqmts;

  • Adobe Illustrator CS5 does not show PDF thumbnails when browsing

    When I am browsing through PDF files to open one of them in Adobe Illustrator CS5 it does not show the thumbnail.  When I am browsing in Adobe Acrobat it does show the thumbnails.  If I have Adobe Acrobat open and am browsing through files and the thumbnails are showing then if I open Adobe Illustrator and browse for a file the thumbnail does show up. 
    How can I get Illustrator to always show the PDF thumbnails.  I have to frequently browse through thousands of PDF files and it is imperative that I can see the thumbnail for these PDF files.  I primarily use Illustrator to edit PDF files.
    The computer is Windows 7 Enterprise 64 bit edition.  Thumbnails barely work when browsing files through Explorer.  Some thumbnails will show, but not very many of them and it is extremely slow to load the thumbnails that will display.

    Bob,
    So I am assuming you are talking about viewing the files using this method first:
    To use the 32-bit version of Windows Explorer, follow these steps:
    Click Start, click Run, type the following in the Open box, and then click OK:
    Drive_Letter:\windows\syswow64\explorer.exe /separate
    Note The placeholder Drive_Letter represents the drive where the x64-based version of Windows is installed.
    Please let me know if I am missing what you are saying here.

  • I have adobe illustrator CS5. When I save a document as a pdf and open it again later to edit Adobe reader can't read the whole document because it only shows part of the document. It is very frustrating. How can I fix this?

    I have adobe illustrator CS5. When I save a document as a pdf and open it again later to edit Adobe reader can't read the whole document because it only shows part of the document. It is very frustrating. How can I fix this?

    keokipineapples schrieb:
    I do have all of my files I am working on located on an external drive. I plan to transfer them directly to the hard drive
    Transfer them to your harddisk immediately.
    External drives are not offiially supported and the source of errors of all kinds including complete loss of files.
    Illustrator support for networks and removable media

  • I'm trying to print a multiple page document from my ipad using an Airprint printer. Only the first page is printing, Please help?

    I'm trying to print a multiple page document from my ipad using an AirPrint printer. Only the first page is printing. Please help. The printer works correctly with my desktop and laptop.

    What version of iOS are you using?  Some people were having this problem before, and it was fixed when they updated to iOS 5.

  • I am trying to install adobe illustrator CS5 from cd but it will not install

    When I install it the message 'installer has failed to initialize' appears. It then advises to download the Adobe Support Advisor. I have done this but the advisor will not respond (I have already installed Adobe Air). I have also successfully run the Adobe cleaner tool.
    Any help please?
    Message was edited by: charisolivia

    Try downloading it and then run the installer.
    1. Navigate to Illustrator CS6 Downloads page : http://www.adobe.com/cfusion/tdrc/index.cfm?product=illustrator
    2. Sign in with your Adobe ID.
    3. Copy and paste the following links on the address bar one at a time and hit enter :
    Adobe Illustrator CS5 English Windows
    http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.7z
    http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.exe
    4. Save both the files.
    5. Run the .exe file
    In case you still face issues
    Run the Creative Suite Cleaner Tool and clean out the temporary files created during install in your temp directory. Additioanlly, check your task manager and terminate any instances of setup.exe and msiexec.exe that may still be running

  • Opening Adobe illustrator CS5 file in CorelDraw X5

    I was totally new to graphic design and the best I could do was resize images in MS Paint or use Word 2010. Than I discovered Adobe Illustartor as I needed to make a logo and Letter Head. After breaking my head against my monitor (does not hurt any more) and learning it for 2 weeks, I became sufficiently good enough (if I can be excused to say that) and designed the logo and letterhead. Now it has to go to print.
    The problem is that all the commercial printers and the people who use them, HERE use CorelDRAW and not only that but also older versions from 9 to 15. They refuse to take Adobe Illustrator files or even CorelDRAW files above version 12 such as v15 or X5. They refuse to work with PDF files also. No Word 2010 files either. Simply and Only CorelDRAW files of version 9 to 12.
    The Adobe Illustrator CS5 does not have options of saving the files in ".cdr" format. And when I import or open the ".ai" file in CorelDRAW X5, many things happen. Color changes of text as well as objects. Some objects do not get displayed. Alignment and positioning gets changed, and many others.
    I have taken some steps after reading on the net to make it easier for CorelDRAW X5 to import the ".ai" files. And also tried many things. These include, but are not limited to..
    Uncheck/disable the "compression" when saving the file in AI-CS5. 
    Uncheck/disable the "Embed ICC Prile" when saving in AI-CS5. 
    Convert all text to outlines. 
    Saving in "SVG", "PDF" all different versions. 
    Saving in older AI-CS5 Legacy versions. 
    Exporting the file from AI-CS5 in different file formats. 
    Importing the file from CD-X5. 
    Working in RGB Color Mode.
      ... And many more. 
    Please note that I can not be expected to fresh learn CD-X5 and abandon AI-CS5 and design from the begining, if that is a "sole" answer. Also my design is simple enough. Attached are 2 pics. One of the logo and the other of the letterhead. Just 3 rounded rectangles filled with 2 color gradients and vectors of animals with styles applied to those animals and with text at the bottom.
    The Logohttp://oi44.tinypic.com/ieqs0m.jpg
    The LetterHeadhttp://oi41.tinypic.com/1zzj03s.jpg
    Please further note (yes! I know, you have heard that many times) that although I was successful in designing (the asthetic beauty of the design is another matter), I am still new to designing. So Color Theroy or Font theroy have not made past me. And I wonder what's the point of having a standard of "SVG" If these so called "Vector Editing Applications" can not handle the files uniformly?
    I guess my question is how to either
    Export/Save/Save As/Place the file from AI-CS5 to CD-X5 
    Import/Open/Open As/Place the file in CS-X5 from AI-CS5
    Without changes being made to it. My objective to to hand over a print ready file to the printing guys.
    Thanks in Advance.

    Not CS3 but version 3 like this

  • Adobe Illustrator CS5 crashes on every start

    I've new MacBookPro (i7 2,2; 8GB RAM) with Snow Leopard and have just installed the whole package Creative Suite 5 Premium. Every program runs but the illustrator. It crashes every time I try it. I've found many advice of what to do on many forums (creating new user profil, erase Illustrator pref folder, start the system in safe mode etc.), but with no avail.
    I'm posting my crash report, maybe someone can tell me what is going on.
    Thanks in advance.
    Petr
    Process:         Adobe Illustrator [215]
    Path:            /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         399 (15.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [85]
    Date/Time:       2011-05-06 09:46:17.319 +0200
    OS Version:      Mac OS X 10.6.7 (10J4138)
    Report Version:  6
    Interval Since Last Report:          1630 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  55 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                     8A4035DE-5201-4D2A-8BED-505AE18ED344
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILUREat 0x0000000000000000
    Crashed Thread:  0  Dispatchqueue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0  libSystem.B.dylib                     0x92e6de50 strncpy + 80
    1  ...e.illustrator.plugins.ADMTP         0x23077e200x23075000 + 11808
    2  ...e.illustrator.plugins.ADMTP         0x2307abd90x23075000 + 23513
    3  ...e.illustrator.plugins.ADMTP         0x2307c1340x23075000 + 28980
    4  ...tor.plugins.FrameworkServer       0x0dcef8caPluginMain + 1712
    5  com.adobe.coretech.adm                0x2190aff1 ADMBase::DoInit() + 81
    6  com.adobe.coretech.adm                0x21914961 ADMDialog::DoInit() + 23
    7  com.adobe.coretech.adm                0x21918320 ADMDialog::Create(SPPlugin*,char const*, long, ADMDialogStyle, long (*)(_Opaque_ADMDialog*), void*,unsigned long) + 440
    8  com.adobe.coretech.adm                0x21901399ADMSpace::DialogAdapter::Create(SPPlugin*, char const*, long, ADMDialogStyle,long (*)(_Opaque_ADMDialog*), void*, unsigned long) + 59
    9  com.adobe.coretech.adm                0x2191deddADMDialogSuiteImp::Create(SPPlugin*, char const*, long, ADMDialogStyle, long(*)(_Opaque_ADMDialog*), void*, long) + 97
    10 ...tor.plugins.FrameworkServer      0x0dcefa54PluginMain + 2106
    11 ...e.illustrator.plugins.ADMTP        0x2307763b0x23075000 + 9787
    12 ...tor.plugins.FrameworkServer      0x0dcefe3aPluginMain + 3104
    13 ...tor.plugins.FrameworkServer      0x0dcf01ddPluginMain + 4035
    14 ...tor.plugins.FrameworkServer      0x0dcf1317PluginMain + 8445
    15 ...e.illustrator.plugins.ADMTP        0x23080c05PluginMain + 179
    16 com.adobe.illustrator             0x006e8632 AWS_CUI_RevertAlert(OpaqueWindowPtr*,adobe::aws::gen::String<unsigned short>&,adobe::aws::gen::String<unsigned short>&) + 3769602
    17 com.adobe.illustrator             0x006e4797AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsignedshort>&, adobe::aws::gen::String<unsigned short>&) + 3753575
    18 com.adobe.illustrator             0x006ec45aAWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsignedshort>&, adobe::aws::gen::String<unsigned short>&) + 3785514
    19 com.adobe.illustrator             0x001b6e55AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 1678649
    20 com.adobe.illustrator             0x0056c021 AWS_CUI_RevertAlert(OpaqueWindowPtr*,adobe::aws::gen::String<unsigned short>&,adobe::aws::gen::String<unsigned short>&) + 2211569
    21 com.adobe.illustrator             0x001be6bfAWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 1709475
    22 com.adobe.illustrator             0x001c01b3AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 1716375
    23 com.adobe.illustrator             0x00113d3aAWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 1010718
    24  com.adobe.illustrator             0x00050768AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 210508
    25 com.adobe.illustrator             0x000513f6AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 213722
    26 com.adobe.illustrator             0x00050b6e AWS_CUI_GetVersionComments(OpaqueWindowPtr*,adobe::q::QDocument&, adobe::q::QString&,adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long)+ 211538
    27 com.adobe.illustrator             0x00113001AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&,adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long)+ 1007333
    28 com.adobe.illustrator             0x000d424aAWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&,adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*,adobe::q::QProject*, long) + 749870
    29 com.adobe.illustrator             0x00003436 0x1000 + 9270
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0  libSystem.B.dylib                     0x92e82942 kevent + 10
    1  libSystem.B.dylib                     0x92e8305c _dispatch_mgr_invoke + 215
    2  libSystem.B.dylib                     0x92e82519 _dispatch_queue_invoke + 163
    3  libSystem.B.dylib                     0x92e822be _dispatch_worker_thread2 +240
    4  libSystem.B.dylib                     0x92e81d41_pthread_wqthread + 390
    5  libSystem.B.dylib                     0x92e81b86 start_wqthread + 30
    Thread 2:
    0  libSystem.B.dylib                     0x92e819d2 __workq_kernreturn + 10
    1  libSystem.B.dylib                     0x92e81f68 _pthread_wqthread + 941
    2  libSystem.B.dylib                     0x92e81b86 start_wqthread + 30
    Thread 3:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248fpthread_cond_wait + 48
    3  com.adobe.amt.services         0x046b4126AMTConditionLock::LockWhenCondition(int) + 46
    4  com.adobe.amt.services         0x046acdb0_AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5  com.adobe.amt.services         0x046b418c AMTThread::Worker(void*) + 24
    6  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    7  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 4:
    0  libSystem.B.dylib                     0x92e5c11asemaphore_timedwait_signal_trap + 10
    1  libSystem.B.dylib                     0x92e89ca1 _pthread_cond_wait + 1066
    2  libSystem.B.dylib                     0x92eb8ac8pthread_cond_timedwait_relative_np + 47
    3  ...ple.CoreServices.CarbonCore    0x9233ad9dTSWaitOnConditionTimedRelative + 242
    4  ...ple.CoreServices.CarbonCore    0x9233aadbTSWaitOnSemaphoreCommon + 511
    5  ...ple.CoreServices.CarbonCore    0x9235ed7bTimerThread + 97
    6  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    7  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 5:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8pthread_cond_wait$UNIX2003 + 73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 6:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 7:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9   libSystem.B.dylib                     0x92e89819_pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 8:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 9:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 10:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 11:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92e89d1e _pthread_cond_wait + 1191
    2  libSystem.B.dylib                     0x92e8b9b8 pthread_cond_wait$UNIX2003 +73
    3  ...ple.CoreServices.CarbonCore    0x9234f426TSWaitOnCondition + 126
    4  ...ple.CoreServices.CarbonCore    0x9233ad75TSWaitOnConditionTimedRelative + 202
    5  ...ple.CoreServices.CarbonCore    0x9233673fMPWaitOnQueue + 250
    6  AdobeACE                               0x01677579 0x163d000 + 238969
    7  AdobeACE                               0x01676f71 0x163d000 + 237425
    8  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    9  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    10 libSystem.B.dylib                    0x92e8969e thread_start + 34
    Thread 12:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  AdobeAGM                               0x01ab159d AGMInitialize + 3243373
    4  AdobeAGM                               0x01ab21ed AGMInitialize + 3246525
    5  AdobeAGM                               0x01ab7de0 AGMInitialize + 3270064
    6  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    7  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 13:
    0  libSystem.B.dylib                     0x92e819d2 __workq_kernreturn + 10
    1  libSystem.B.dylib                     0x92e81f68 _pthread_wqthread + 941
    2  libSystem.B.dylib                     0x92e81b86 start_wqthread + 30
    Thread 14:
    0  libSystem.B.dylib                     0x92e8a062 __semwait_signal + 10
    1  libSystem.B.dylib                     0x92eb5ee5 nanosleep$UNIX2003 + 188
    2  ...trator.plugins.AISaveForWeb       0x2619a8bbScObjects::Thread::sleep(unsigned int) + 59
    3  ...trator.plugins.AISaveForWeb       0x26195303ScObjects::BridgeTalkThread::run() + 163
    4  ...trator.plugins.AISaveForWeb       0x2619a9c8ScObjects::Thread::go(void*) + 168
    5  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    6  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 15:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 16:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 17:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 18:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 19:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 20:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 21:
    0  libSystem.B.dylib                     0x92e5c10e semaphore_timedwait_trap + 10
    1  ...ple.CoreServices.CarbonCore    0x9234cb4aMPWaitOnSemaphore + 125
    2  MultiProcessor Support          0x28a77124 ThreadFunction(void*) + 78
    3  ...ple.CoreServices.CarbonCore    0x9231a74ePrivateMPEntryPoint + 68
    4  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    5  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 22:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 23:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 24:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 25:
    0  libSystem.B.dylib                     0x92e5c102semaphore_wait_signal_trap + 10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 26:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 27:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8_pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 28:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 29:
    0  libSystem.B.dylib                     0x92e5c102 semaphore_wait_signal_trap +10
    1  libSystem.B.dylib                     0x92e89cb8 _pthread_cond_wait + 1089
    2  libSystem.B.dylib                     0x92ed248f pthread_cond_wait + 48
    3  com.adobe.adobeswfl             0x2b04ed5f APXGetHostAPI + 2567887
    4  com.adobe.adobeswfl             0x2adf01ef APXGetHostAPI + 82783
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 30:
    0  libSystem.B.dylib                     0x92e5c11asemaphore_timedwait_signal_trap + 10
    1  libSystem.B.dylib                     0x92e89ca1 _pthread_cond_wait + 1066
    2  libSystem.B.dylib                     0x92eb8ac8pthread_cond_timedwait_relative_np + 47
    3  com.adobe.adobeswfl             0x2b04ed27 APXGetHostAPI + 2567831
    4  com.adobe.adobeswfl             0x2b1c406b APXGetHostAPI + 4096475
    5  com.adobe.adobeswfl             0x2b04ee4c APXGetHostAPI + 2568124
    6  com.adobe.adobeswfl             0x2b04eeb7 APXGetHostAPI + 2568231
    7  com.adobe.adobeswfl             0x2b04ef9b APXGetHostAPI + 2568459
    8  libSystem.B.dylib                     0x92e89819 _pthread_start + 345
    9  libSystem.B.dylib                     0x92e8969e thread_start + 34
    Thread 0 crashed with X86 Thread State(32-bit):
    eax: 0xbfffef63  ebx:0x23077bdf  ecx: 0x00000100  edx: 0x0000000d
    edi: 0xbfffef63  esi:0x00000000  ebp: 0xbffff0c8  esp: 0xbfffef24
      ss: 0x00000023  efl:0x00010216  eip: 0x92e6de50   cs: 0x0000001b
      ds: 0x00000023   es:0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x00000000
    Binary Images:
       0x1000 -  0x10ddfe7+com.adobe.illustrator 399 (15.0.2)<E981EB14-E985-235C-5B50-36ECD01A3851> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 - 0x14cbfe7 +AdobeAXEDOMCore ??? (???)<F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x153a000 - 0x154afff com.apple.carbonframeworktemplate 1.0 (1.0)<52191201-4C2A-FC9B-06E4-0327B5203D7E> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x154f000 - 0x156aff9 +AdobePDFSettings ??? (???) /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobePDFSettings.framew ork/Versions/A/AdobePDFSettings
    0x1584000 - 0x15c8fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0)<AF5B961D-03B5-1F8F-0DE0-E7DE0863E578> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AIPort.framework/Versio ns/A/AIPort
    0x162b000 - 0x162bfff +SPBasic ??? (???)<574E14ED-6879-7536-E9A1-77F66D81FCBB> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/SPBasic.framework/Versi ons/A/SPBasic
    0x162f000 - 0x1635ffb +com.adobe.coretech.adobesplashkit AdobeSplashKit version 1.0(1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeSplashKit.framewor k/Versions/A/AdobeSplashKit
    0x163d000 - 0x1752fff +AdobeACE ??? (???)<BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1775000 - 0x1c9bfff +AdobeAGM ??? (???)<72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1ddc000 - 0x1e18fff +AdobeARE ??? (???)<B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeARE.framework/Vers ions/A/AdobeARE
    0x1e21000 - 0x1e47ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Ver sions/A/AdobeAXE8SharedExpat
    0x1e58000 - 0x1e73fff +AdobeBIB ??? (???)<5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeBIB.framework/Vers ions/A/AdobeBIB
    0x1e7d000 - 0x1e9eff7 +AdobeBIBUtils ??? (???)<1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1eaa000 - 0x219cff7 +AdobeCoolType ??? (???)<90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x2224000 - 0x22bcfff +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573)<F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x231b000 - 0x23fefef +AdobePDFPort ??? (???)<26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2433000 - 0x2a68feb +AdobePDFL ??? (???)<B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobePDFL.framework/Ver sions/A/AdobePDFL
    0x2b94000 - 0x2c21ff7 +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573)<6A15402A-09B2-B1F8-5ECC-D7871EC054C3> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeScCore.framework/V ersions/A/AdobeScCore
    0x2c66000 - 0x2d06fef +AdobeSVGExport ??? (???) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/ A/AdobeSVGExport
    0x2d30000 - 0x2fceff2 +AdobeSVGRE ??? (???)<95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Ve rsions/A/AdobeSVGRE
    0x30a7000 - 0x30ffff7 +AdobeXMP ??? (???)<73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x310e000 - 0x319afef +AdobeXMPFiles ??? (???)<A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x31d1000 - 0x329eff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0)<08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3301000 - 0x33dbfef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0)<5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x341b000 - 0x3dcbfff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0)<02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3dce000 - 0x41a6ff7 +AdobeMPS ??? (???)<272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeMPS.framework/Vers ions/A/AdobeMPS
    0x42d5000 - 0x433bffb +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x436b000 - 0x43fcff7 +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0)<581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/ICUConverter.framework/ Versions/3.6/libicucnv.dylib.36.0
    0x441b000 - 0x4601ff7 +com.adobe.linguistic.LinguisticManager 5.0.0 (11696)<AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x468f000 - 0x46f6fea +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion:3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64)<EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4735000 - 0x47b2fff +AdobeOwlCanvas ??? (???)<6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x47ce000-  0x4906fe7 +WRServices ??? (???)<87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/WRServices.framework/Ve rsions/A/WRServices
    0x4948000 - 0x494cffc +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302)<E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeCrashReporter.fram ework/Versions/A/AdobeCrashReporter
    0x4953000 - 0x49a6ffb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011)<4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/LogSession.framework/Ve rsions/A/LogSession
    0x49ee000 - 0x4a00fff +com.adobe.pip ??? (5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/Adob ePIP
    0x4a09000 - 0x575bfeb +com.adobe.psl AdobePSL 12.0.0.11086 (12.0.0.11086)<ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobePSL.framework/Vers ions/A/AdobePSL
    0x5a9d000 - 0x5c1afef +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0)<565B8F4B-EFEA-D847-91FE-17B8ED169DF2> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/dvacore.framework/Versi ons/A/dvacore
    0x5d95000 - 0x6085fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0)<7E7F77B3-0CB3-8885-915E-EDACEE27500E> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x63ad000 - 0x66f3ff3 +com.adobe.dvaadameve.framework dvaadameve version 5.0.0(5.0.0.0) <0E97C356-CEE3-9CA3-3C90-8196F560164E> /Applications/AdobeIllustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c02000 - 0x6c14fef +com.adobe.dvaai.framework dvaai version 5.0.0 (5.0.0.0)<2D9772CA-D866-6A7F-CF74-FD7F485350B2> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c25000 - 0x6c2bfef +com.adobe.boost_date_time.framework boost_date_time version5.0.0 (5.0.0.0) <FB5A16A5-D6E7-71B7-78A8-A174A64EF477>/Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6c3c000 - 0x6c47ff3 +com.adobe.boost_filesystem.framework boost_filesystem version5.0.0 (5.0.0.0) <604EA207-EEF2-AC6E-A8B1-26737E5AB0A7>/Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6c5b000 - 0x6cd9fe2 +com.adobe.boost_regex.framework boost_regex version 5.0.0(5.0.0.0) <F95BC864-6CFC-EAF4-A6DF-27608A5DD30E> /Applications/AdobeIllustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6d3d000 - 0x6d47fff +com.adobe.boost_signals.framework boost_signals version 5.0.0(5.0.0.0) <08C988D8-10F3-66EF-AE15-B086AD240942> /Applications/AdobeIllustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6d5a000 - 0x6d5cffb +com.adobe.boost_system.framework boost_system version 5.0.0(5.0.0.0) <7ACBC8B3-0BEA-7B7B-04FF-95C6A93E3E7E> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/ boost_system
    0x6d63000 - 0x6d6aff2 +com.adobe.boost_threads.framework boost_threads version 5.0.0(5.0.0.0) <4942ACFF-5944-0F7F-8481-49CAF902D15F> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A /boost_threads
    0x6d7a000 - 0x6dd8fe2 +com.adobe.boost_serialization.framework boost_serializationversion 5.0.0 (5.0.0.0) <FBAA7D86-4F90-3337-4657-022BA313C894>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/boost_serialization.framework/Vers ions/A/boost_serialization
    0x6eaf000 - 0x704efe7 +com.adobe.owl AdobeOwl version 3.0.89 (3.0.89)<04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/AdobeOwl.framework/Vers ions/A/AdobeOwl
    0x70b7000 - 0x7124fef +FileInfo ??? (???)<4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x713f000 - 0x71f4fe7  libcrypto.0.9.7.dylib0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D>/usr/lib/libcrypto.0.9.7.dylib
    0x723a000 - 0x727aff7  com.apple.vmutils 4.2(106) <92BB4844-304C-C7AB-1F9B-686537C56099>/System/Library/PrivateFrameworks/vmutils .framework/Versions/A/vmutils
    0x7293000 - 0x7296ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508)<FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe IllustratorCS5/AdobeIllustrator.app/Contents/Frameworks/adbeape.framework/Versi ons/A/adbeape
    0x72e6000 - 0x72e7ff7 com.apple.textencoding.unicode 2.3 (2.3)<A7D310DB-A5E6-C834-F72F-A66453834CC0> /System/Library/TextEncodings/UnicodeEncodings.bundle/Contents/MacOS/Unicode Encodings
    0x7744000 - 0x7744fff +com.adobe.illustrator.plugins.PlugInRes Localizer version15.0.0 (15.0.0) <31807739-9A66-20D1-2D8D-1077383E76C7>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Required/Resources/cs_CZ/PluginRes.aip/Contents/MacOS/ PlugInRes
    0x7784000 - 0x778cfff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1)<80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x77f2000 - 0x77f3ff7  ATSHI.dylib ??? (???)<56F243F1-C341-86EA-2BCC-31E75D46EBBC>/System/Library/Frameworks/Applicati onServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/AT SHI.dylib
    0x77f8000 - 0x77f9fff +com.adobe.illustrator.plugins.ASLib ASLib version 15.0.0(15.0.0) <E0248AB4-BFC9-A137-113D-6B7C9E9EC662> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/ASLib.aip/Contents/MacOS/ASLib
    0x77fd000 - 0x77fdff7  libmx.A.dylib 315.0.0(compatibility 1.0.0) <72FF6A91-C3EC-4634-A0FB-E1586C2404E4>/usr/lib/libmx.A.dylib
    0x9600000 - 0x9670feb +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/ad obe_caps
    0x96e0000 - 0x96e7ffe +com.adobe.illustrator.plugins.Action Action version 15.0.0(15.0.0) <142864FE-DD35-352E-D04F-3CEC42460B58> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Extensions.localized/Actio n.aip/Contents/MacOS/Action
    0x97f8000 - 0x97fcffb +com.adobe.illustrator.plugins.ToolSelector Tool Selectorversion 15.0.0 (15.0.0) <5F46ADCB-63B5-9C82-4EC3-AADF25CCBE2F>/Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/ToolSelector.aip/Content s/MacOS/ToolSelector
    0xdcee000 - 0xdcf7fff +com.adobe.illustrator.plugins.FrameworkServer FrameworkServer version 15.0.0 (15.0.0) <49D2AB8D-EDA1-D195-7F30-A0F43FB445BB>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/F rameworkServer
    0xdcfb000 - 0xdcfcfff +com.adobe.illustrator.plugins.MPSCommon MPSCommon version 15.0.0(15.0.0) <D7CD8FCC-D327-056C-44F2-65D1653946A4> /Applications/AdobeIllustrator CS5/Plug-ins.localized/IllustratorFormats.localized/MPSCommon.aip/Contents/MacO S/MPSCommon
    0xdfc4000 - 0xdfedfeb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508)<E0F7666B-921D-C4D6-63B3-E8B445D26892> /Library/ApplicationSupport/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
    0x1faa5000 - 0x1faabff7+com.adobe.illustrator.plugins.ArtConverters ArtConverters version 15.0.0 (15.0.0) <3CBFAF3A-3B7E-3AC9-EDAF-8AA214A87EA1>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/Art Converters
    0x1faaf000 - 0x1fad9fff+com.adobe.illustrator.plugins.BRSPencilTool Pencil Tool version 15.0.0 (15.0.0) <ED8C5A7E-A1FC-B46B-B537-6E41529B2DD1>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRS PencilTool
    0x1fae0000 - 0x1faf0fff+com.adobe.illustrator.plugins.Flatten Transparency  Flatten Transparency version 15.0.0 (15.0.0)<7CAAAD9E-050B-4B94-712B-7F33C76A204C> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Required/Plug-ins/FlattenTransparency.aip/Contents/MacOS/Flatte n Transparency
    0x1faf7000 - 0x1fafafff+com.adobe.illustrator.plugins.GeometryS Geometry Suite version 15.0.0 (15.0.0)<F8F2B1CA-D293-7192-E07E-93909A2A6828> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Geometry.aip/Contents/Ma cOS/GeometryS
    0x209a0000 - 0x209b5fef+com.adobe.illustrator.plugins.FOConversionSuite FOConversionSuite version15.0.1 (15.0.1) <7FB772B5-A8F9-1663-73DB-D51629DF9FC0>/Applications/Adobe Illustrator CS5/AdobeIllustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS /FOConversionSuite
    0x209e3000 - 0x209f9ffb +com.adobe.illustrator.plugins.ControlPaletteControlPalette version 15.0.0 (15.0.0)<F9F1ABE1-547B-38B4-F95B-704AE58B97E3> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/ControlPanel.aip/Content s/MacOS/ControlPalette
    0x20bd4000 - 0x20becff3+com.adobe.illustrator.plugins.Workspaces Workspaces version 15.0.0 (15.0.0)<AAD61C6D-603D-08A6-D432-71CFB155E25C> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Workspaces.aip/Contents/ MacOS/Workspaces
    0x20bf3000 - 0x20bf9fe8+com.adobe.illustrator.plugins.TextWrapDlg TextWrapDlg version 15.0.0 (15.0.0)<AFCFCBDC-8EA9-8150-7415-538DA59A30FB> /Applications/Adobe IllustratorCS5/Plug-ins.localized/IllustratorFilters.localized/TextWrapDlg.aip/ Contents/MacOS/TextWrapDlg
    0x20f00000 - 0x20f55ff0+com.adobe.illustrator.plugins.Photoshop Adapter Photoshop Adapter version15.0.0 (15.0.0) <F760E076-0C60-0E96-47E4-EE0D4140C5BB>/Applications/Adobe Illustrator CS5/Plug-ins.localized/PhotoshopFilters.localized/Photoshop Adapter.aip/Contents/MacOS/Photoshop Adapter
    0x20f66000 - 0x20f86fe2+com.adobe.illustrator.plugins.Rasterize Rasterize version 15.0.2 (15.0.2)<1460C2EC-66AE-3120-F4C6-37EA9015E9DB> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0x20fa9000 - 0x20fe1fff+com.adobe.illustrator.plugins.BrushManager Brush Manager version 15.0.0(15.0.0) <004D0CCF-80BD-8DC1-7E44-5FD113507384> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/BrushManager.aip/Contents/MacOS/Bru shManager
    0x20fea000 - 0x20ff2ff7+com.adobe.illustrator.plugins.DiffusionRaster DiffusionRaster version 15.0.0(15.0.0) <8EA465B9-0536-901A-7E7C-C7041432E982> /Applications/AdobeIllustrator CS5/Plug-ins.localized/IllustratorFilters.localized/DiffusionRaster.aip/Content s/MacOS/DiffusionRaster
    0x20ff6000 - 0x20ffafff+com.adobe.illustrator.plugins.ShapeS Shape Construction Suite version 15.0.0(15.0.0) <70176E68-D9D8-6D0E-599F-56A0BE108A53> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0x21900000 - 0x219d8fff+com.adobe.coretech.adm 3.10x04 (3.1)<8919B146-1010-690F-C369-FBA8C1F090CD> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x21b57000 - 0x21ba4fff+com.adobe.illustrator.plugins.PDF Suite PDF Suite version 15.0.1 (15.0.1)<057D64CA-7DF5-BB35-00BC-6BC9ACE97F3D> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x21c04000 - 0x21c4afff +FilterPort ???(???) <0FA05E77-48C4-2AE4-EC28-BA37EA2884B8> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/Fi lterPort
    0x21cbe000 - 0x21ceeffc+com.adobe.illustrator.plugins.SymbolPalette Symbol Palette version 15.0.0(15.0.0) <66A518A1-A747-6EE5-0AF4-5E5B30CEB789> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/SymbolPanel.aip/Contents/MacOS/Symb olPalette
    0x21cf7000 - 0x21cfafff +com.adobe.illustrator.plugins.CropMarks Crop Marks version 15.0.0 (15.0.0)<B27233F5-F46F-520B-3D4E-3DADF31728C2> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Illustrator Filters.localized/CropMarks.aip/Contents/MacOS/Crop Marks
    0x21e00000 - 0x21ecbfec +com.adobe.illustrator.plugins.BeautifulStrokesBeautiful Strokes Suite version 15.0.0 (15.0.0)<9AC1B864-D80E-C70E-7408-B2554A1E2671> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/BeautifulStrokes.aip/Con tents/MacOS/BeautifulStrokes
    0x21ee6000 - 0x21f92fea+com.adobe.illustrator.plugins.ColorHarmony ColorHarmony version 15.0.0(15.0.0) <E52FE44A-D024-94CB-D70B-4E0EE79D2906> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Extensions.localized/Color Harmony.aip/Contents/MacOS/ColorHarmony
    0x21fae000 - 0x21fc8fe2+com.adobe.illustrator.plugins.KinsokuDlg KinsokuDlg version 15.0.1 (15.0.1)<C7051AF4-E06C-0EE4-1B1C-43271C060CEC> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/KinsokuDlg.aip/Contents/ MacOS/KinsokuDlg
    0x21ff9000 - 0x22185ffe+com.adobe.illustrator.plugins.PlanetX Live Paint version 15.0.0 (15.0.0)<19942404-22E5-18F0-CA81-89C5DA2BFA34> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Live Paint.aip/Contents/MacOS/PlanetX
    0x221b3000 - 0x22243feb+com.adobe.illustrator.plugins.PaintStyle Paint Style Palettes version 15.0.0(15.0.0) <21DEC189-D1E8-6D28-2591-90AD613A4A7B> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/Paint Style Panel.aip/Contents/MacOS/PaintStyle
    0x22252000 - 0x222c6fe7+com.adobe.illustrator.plugins.Perspective Perspective version 15.0.0 (15.0.0)<B6F284D3-FE9C-8AD6-1050-529D27AD8FEC> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Perspective.aip/Contents /MacOS/Perspective
    0x222da000 - 0x2255bfef+com.adobe.illustrator.plugins.Scripting Support Scripting Support version15.0.0 (15.0.0) <D06A593F-B9A2-154A-6222-DF90FD0F836D>/Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ScriptingSupport.aip/Contents/MacOS /ScriptingSupport
    0x22918000 - 0x22996fe2+com.adobe.illustrator.plugins.SwatchLibraries Swatch Libraries version 15.0.0(15.0.0) <F0AA6574-0276-E239-A888-F2F412FEF4B0> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/SwatchLibraries.aip/Contents/MacOS/ SwatchLibraries
    0x229a7000 - 0x22a33fee+com.adobe.illustrator.plugins.TracingSuite TracingSuite version 15.0.0(15.0.0) <2712E7AD-0DBD-5C13-071D-CE592BD7CD04> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Extensions.localized/Traci ngSuite.aip/Contents/MacOS/TracingSuite
    0x22b1c000 - 0x22b4dff3+com.adobe.illustrator.plugins.VariablesPalette Variables Palette version15.0.1 (15.0.1) <ED25AA41-EDA1-E104-A61D-AEBAD5741722> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/VariablesPanel.aip/Contents/MacOS/V ariablesPalette
    0x22b80000 - 0x22b92fef+com.adobe.illustrator.plugins.Mojikumi MojiKumiUI version 15.0.0 (15.0.0)<58C626FE-3268-C256-2ABC-734D12C61F64> /Applications/Adobe IllustratorCS5/Plug-ins.localized/IllustratorFormats.localized/Mojikumi.aip/Con tents/MacOS/Mojikumi
    0x22b99000 - 0x22be9fee+com.adobe.illustrator.plugins.Deform Envelope and Warp version 15.0.0 (15.0.0)<C6E1BC3C-60EE-E581-D299-42493104E6E9> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Envelope andWarp.aip/Contents/MacOS/Deform
    0x22bf8000 - 0x22bfcffb+com.adobe.illustrator.plugins.Simplify Simplify version 15.0.0 (15.0.0)<E41E73CE-9707-6E8A-ED55-AAA569C3A7B9> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Simplify.aip/Contents/MacOS/S implify
    0x22d00000 - 0x22dcaff7+com.adobe.illustrator.plugins.SVG Format SVG Format version 15.0.1 (15.0.1)<04E3BAB2-1B29-3336-F416-072E38333C54> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Illustrator Formats.localized/SVG FileFormat.aip/Contents/MacOS/SVG Format
    0x22ebe000 - 0x22ee5ff0+com.adobe.illustrator.plugins.slicingAttributes Slicing version 15.0.0(15.0.0) <6219DB20-8CF6-C888-B841-D2CA302EA747> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/s licingAttributes
    0x22eed000 - 0x22f19fff+com.adobe.illustrator.plugins.PathfinderS Pathfinder Suite version 15.0.0(15.0.0) <BE233974-06C3-BFDA-BD0C-69C489BE04B6> /Applications/AdobeIllustrator CS5/AdobeIllustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/Pathf inderS
    0x22f22000 - 0x22f28ffb+com.adobe.illustrator.plugins.ExpandS Expand Suite version 15.0.0 (15.0.0)<CC1AACFA-13DB-1D99-2AF9-17370C050B1A> /Applications/Adobe IllustratorCS5/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0x22f2c000 - 0x22f41fef+com.adobe.illustrator.plugins.AssetMgmt Asset Management version 15.0.1(15.0.1) <A7E60C98-360A-E10B-1C17-73A2BFA23AB8> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Extensions.localized/Asset Mgmt.aip/Contents/MacOS/AssetMgmt
    0x22f63000 - 0x22f73fff+com.adobe.illustrator.plugins.DocInfo Document Info version 15.0.0 (15.0.0)<A89FFFC5-7CB4-4229-467F-B36013B66576> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/DocInfo.aip/Contents/Mac OS/DocInfo
    0x22f7a000 - 0x22f9ffef+com.adobe.illustrator.plugins.LinkPalette Links Palette version 15.0.1(15.0.1) <F789933F-BB0B-C948-FE5F-7B77C574881D> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Extensions.localized/LinksPanel.aip/Contents/MacOS/LinkP alette
    0x22fd5000 - 0x23013fff+com.adobe.illustrator.plugins.Snap Snap version 15.0.0 (15.0.0) <50C67BFC-673E-60E5-6A83-FDF61ACB7878>/Applications/Adobe IllustratorCS5/Plug-ins.localized/Extensions.localized/Snap.aip/Contents/MacOS/ Snap
    0x23023000 - 0x2302affb+com.adobe.illustrator.plugins.Colors Colors version 15.0.0 (15.0.0)<1915403D-6974-6317-B677-85578C8F95B1> /Applications/Adobe IllustratorCS5/Plug-ins.localized/IllustratorFilters.localized/Colors.aip/Conte nts/MacOS/Colors
    0x2302e000 - 0x23033fff+com.adobe.illustrator.plugins.Distort Free Distort version 15.0.0 (15.0.0)<F994FF57-BB1F-9DB5-484E-3F121E426D3A> /Applications/Adobe IllustratorCS5/Plug-ins.localized/IllustratorFilters.localized/Distort.aip/Cont ents/MacOS/Distort
    0x23038000 - 0x23047ff0+com.adobe.illustrator.plugins.DropShadow Drop Shadow version 15.0.0 (15.0.0)<02FA5CA0-49AC-9A14-5EC8-3A524F82F52E> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Illustrator Filters.localized/DropShadow.aip/Contents/MacOS/DropShadow
    0x2304d000 - 0x23061fef+com.adobe.illustrator.plugins.EyeBucketTool Eye Bucket Tool version 15.0.0(15.0.0) <6F536971-AA45-8F82-309E-F8BC4F6E4A98> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Tools.localized/EyeBucketT ool.aip/Contents/MacOS/EyeBucketTool
    0x23069000 - 0x23070ffb+com.adobe.illustrator.plugins.TwirlTool Twist Tool version 15.0.0 (15.0.0)<2F7311E7-B7C0-8D57-FACB-B0DAF69CBBA3> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/TwirlTool.aip/Contents/MacOS/ TwirlTool
    0x23075000 - 0x23083fff+com.adobe.illustrator.plugins.ADMTP Tool Palette version 15.0.0 (15.0.0)<FCA09360-78BF-A043-F191-3D680057F439> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Tool Panel.aip/Contents/MacOS/ADMTP
    0x23088000 - 0x23096fff+com.adobe.illustrator.plugins.ShapeTool ShapeTool version 15.0.0 (15.0.0)<09AE83AB-98F8-3FF3-2A4C-5C6A08F1629C> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/ShapeTool.aip/Contents/MacOS/ ShapeTool
    0x2309b000 - 0x230acffb+com.adobe.illustrator.plugins.Segment Tools Segment Tools version 15.0.0(15.0.0) <BAA1E4D6-6108-1014-13A9-966CB55B9D69> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Tools.localized/SegmentTools.aip/Contents/MacOS/Segment Tools
    0x230b2000 - 0x230d0ffa+com.adobe.illustrator.plugins.ScatterBrushTool Adobe Scatter Brush Toolversion 15.0.0 (15.0.0) <3C0686CB-1C0F-F4A0-369A-90E805B45C08>/Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/ScatterBrushTool.aip/Contents /MacOS/ScatterBrushTool
    0x230d7000 - 0x230effff+com.adobe.illustrator.plugins.GlobalAdjust Reshape Tool version 15.0.0(15.0.0) <3BADB03E-24CB-BD81-E23C-C1102B84FDC7> /Applications/AdobeIllustrator CS5/Plug-ins.localized/Tools.localized/Reshape Tool.aip/Contents/MacOS/GlobalAdjust
    0x230f5000 - 0x23113fef+com.adobe.illustrator.plugins.ParticlePaint Symbolism version 15.0.0 (15.0.0)<5534630E-ED3D-1122-6C57-DA7A2D830DD7> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/ParticleSystem.aip/Contents/M acOS/ParticlePaint
    0x2311c000 - 0x23125ff7+com.adobe.illustrator.plugins.Magic Wand Magic Wand version 15.0.0 (15.0.0)<2E7B598F-B5E0-873E-4E40-E84F537BD935> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Magic Wand.aip/Contents/MacOS/Magic Wand
    0x2312a000 - 0x23141ff3+com.adobe.illustrator.plugins.Liquify Liquify version 15.0.0 (15.0.0)<9F18C32A-BE54-EBFD-4AC1-7FEA633243AE> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Liquify.aip/Contents/MacOS/Li quify
    0x23146000 - 0x2314dfec+com.adobe.illustrator.plugins.Lasso Lasso version 15.0.0 (15.0.0)<B61316E3-6BD8-4372-0196-79ACD7B2ADDC> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Lasso.aip/Contents/MacOS/Lass o
    0x23153000 - 0x23157ffb+com.adobe.illustrator.plugins.KnifeTool Knife Tool version 15.0.0 (15.0.0)<48A118A6-14C1-26B1-9F6D-B7430F77505A> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/KnifeTool.aip/Contents/MacOS/ KnifeTool
    0x2315c000 - 0x2316ffe8+com.adobe.illustrator.plugins.Flare Flare version 15.0.0 (15.0.0)<512C1378-465E-83C4-5F14-4B91EDB399B7> /Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/Flare.aip/Contents/MacOS/Flar e
    0x23174000 - 0x231aafeb +com.adobe.illustrator.plugins.EraserToolEraserTool version 15.0.0 (15.0.0) <F47ACCBC-6AF5-FB7D-7D4F-F0F2C0140328>/Applications/Adobe IllustratorCS5/Plug-ins.localized/Tools.localized/EraserTool.aip/Contents/MacOS /EraserTool
    0x231b2000 - 0x23238fff+com.adobe.illustrator.plugins.dBrushTool Bristle Brush Tool version 15.0.1(15.0.1) <96C468D5-73FF-DC72-EB25-BC122F4D7686> /Applications/AdobeIllustratorCS5/Plug-ins.localized/Tools.localized/dBrushTool .aip/Contents/MacOS/dBrushTool
    0x2332c000 - 0x23358fe8 +com.adobe.illustrator.plugins.CropAreaToolCropAreaTool version 15.0.1 (15.0.1)<3C09618F-F3D6-5FEC-8D27-0415EC3E8549> /Applica

    Petr, guess we have the same problem.
    How did u switch language?
    Here is my report
    Process:         Adobe Illustrator [1556]
    Path:            /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         399 (15.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [248]
    Date/Time:       2011-07-23 19:49:29.121 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          27174 sec
    Crashes Since Last Report:           46
    Per-App Crashes Since Last Report:   26
    Anonymous UUID:                      E696D5FF-2CEF-425D-A974-F3BE22EA145A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000034
    VM Regions Near 0x34:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
        __TEXT                 0000000000001000-00000000010de000 [ 16.9M] r-x/rwx SM=COW  /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Application Specific Information:
    objc[1556]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x8fe08025 dyld::registerAddCallback(void (*)(mach_header const*, long)) + 61
    1   libdyld.dylib                           0x96da1078 _dyld_register_func_for_add_image + 74
    2   libignitor.dylib                        0x013fee76 initializer + 27
    3   dyld                                    0x8fe1615b ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 251
    4   dyld                                    0x8fe15cc0 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 64
    5   dyld                                    0x8fe13220 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 256
    6   dyld                                    0x8fe141c0 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 62
    7   dyld                                    0x8fe08626 dyld::initializeMainExecutable() + 166
    8   dyld                                    0x8fe0cef2 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**) + 2238
    9   dyld                                    0x8fe062ef dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*) + 637
    10  dyld                                    0x8fe06063 _dyld_start + 51
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x8fe07ff6  ebx: 0x072b1000  ecx: 0x013fee7c  edx: 0x00000000
      edi: 0x8fe3bd50  esi: 0x00000000  ebp: 0xbfffea08  esp: 0xbfffe9e0
       ss: 0x00000023  efl: 0x00010292  eip: 0x8fe08025   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000034
    Logical CPU: 1
    Binary Images:
        0x1000 -  0x10ddfe7 +com.adobe.illustrator (399 - 15.0.2) <E981EB14-E985-235C-5B50-36ECD01A3851> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 -  0x13feffc  libignitor.dylib (??? - ???) <D44794BF-7C8D-3E25-917F-94F8696BD79E> /usr/lib/libignitor.dylib
    0x1401000 -  0x14cefe7 +AdobeAXEDOMCore (??? - ???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x153d000 -  0x154dfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <52191201-4C2A-FC9B-06E4-0327B5203D7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x1552000 -  0x156dff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x1587000 -  0x15cbfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <AF5B961D-03B5-1F8F-0DE0-E7DE0863E578> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x162e000 -  0x162efff +SPBasic (??? - ???) <574E14ED-6879-7536-E9A1-77F66D81FCBB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x1632000 -  0x1638ffb +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x1640000 -  0x1755fff +AdobeACE (??? - ???) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1778000 -  0x1c9efff +AdobeAGM (??? - ???) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1ddf000 -  0x1e1bfff +AdobeARE (??? - ???) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e24000 -  0x1e4aff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1e5b000 -  0x1e76fff +AdobeBIB (??? - ???) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e80000 -  0x1ea1ff7 +AdobeBIBUtils (??? - ???) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1ead000 -  0x219fff7 +AdobeCoolType (??? - ???) <90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x2227000 -  0x22bffff +com.adobe.AdobeExtendScript (ExtendScript 4.1.23 - 4.1.23.7573) <F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x231e000 -  0x2401fef +AdobePDFPort (??? - ???) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2436000 -  0x2a6bfeb +AdobePDFL (??? - ???) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2b97000 -  0x2c24ff7 +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.7573) <6A15402A-09B2-B1F8-5ECC-D7871EC054C3> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x2c69000 -  0x2d09fef +AdobeSVGExport (??? - ???) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2d33000 -  0x2fd1ff2 +AdobeSVGRE (??? - ???) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30aa000 -  0x3102ff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x3111000 -  0x319dfef +AdobeXMPFiles (??? - ???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x31d4000 -  0x32a1ff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3304000 -  0x33defef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x341e000 -  0x3dcefff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3dd1000 -  0x41a9ff7 +AdobeMPS (??? - ???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x42d8000 -  0x433effb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x436e000 -  0x43ffff7 +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x441e000 -  0x4604ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x4692000 -  0x46f9fea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4738000 -  0x47b5fff +AdobeOwlCanvas (??? - ???) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x47d1000 -  0x4909fe7 +WRServices (??? - ???) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x494b000 -  0x494fffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x4956000 -  0x49a9ffb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x49f1000 -  0x4a03fff +com.adobe.pip (??? - 5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a0c000 -  0x575efeb +com.adobe.psl (AdobePSL 12.0.0.11086 - 12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5aa0000 -  0x5c1dfef +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <565B8F4B-EFEA-D847-91FE-17B8ED169DF2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5d98000 -  0x6088fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <7E7F77B3-0CB3-8885-915E-EDACEE27500E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x63b0000 -  0x66f6ff3 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E97C356-CEE3-9CA3-3C90-8196F560164E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c05000 -  0x6c17fef +com.adobe.dvaai.framework (dvaai version 5.0.0 - 5.0.0.0) <2D9772CA-D866-6A7F-CF74-FD7F485350B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c28000 -  0x6c2efef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <FB5A16A5-D6E7-71B7-78A8-A174A64EF477> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6c3f000 -  0x6c4aff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <604EA207-EEF2-AC6E-A8B1-26737E5AB0A7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6c5e000 -  0x6cdcfe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <F95BC864-6CFC-EAF4-A6DF-27608A5DD30E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6d40000 -  0x6d4afff +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <08C988D8-10F3-66EF-AE15-B086AD240942> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6d5d000 -  0x6d5fffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <7ACBC8B3-0BEA-7B7B-04FF-95C6A93E3E7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_sys tem
    0x6d66000 -  0x6d6dff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <4942ACFF-5944-0F7F-8481-49CAF902D15F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_th reads
    0x6d7d000 -  0x6ddbfe2 +com.adobe.boost_serialization.framework (boost_serialization version 5.0.0 - 5.0.0.0) <FBAA7D86-4F90-3337-4657-022BA313C894> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/bo ost_serialization
    0x6eb2000 -  0x7051fe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x70ba000 -  0x7127fef +FileInfo (??? - ???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x7142000 -  0x71efff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x7234000 -  0x7271fff  com.apple.vmutils (4.2 - 106) <E16C6BE7-C3B2-3836-85CF-989364FBE163> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x728b000 -  0x728eff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x72b1000 -  0x72b2ffd  libenter.dylib (??? - ???) <4082C283-0428-3CF2-8F62-8C6D904C93E6> /usr/lib/libenter.dylib
    0x40000000 - 0x400d1fe7 +AdobeJP2K (??? - ???) <EF392886-5A95-6A96-C95D-43DA0322925C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe05000 - 0x8fe379c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x900a0000 - 0x900a3ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x900a4000 - 0x90119fff  com.apple.Metadata (10.7.0 - 627.9) <1EF7D615-3DF4-3F5D-88CE-6BDFA120FE32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9011a000 - 0x901dafff  com.apple.CoreServices.OSServices (478.25 - 478.25) <13EB75E5-98E5-3C3D-A2D7-CD6CB292C227> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x901db000 - 0x901ebff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x902ce000 - 0x902f7ffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90522000 - 0x90526fff  libGIF.dylib (??? - ???) <F6094267-AB0E-38FC-8201-510AA4BDC974> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90527000 - 0x90534fff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90535000 - 0x90539ff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
    0x905ee000 - 0x905eeff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90641000 - 0x90649fff  com.apple.DiskArbitration (2.4 - 2.4) <E574D5E7-7297-33B5-8B91-1E6346D5F917> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9064a000 - 0x9079cffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9081c000 - 0x9081cfff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9081d000 - 0x9086eff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9086f000 - 0x90913fff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90914000 - 0x90942fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x90945000 - 0x909d2fe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90a5b000 - 0x90e5dff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90e5e000 - 0x90e73ff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90eb8000 - 0x90eb8fff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90fe6000 - 0x9107dff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9107e000 - 0x9107fff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x91086000 - 0x910edfff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x914a7000 - 0x914eefff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91500000 - 0x91565ff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91591000 - 0x915f1ffb  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <6026C895-3DC6-3785-A7BB-2F2B9E292D95> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915f2000 - 0x917c8fef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9186c000 - 0x918aafff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x918ab000 - 0x918c5fff  com.apple.Kerberos (1.0 - 1) <25E5A286-876D-3A8E-A12F-52D184559E8C> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x918c6000 - 0x918d1ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x919ea000 - 0x91ab9ffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91aba000 - 0x91abeffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x91abf000 - 0x91abfff2  com.apple.CoreServices (53 - 53) <C513E133-B0E0-3C35-A7CB-DBC35A7EF571> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91acc000 - 0x91c2dffb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91c2e000 - 0x91d16fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x91d17000 - 0x91d1dffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91d1e000 - 0x92173fff  FaceCoreLight (1.4.2 - compatibility 1.0.0) <53AC5DCE-D04B-3DC3-808D-AA1CAD4D0924> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x92195000 - 0x92199ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x923b3000 - 0x923b3fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x926ce000 - 0x92867ff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92871000 - 0x9287cfff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x92882000 - 0x92993ff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x92a11000 - 0x92a34fff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92a35000 - 0x92abcfff  com.apple.print.framework.PrintCore (7.0 - 366) <D037D344-7463-3620-AE8F-8D0D3EA5CE8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92abd000 - 0x92ad3ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x92ad4000 - 0x92ae9fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92df0000 - 0x92e40fff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x934d5000 - 0x93570ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x935c3000 - 0x935ebff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x935ec000 - 0x9364eff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x93b35000 - 0x93b8eff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94322000 - 0x94390fff  com.apple.Heimdal (2.1 - 2.0) <5BA5BFA4-0B05-3B00-AF06-C3D0D60F36BC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x944c0000 - 0x944ebfff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94547000 - 0x94670ff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x946de000 - 0x949e1ff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94a3a000 - 0x94b45ffb  com.apple.DesktopServices (1.6.0 - 1.6.0) <66E2BD3A-958A-3F46-8DA0-C0F2358013B0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94b46000 - 0x94c36ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x94c55000 - 0x94c63fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x94c6e000 - 0x94edfffb  com.apple.CoreImage (7.77 - 1.0.1) <DF1D9EB7-5879-3EA2-8CF5-80004DAC18BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x94f48000 - 0x94faaffb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94fbc000 - 0x94fdaff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x94fe7000 - 0x95071ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <C8567435-9CD1-35EE-AE05-304D28858C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95b55000 - 0x95b56ff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x95b68000 - 0x95e68fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e69000 - 0x95e6effd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95eac000 - 0x95eb3fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x95eb4000 - 0x95eb5fff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95eb6000 - 0x96167ff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96168000 - 0x9617bff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9617c000 - 0x961b8fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x961b9000 - 0x961d5ff5  com.apple.GenerationalStorage (1.0 - 124) <0BC29510-6C26-3445-88B7-21502CAFF372> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x961ee000 - 0x961f5fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x961f6000 - 0x96204fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x96205000 - 0x9648afe3  com.apple.QuickTime (7.7.1 - 2246) <56DF434A-D929-350C-86D5-684089D0EDFB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x964a5000 - 0x964fdfff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x964fe000 - 0x96520ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x96562000 - 0x9662dfff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x9662e000 - 0x9665cffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9665d000 - 0x9665eff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x96765000 - 0x9676fff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96782000 - 0x967a4ffe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9680e000 - 0x9692efec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9692f000 - 0x9692ffff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x96930000 - 0x96938ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9696a000 - 0x96972ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x969c0000 - 0x969f6fff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x969f7000 - 0x96a08fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x96a09000 - 0x96a0dfff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96a0e000 - 0x96a14ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x96aa6000 - 0x96aa8ffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96cfd000 - 0x96cfdfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96d33000 - 0x96d9dff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x96d9e000 - 0x96d9ffff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x96da0000 - 0x96da2ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x96da3000 - 0x96db3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96dde000 - 0x96de3ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x97035000 - 0x9703efff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x97050000 - 0x9752cff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9752d000 - 0x975b9ff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x975ba000 - 0x97c1f65b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97c22000 - 0x97c29ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x97e22000 - 0x97e24ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97e36000 - 0x97e36fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <75E38B34-1DE2-337A-A09F-0F7E91C02ABB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97eee000 - 0x97f3eff9  com.apple.QuickLookFramework (3.0 - 489.1) <46E053F5-E7CC-3358-93AF-635837E4ECCA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97f3f000 - 0x97f75ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97f76000 - 0x97f8ffff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f90000 - 0x97ff4fff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97ff5000 - 0x97ff5ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x97ff6000 - 0x98013ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98064000 - 0x980a4ff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x980e3000 - 0x9813fff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98140000 - 0x98216a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x98217000 - 0x98326ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x98368000 - 0x983abffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x9881e000 - 0x988b2ff7  com.apple.LaunchServices (480.19 - 480.19) <A68C0688-4ED1-35F1-BF44-F5B1917084A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x988b3000 - 0x9892effb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9896e000 - 0x9896ffff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x98cda000 - 0x98ce3ff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x98ce4000 - 0x98ce4fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98d45000 - 0x98d8eff7  libGLU.dylib (??? - ???) <3524C956-C8B2-3E8B-805D-9E25E5481A58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98d8f000 - 0x98d9affc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x98ded000 - 0x98e0cfff  com.apple.RemoteViewServices (1.0 - 1) <D9810485-6A62-3758-96F5-48950AF250F1> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x98eef000 - 0x99974ffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99975000 - 0x999d2ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x999d3000 - 0x99a0fffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x99a10000 - 0x99d4fff3  com.apple.HIToolbox (1.7 - ???) <A9583F07-218D-35CD-B29C-C65E6D008836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99d69000 - 0x99d86fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x99d87000 - 0x99e7fff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99eef000 - 0x99ef0ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x9b25a000 - 0x9b25dffd  libCoreVMClient.dylib (??? - ???) <1438A7D5-A622-3623-A49F-45F881B1D947> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9b869000 - 0x9b877fff  com.apple.opengl (1.7.4 - 1.7.4) <C6DE3D3A-CC1F-3F55-B8DD-2637FA40058F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9b878000 - 0x9b89dff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9b8a2000 - 0x9b8a5ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x9b8ba000 - 0x9b99dff7  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <6E631200-1E22-37B9-85D1-EC40520891AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9b99e000 - 0x9b9eeff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9b9ef000 - 0x9baafff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9bab0000 - 0x9bab7ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9bde4000 - 0x9bde8ff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9bde9000 - 0x9bdfdff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9bdfe000 - 0x9be2eff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x9be2f000 - 0x9be32ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9bf17000 - 0x9bf18fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9bf19000 - 0x9bf1cffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9bf1d000 - 0x9bf25ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9bf26000 - 0x9bf27ffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9bf28000 - 0x9c0dcff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6270318A-CA9A-376C-AD6D-64A9B4B4A26E> /usr/lib/libicucore.A.dylib
    0xb0000000 - 0xb000fff8 +com.adobe.ahclientframework (1.5.0.30 - 1.5.0.30) <24B39C2F-79B0-BDE3-C6D0-1F0E943070C7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 4085
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=231.0M resident=113.2M(49%) swapped_out_or_unallocated=117.8M(51%)
    Writable regions: Total=19.7M written=636K(3%) resident=1128K(6%) swapped_out=0K(0%) unallocated=18.6M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             9316K
    MALLOC guard page                    16K
    Stack                              64.0M
    VM_ALLOCATE                           4K
    __CI_BITMAP                          80K
    __DATA                             19.2M
    __DATA/__OBJC                        72K
    __IMAGE                            1256K
    __IMPORT                            284K
    __LINKEDIT                         57.8M
    __OBJC                             1476K
    __OBJC/__DATA                        52K
    __PAGEZERO                            4K
    __TEXT                            173.2M
    __UNICODE                           544K
    mapped file                       114.4M
    shared memory                        12K
    shared pmap                        8792K
    ===========                      =======
    TOTAL                             450.0M
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 8 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393930353432382D3032302E4130304C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393930353432382D3032302E4130304C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.6)
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 250,06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0x26400000 / 3
    USB Device: USB-PS/2 Optical Mouse, 0x046d  (Logitech Inc.), 0xc03e, 0x26430000 / 6
    USB Device: Samsung ML-1520 Series, 0x04e8  (Samsung Electronics Co., Ltd.), 0x3256, 0x26410000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0221, 0x26420000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26100000 / 2
    USB Device: Basics Desktop, 0x0d49  (Maxtor), 0x7410, 0x24100000 / 3
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24600000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06610000 / 7
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x06500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0x06300000 / 2

Maybe you are looking for

  • Mac Mini Fusion Drive or self built SSD / Fusion drive

    Hi, I am contemplating to buy a Mac Mini i7 2.6GHz but don't really know what I want to do with the Harddrive. One option would of course be to add a Fusion Drive for 200 bucks. However, apple doesn't say anything about the brand or model that they u

  • HTML submit button in a folio won't generate an email.

    I have an HTML page with a form and submit button that creates an email with the results of the form. In Safari on the iPad the form and submit button work, but when the HTML link is viewed in a folio page the submit button will not work, even though

  • File Sharing via Ethernet Cable

    I currently have an Imac core duo connected to a router via airport, and a imac G3 just sitting idly in the corner. However i have some important files i need to transfer to the Core duo from the G3, and all i have is an Ethernet cable. Is this possi

  • Font size in abap reports

    hi all, is it possible to increase font size in abap reports. i am trying to print a Zreport which is having line size of 325 . so i decided to print on A3 landscape . it seems to be printing very small size ,cannot be readable! . in this case i have

  • Re: Is is possible to form an adhoc connection between two devices?

    Hi, Yes it is possible to discover devices and establish communication between devices through bluetooth. There are some J2ME devices that supports Bluetooth(JSR 82). Check the latest devices that supports JSR 82. http://www.benhui.net/modules.php?na