Export file with member alias

Hi,
I am exporting the data via DataExport command. I need the export file to contain the alias
of the members from all dimensions along with the exported data.
Currently the file contains the members names.
Is it possible what I need?
Thanks,
CM

CM,
I don't think you can export aliases using a Dataexport command. You can consider following as an alternative:
1. Export the Alias table using the following:
query database 'Sample'.'Basic' list alias_names in alias_table 'default';
2. Write a report script that outputs all the members (either all or level zero). With a report script you can use OUTALTNAMES to output alias names and OUTALTSELECT to specify which alias table you want to use.
Hope it helps...
KosuruS

Similar Messages

  • How to export file with original filename number suffix, but with more digits

    Is there a way to keep the original filename number suffix, but change the formatting of the number, adding leading zeros for instance?
    When I import photos from my camera I like to rename them, and give them sequential numbers, e.g. "2015-01 Hamburg 1.cr2", "2015-01 Hamburg 2.cr2", "2015-01 Hamburg 10.cr2", .. "2015-01 Hamburg 134.cr2", and so on.
    Normally when I export photos I like to keep the file names exacly as I imported them (except the extension) e.g. 2015-01 Hamburg 1.jpg, "2015-01 Hamburg 2.jpg", .. "2015-01 Hamburg 10.jpg", .. "2015-01 Hamburg 134.jpg".
    But sometimes I would like to export them with leading zeros, typically when adding photos to a web site or blog where there are sort mechanisms that only support simple sort algorithms based on file names, meaning the sort order of my photos with their original file names would become "2015-01 Hamburg 1.jpg, "2015-01 Hamburg 10.jpg", .. "2015-01 Hamburg 134.jpg", "2015-01 Hamburg 2.jpg".
    So I would like the file names to be "2015-01 Hamburg 001.jpg", "2015-01 Hamburg 002.jpg", "2015-01 Hamburg 010.jpg", "2015-01 Hamburg 134.jpg".
    By keeping the original file number suffix I can easily go back to the original file whenever I need to, and the sort order would work even with simple sorting.
    The export Filename Template Editor gives quite advanced support for numbering files when exporting, see attached screenshot. There's support for exporting files with custom file names, and adding sequence, total and image number with padding (up to 9999/####). But those add new numbers, they do not consider the original filename number suffix. If I use the "Image # (001)" for instance, my example above would export as "2015-01 Hamburg 001.jpg", "2015-01 Hamburg 002.jpg", "2015-01 Hamburg 003.jpg", "2015-01 Hamburg 004.jpg", if those were the four photos I wanted to export, making it hard for me to trace them back to the original photo.
    I have found no way of adding such padding on the original file number.
    Does anyone know if this is possible or have suggestions for a workaround?
    It shouldn't be too hard for Adobe to support this I'd imagine.
    export pattern rename files  file_number filename_template_editor

    I do not know if you can do what you explained above, but there is a workaround to this (and a way to avoid having to do it in the future):
    In the Library module, make sure your images are sorted by Capture Date (this will put them in the right order, even with suffixes like 1, 13, etc.)
    Select all images, and then Rename them, using a Custom text followed by a Sequence number. The Custom text in this case should be the original name (such as, 2015-01 Hamburg, as in your example). Make sure the Sequence number is formatted with enough zeroes to include all the numbers in your images.
    In the future, when you rename images during Import, make sure you select the Sequence number format that will include all the needed zeroes, so you don't have to go through this again.

  • Need to export file with different layers selected automatically

    I have a file with a background and various text layers.
    I want to select each text layer individually and export them to a file, but I don't want to do this manually because it would take a lot of work.
    My question is, how would i tell photoshop to export X numbers of files. Where X=number of text boxes.

    I still don’t quite follow: Should the resulting files combine one of the text-layers with the lowermost layer or display only one of the layers?
    Because I thought Export Layers to Files would do the second.
    Anyway, the following might help, You would have to enter Your intended gif-settings in the Script manually though (see »Photoshop CS4 JavaScript Ref.pdf« or ExtendSctipt Toolkit’s Help > Object Model Viewer for the correct nomenclature for the various options).
    And You should adjust the naming-procedure to Your liking, I didn’t use the actual layer-names to avoid possibly overly long names.
    Paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop theScript should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action or (in CS4) be used in a Configurator-Panel.
    // saves gif-copies of the backgoud-layer with one of the other layers visible in the same location as the original file;
    // existing files of the same names will be replaced without callback;
    // use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    // get the name;
    var docName = myDocument.name;
    var basename = docName.match(/(.*)\.[^\.]+$/)[1];
    //get the location;
    var docPath = myDocument.path;
    // get all non-layerset-layers;
    var theLayers = collectLayers (myDocument);
    // gif options;
    var gifOpts = new GIFSaveOptions();
    gifOpts.colors = 256;
    gifOpts.dither = Dither.DIFFUSION;
    gifOpts.ditherAmount = 75;
    gifOpts.forced = ForcedColors.NONE;
    gifOpts.interlaced = false;
    gifOpts.matte = MatteType.WHITE;
    gifOpts.palette = Palette.LOCALSELECTIVE;
    gifOpts.preserveExactColors = true;
    gifOpts.transparency = true
    // hide all but the background layer;
    for (var m = theLayers.length - 1; m > 0; m--) {
    theLayers[m].visible = false
    // save the copies with one additional layer visible each;
    for (var n = theLayers.length - 1; n > 0; n--) {
    theLayers[n].visible = true;
    var layerName = theLayers[n].name;
    // duplicate image before saving to avoid flattening-dialog;
    var thecopy = myDocument.duplicate (thecopy, true);
    thecopy.saveAs((new File(docPath+"/"+basename+"_"+n+".gif")),gifOpts,true);
    thecopy.close(SaveOptions.DONOTSAVECHANGES);
    theLayers[n].visible = false
    ////// function collect all artlayers //////
    function collectLayers (theParent) {
    if (!allLayers) {
    var allLayers = new Array}
    else {};
    for (var m = theParent.layers.length - 1; m >= 0;m--) {
    var theLayer = theParent.layers[m];
    // apply the funtion to layersets;
    if (theLayer.typename == "ArtLayer") {
    allLayers = allLayers.concat(theLayer)
    else {
    allLayers = allLayers.concat(collectLayers(theLayer))
    return allLayers

  • Exporting files with keywords

    When exporting files using the export command, only some keyworks will show up in the File info panel (even if I select all). But if I open the same image from Lightroom with the "Edit photo with Photoshop CS-6" all the keywords show up in the file info panel. Any idea as to what I'm doing wrong
    Francis

    I've done some more testing. Opened my RAW files catalog, checked many images to see if  the "will export" versus the "Keywords and Containing Keywords" would show exactly the same keywords. They did. Then. Then, I exported one .dng  file as a .tif file, opened it in Photoshop, the File Info shows exactly the same keywords. So based on my workflow which consists in adding the keywords to the .dng file in Bridge, then processing the file with ACR and saving it as .tif somewhow prevents Lightroom from exporting all the keywords even if they show in the "Keywords and Containing Keywords" pane.

  • Export file with the project separated into the different tracks

    I have created a project consisting of about 18 imported tracks (bought from Itunes). Is it possible to have the imported components separated in the export file from GarageBand so it would be possible to jump between them?

    Hi
    I wil suggest mapping the path based on a common location is the best way and then map the same logically in the Upload method
    If you are using Citrix then it becomes all the more easy to have a commmon location
    Rgds
    Dheeraj

  • Export data with list alias from alternate alias table

    Hello,
    I am working on a data export out of my BSO app using @JExport.
    The problem is I need the default alias, alternate alias, data listed for all entities.
    I can achieve the default alias by listing @ALIAS(@CURRMBR("Entity"))
    How can I list the alternate alias?
    Any ideas?
    Thanks,
    Nima

    Thats what I thought...just wanted to recofirm...guess I will have to go with the MAXL option and run the calc-script 2 times- first time with the default table and second time with the alternate alias table- will have 2 separate files but can merge them later on...
    Thanks for your reply.
    Nima

  • Preview keeps crashing when I try to export file with a filter

    Hello,
    I've been searching and searching for an answer to no avail. When I try to export a pdf file in preview with a gray tone filter (or any filter for that matter) Preview crashes. I am trying to convert and save a color pdf file into a black and white pdf file. I don't want to print it - just save as a black and white version of the original. Below is the crash report.
    I've tried deleting .plist files, cache files and container files. I've repaired my disk permissions. Nothing's working... Any thoughts? THANKS!
    Process:         Preview [3301]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         5.5.3 (719.31)
    Build Info:      Preview-719031000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [129]
    Date/Time:       2013-09-24 15:52:44.019 -0400
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          508428 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  2922063 sec
    Per-App Crashes Since Last Report:   11
    Anonymous UUID:                      905CE8DF-4DFE-478D-B97D-B20A059FD197
    Crashed Thread:  7
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[3301]: garbage collection is OFF
    *** error for object 0x7fef7c0be810: pointer being freed was not allocated
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff924cf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff924ced71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8d87f50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8d887c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8d887486 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox                     0x00007fff8f9a42bf RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox                     0x00007fff8f9ab56d ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox                     0x00007fff8f9ab3fa BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff8a992779 _DPSNextEvent + 659
    9   com.apple.AppKit                        0x00007fff8a99207d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit                        0x00007fff8a98e9b9 -[NSApplication run] + 470
    11  com.apple.AppKit                        0x00007fff8ac0aeac NSApplicationMain + 867
    12  com.apple.Preview                       0x0000000106ddde14 0x106ddc000 + 7700
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff924d17e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db48786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8db47316 _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff924d0ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff869df7d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff869d0a7a abort + 143
    3   libsystem_c.dylib                       0x00007fff86a2f84c free + 389
    4   libobjc.A.dylib                         0x00007fff8db86d53 object_dispose + 57
    5   com.apple.CoreFoundation                0x00007fff8d880086 -[NSObject dealloc] + 102
    6   com.apple.CoreFoundation                0x00007fff8d89c80e -[__NSArrayI dealloc] + 398
    7   com.apple.CoreFoundation                0x00007fff8d857ab0 CFRelease + 176
    8   com.apple.CoreGraphics                  0x00007fff91470192 color_finalize + 21
    9   com.apple.CoreFoundation                0x00007fff8d857bf6 CFRelease + 502
    10  com.apple.CoreGraphics                  0x00007fff9145e9f2 CGGStateRelease + 83
    11  libCFilter.A.dylib                      0x000000010bb9049e ctxftr_DrawPath + 120
    12  com.apple.CoreGraphics                  0x00007fff9146127c CGContextDrawPath + 196
    13  com.apple.CoreGraphics                  0x00007fff9146bd34 CGPDFDrawingContextDrawPath + 141
    14  com.apple.CoreGraphics                  0x00007fff9146b668 pdf_scanner_handle_xname + 111
    15  com.apple.CoreGraphics                  0x00007fff9146a92e CGPDFScannerScan + 246
    16  com.apple.CoreGraphics                  0x00007fff914680f7 CGPDFDrawingContextDrawPage + 489
    17  com.apple.CoreGraphics                  0x00007fff91467dc3 pdf_page_draw_in_context + 97
    18  com.apple.PDFKit                        0x00007fff92565b78 -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 1158
    19  com.apple.PDFKit                        0x00007fff9256036b -[PDFDocument(PDFDocumentInternal) writeToConsumer:withOptions:] + 991
    20  com.apple.PDFKit                        0x00007fff9255b75e -[PDFDocument writeToURL:withOptions:] + 240
    21  com.apple.Preview                       0x0000000106ec386e 0x106ddc000 + 948334
    22  com.apple.Preview                       0x0000000106ec350a 0x106ddc000 + 947466
    23  com.apple.Preview                       0x0000000106ec3490 0x106ddc000 + 947344
    24  com.apple.AppKit                        0x00007fff8ad46d6f -[NSDocument writeToURL:ofType:forSaveOperation:originalContentsURL:error:] + 455
    25  com.apple.AppKit                        0x00007fff8ad47170 -[NSDocument _writeSafelyToURL:ofType:forSaveOperation:forceTemporaryDirectory:error:] + 583
    26  com.apple.AppKit                        0x00007fff8ad308fc -[NSDocument _writeSafelyToURL:ofType:forSaveOperation:error:] + 27
    27  com.apple.AppKit                        0x00007fff8ad46f17 -[NSDocument writeSafelyToURL:ofType:forSaveOperation:error:] + 344
    28  com.apple.Preview                       0x0000000106e83a02 0x106ddc000 + 686594
    29  com.apple.AppKit                        0x00007fff8ad5074f __-[NSDocument saveToURL:ofType:forSaveOperation:completionHandler:]_block_invoke_8 + 329
    30  com.apple.AppKit                        0x00007fff8ad4fb2a __-[NSDocument saveToURL:ofType:forSaveOperation:completionHandler:]_block_invoke_15 + 326
    31  libdispatch.dylib                       0x00007fff8db46a82 _dispatch_call_block_and_release + 18
    32  libdispatch.dylib                       0x00007fff8db47961 _dispatch_worker_thread2 + 255
    33  libsystem_c.dylib                       0x00007fff869df3da _pthread_wqthread + 316
    34  libsystem_c.dylib                       0x00007fff869e0b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff924d1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff869df594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff869e0b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff924d1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff869df594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff869e0b85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff924d1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff869df594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff869e0b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff924d1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff869df594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff869e0b85 start_wqthread + 13
    Thread 7 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff924d1e62 sigprocmask + 10
    1   libsystem_c.dylib                       0x00007fff869d0a4d abort + 98
    2   libsystem_c.dylib                       0x00007fff86a2f84c free + 389
    3   libobjc.A.dylib                         0x00007fff8db86d53 object_dispose + 57
    4   com.apple.imageKit                      0x00007fff8f348d12 -[_IKIRLMainProxy dealloc] + 109
    5   libobjc.A.dylib                         0x00007fff8db8703c (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 434
    6   com.apple.CoreFoundation                0x00007fff8d880915 _CFAutoreleasePoolPop + 37
    7   com.apple.Foundation                    0x00007fff8e6fa6cf -[NSAutoreleasePool drain] + 154
    8   com.apple.imageKit                      0x00007fff8f402a1a -[IKTaskManager taskLoop] + 337
    9   com.apple.Foundation                    0x00007fff8e75072a -[NSThread main] + 68
    10  com.apple.Foundation                    0x00007fff8e7506a2 __NSThread__main__ + 1575
    11  libsystem_c.dylib                       0x00007fff869dd8bf _pthread_start + 335
    12  libsystem_c.dylib                       0x00007fff869e0b75 thread_start + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010f45e6e0  rcx: 0x000000010f45e6c8  rdx: 0x0000000000000000
      rdi: 0x0000000000000003  rsi: 0x000000010f45e6d4  rbp: 0x000000010f45e6f0  rsp: 0x000000010f45e6c8
       r8: 0x0000000000000000   r9: 0x00007fff86a42230  r10: 0x0000000000000488  r11: 0xffffff80002dad60
      r12: 0x00000001070bb000  r13: 0x0000000000000009  r14: 0x000000010bbb1000  r15: 0x0000000000000009
      rip: 0x00007fff924d1e62  rfl: 0x0000000000000246  cr2: 0x000000010bbb2000
    Logical CPU: 0
    Binary Images:
           0x106ddc000 -        0x106fc1fe7  com.apple.Preview (5.5.3 - 719.31) <E14FBEB4-4483-3369-B874-C105C32EFC8A> /Applications/Preview.app/Contents/MacOS/Preview
           0x10704f000 -        0x10706eff7  com.apple.MediaUI (1.0 - 1) <13D30942-8B4A-3B96-B8F0-3AD1AC9A5E9B> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
           0x109081000 -        0x10908ffff  libGPUSupport.dylib (??? - ???) <9FF8DDA2-7CB1-3888-8AAE-227C7691CB98> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x109096000 -        0x1090a0fef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x109823000 -        0x10984cfff  libPDFRIP.A.dylib (600.0.0 - compatibility 64.0.0) <826A969F-0079-3B2D-9EE6-DB23FA9DDD05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
           0x10999a000 -        0x109b52fff  GLEngine (??? - ???) <59179FEC-D0E2-38B3-BD49-765506A645AC> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x109b89000 -        0x109ce3fff  libGLProgrammability.dylib (??? - ???) <90390984-70BC-365C-AB3E-16C35C4240CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x109d15000 -        0x109fd6fe7  com.apple.ATIRadeonX3000GLDriver (7.32.12 - 7.3.2) <FF44B1BD-D515-348E-A405-F0F834C83D00> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x10a025000 -        0x10a053ff7  GLRendererFloat (??? - ???) <06CA5D0B-BC5F-3CC7-836D-A02F7DB92BE8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10a05c000 -        0x10a05fff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10a074000 -        0x10a075ff2 +cl_kernels (??? - ???) <876AA142-57DC-4B88-A340-DA3F25F374D9> cl_kernels
           0x10a9d5000 -        0x10a9e7fff +com.brother.print.pde.CocoaBRCLQuality (4.0.1 - 19) <6AE2B8AD-4975-4B43-BB60-0964CB490006> /Library/Printers/Brother/PDEs/BRCLQuality.bundle/Contents/MacOS/BRCLQuality
           0x10aa0f000 -        0x10aa15ff7 +com.brother.print.pde.CocoaBRSecurePrint (4.1.0 - 6) <968E8E21-37F2-AE4B-F862-D572ED936D67> /Library/Printers/Brother/PDEs/BRSecurePrint.bundle/Contents/MacOS/BRSecurePrin t
           0x10aa90000 -        0x10aa90ff1 +cl_kernels (??? - ???) <3963291F-10FD-457D-BDEA-35D355A24FF6> cl_kernels
           0x10aa96000 -        0x10aa97ff3 +cl_kernels (??? - ???) <5AC07DE8-0755-41B4-8F94-1BE3BD914292> cl_kernels
           0x10aad9000 -        0x10aadaff3 +cl_kernels (??? - ???) <4A1CD840-DFE6-4D2B-A5E5-FC56437B350A> cl_kernels
           0x10b16c000 -        0x10b320ff7  libCMaps.A.dylib (600.0.0 - compatibility 64.0.0) <31ADECC6-ADF3-36C5-A0CB-A8133151B8DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
           0x10b357000 -        0x10b357ff3 +cl_kernels (??? - ???) <C25545B4-D109-47AE-8792-1C59E6F90CB8> cl_kernels
           0x10b359000 -        0x10b360fff +com.brother.print.pde.CocoaSendFax (3.2.5 - 32) <ADF956BC-6743-DE02-905C-13DEEE44D70F> /Library/Printers/Brother/PDEs/BRSendFax.bundle/Contents/MacOS/BRSendFax
           0x10bb8b000 -        0x10bb97fff  libCFilter.A.dylib (600.0.0 - compatibility 64.0.0) <5E36C67F-67C4-3F52-A1AF-C814C380FA09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCFilter.A.dylib
           0x10bc91000 -        0x10bd30ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <47DA7D73-C52D-322F-A08F-4DB320A65373> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10e552000 -        0x10e586fff  com.apple.printingprivate.framework.PrintingPrivate (7.4 - 68.4) <5C9D0EC3-70C8-34E8-8F11-1CB9FA6991DC> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x10e5aa000 -        0x10e5e1fff  com.apple.print.framework.Print.Private (7.5 - 378.14) <5A64626E-029E-3DD4-95EB-4B1D756135AC> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x10e5fe000 -        0x10e641fff  com.apple.print.PrintingCocoaPDEs (7.5 - 378.14) <359CC597-D3B6-3141-A779-E3EB23DAB36C> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
        0x7fff669dc000 -     0x7fff66a10baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff86625000 -     0x7fff86641fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff86642000 -     0x7fff8665eff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8665f000 -     0x7fff86660fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff86661000 -     0x7fff86690fff  com.apple.shortcut (2.1 - 2.1) <BE0AB36A-6911-356B-8784-D39175ACAF55> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff86691000 -     0x7fff866d0fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff866d3000 -     0x7fff8698bfff  com.apple.RawCamera.bundle (4.00 - 658) <789BC5C7-F03A-388C-B540-070FF5574B0C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8698c000 -     0x7fff8698efff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8698f000 -     0x7fff86a6cfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff86a6d000 -     0x7fff86a73ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff86af4000 -     0x7fff870d8fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87381000 -     0x7fff873bcfff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff873bd000 -     0x7fff874c4fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff874c5000 -     0x7fff874cafff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff874cb000 -     0x7fff87570fff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87571000 -     0x7fff875a1ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff875a2000 -     0x7fff875a4ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff876a8000 -     0x7fff876bdfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff876be000 -     0x7fff876e5fff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff876ec000 -     0x7fff8775cfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8775d000 -     0x7fff877c5ff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8792b000 -     0x7fff87988ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff879a5000 -     0x7fff879aeff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff879af000 -     0x7fff87a41ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87a8b000 -     0x7fff87acdfff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff87ace000 -     0x7fff87ae0ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff87ae1000 -     0x7fff87aeffff  com.apple.HelpData (2.1.2 - 72.2) <363E36C5-F7C0-34A6-83D3-97C8FB6511F0> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff87af2000 -     0x7fff87b34ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87b35000 -     0x7fff87babfff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff888e4000 -     0x7fff888e9fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff888ea000 -     0x7fff88909fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8890a000 -     0x7fff8890afff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8890b000 -     0x7fff8890cfff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff8890d000 -     0x7fff8890dfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88b24000 -     0x7fff88b64fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8903f000 -     0x7fff89506fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff89515000 -     0x7fff8953dfff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8953e000 -     0x7fff89542fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89543000 -     0x7fff89976ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff89b96000 -     0x7fff89baaff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff89bab000 -     0x7fff89babfff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff89bac000 -     0x7fff89ce2fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff89ce3000 -     0x7fff89ce3fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89ce4000 -     0x7fff89d0fff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff89d10000 -     0x7fff89d2afff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff89d39000 -     0x7fff89d3afff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff89d50000 -     0x7fff89d5bff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff89d5c000 -     0x7fff89e51fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff89ea9000 -     0x7fff89f1fff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff89f20000 -     0x7fff8a122fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff8a123000 -     0x7fff8a21dff7  com.apple.DiskImagesFramework (10.7.4 - 331.7) <BEBA6D78-08E0-3B99-B77B-A5CBF3344834> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8a241000 -     0x7fff8a29cfff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8a29d000 -     0x7fff8a3aafff  libJP2.dylib (??? - ???) <6AF1F5FC-34D4-3278-BEBB-0712B81890B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8a43a000 -     0x7fff8a553fff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a554000 -     0x7fff8a660fef  libcrypto.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <FB999E54-C9BC-3A6D-9FE5-BFCC236775ED> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8a661000 -     0x7fff8a696fff  libTrueTypeScaler.dylib (??? - ???) <A8156684-3BBE-306C-B492-179CDFFD6027> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8a697000 -     0x7fff8a6ddfff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8a6de000 -     0x7fff8a6e9ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8a8a5000 -     0x7fff8a989ff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8a98a000 -     0x7fff8b590fff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8b591000 -     0x7fff8b5bcfff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8b5bf000 -     0x7fff8b5e8fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8b5e9000 -     0x7fff8b5efff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8b5f0000 -     0x7fff8b614fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8b6dd000 -     0x7fff8b6defff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8b6df000 -     0x7fff8b6fcff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8b6fd000 -     0x7fff8b702fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8b703000 -     0x7fff8b799ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8bb84000 -     0x7fff8bb96ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8bb97000 -     0x7fff8beb3fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8beb4000 -     0x7fff8bf1fff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8bf20000 -     0x7fff8bffffff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <047DFE61-500F-3F11-9881-D0844D2FCE5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8c000000 -     0x7fff8c3aafe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8c3ab000 -     0x7fff8c7d8fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8c7d9000 -     0x7fff8c7e0fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <1116CD6D-E7AD-375F-A691-B9DF6609FEAD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8c8f7000 -     0x7fff8c920ff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c991000 -     0x7fff8cb1cff7  com.apple.QTKit (7.7.1 - 2348) <9F6E8775-002D-3B79-90CC-D5117C50DB00> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8cb1d000 -     0x7fff8cb1eff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8cb1f000 -     0x7fff8cb24fff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cb25000 -     0x7fff8cc22ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8cc23000 -     0x7fff8ce94fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8ce95000 -     0x7fff8cee9fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8cf9c000 -     0x7fff8cfdcfff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8d02a000 -     0x7fff8d065fff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8d066000 -     0x7fff8d0b2ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d0b3000 -     0x7fff8d0edfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d0ee000 -     0x7fff8d0f4fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d0f5000 -     0x7fff8d197fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8d198000 -     0x7fff8d2f5fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d327000 -     0x7fff8d383ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d389000 -     0x7fff8d397fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d3a4000 -     0x7fff8d3b7ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8d3b8000 -     0x7fff8d3caff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8d44e000 -     0x7fff8d452ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d453000 -     0x7fff8d67dfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8d67e000 -     0x7fff8d77ffff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8d780000 -     0x7fff8d7c1fff  com.apple.QD (3.40.1 - ???) <13ACC7F4-B004-3370-B575-6D06447EE428> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8d7c2000 -     0x7fff8d838fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8d847000 -     0x7fff8d847fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8d848000 -     0x7fff8d84efff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8d84f000 -     0x7fff8da23ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8da8b000 -     0x7fff8daebfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8daec000 -     0x7fff8daf3fff  com.apple.CommerceCore (1.0 - 17.1) <B6BFA182-9DC9-3543-89AE-F82EB9AF1CAB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8daf4000 -     0x7fff8db38ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8db39000 -     0x7fff8db44ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8db45000 -     0x7fff8db53fff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff8db54000 -     0x7fff8db59fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8db5a000 -     0x7fff8db67fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8db68000 -     0x7fff8db77fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8db78000 -     0x7fff8dc5ce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8dcaa000 -     0x7fff8dcd7fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8dcd8000 -     0x7fff8dce2ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff8dce3000 -     0x7fff8dce3fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8dce4000 -     0x7fff8dce9ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8dcea000 -     0x7fff8dfdfff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8dfe0000 -     0x7fff8e053fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8e080000 -     0x7fff8e080fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e081000 -     0x7fff8e0caff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8e0cb000 -     0x7fff8e10bff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff8e10c000 -     0x7fff8e10fff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8e110000 -     0x7fff8e114fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8e115000 -     0x7fff8e118fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8e119000 -     0x7fff8e1bafff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8e1e5000 -     0x7fff8e1e5fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8e1f1000 -     0x7fff8e1f1fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8e1f2000 -     0x7fff8e2deff7  com.apple.backup.framework (1.3.5 - 1.3.5) <B25104A3-1CE5-36CA-8F26-0A2DE3F95F70> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8e675000 -     0x7fff8e6c7ff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e6f1000 -     0x7fff8e6f4fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8e6f6000 -     0x7fff8ea0ffff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ea10000 -     0x7fff8ea11fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ea12000 -     0x7fff8f1bafff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8f1d7000 -     0x7fff8f228ff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8f229000 -     0x7fff8f230fff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8f231000 -     0x7fff8f231fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8f2b3000 -     0x7fff8f337ff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8f338000 -     0x7fff8f5b0fff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8f5b1000 -     0x7fff8f5c8fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f5d8000 -     0x7fff8f633ff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8f634000 -     0x7fff8f655fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8f656000 -     0x7fff8f65afff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff8f65b000 -     0x7fff8f65dfff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8f66a000 -     0x7fff8f6c2ff7  libTIFF.dylib (??? - ???) <59353B7F-EA9A-32D5-A501-283443B30C60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f6c3000 -     0x7fff8f73eff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8f73f000 -     0x7fff8f756fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8f75a000 -     0x7fff8f786ff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f7e3000 -     0x7fff8f800fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8f801000 -     0x7fff8f9a1ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f9a2000 -     0x7fff8fccefff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8fccf000 -     0x7fff8fcdcff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff8fcdd000 -     0x7fff8fffffff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff90004000 -     0x7fff900b7ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff900b8000 -     0x7fff900bffff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff900c0000 -     0x7fff90143fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff90a45000 -     0x7fff90a61fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff90a62000 -     0x7fff90b29ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff90b2a000 -     0x7fff90c2cfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff90cfe000 -     0x7fff90d01fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff90e2a000 -     0x7fff90e5ffff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff90e60000 -     0x7fff9127eff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff91281000 -     0x7fff91283fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff91284000 -     0x7fff91309ff7  com.apple.Heimdal (2.2 - 2.0) <52B0F371-D272-3C8E-B42F-04D3FDD8AD0D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff91347000 -     0x7fff91356ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff91357000 -     0x7fff91357fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff91358000 -     0x7fff9136eff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9136f000 -     0x7fff913c2fff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff913c3000 -     0x7fff913d1ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff913da000 -     0x7fff91d78a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff91d88000 -     0x7fff91df0ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff91df1000 -     0x7fff91f58fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff91f59000 -     0x7fff91f5cfff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff91f5d000 -     0x7fff91f64fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91fd2000 -     0x7fff91ff8fff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff92007000 -     0x7fff9202bfff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9202c000 -     0x7fff92067fff  libssl.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <B5120F7F-6FD7-3E0B-AAB8-E9A8D72451BC> /usr/lib/libssl.0.9.8.dylib
        0x7fff92068000 -     0x7fff92069ff7  libsystem_sandbox.dylib (??? - ???) <5459F293-E1F2-33B3-B9B2-2ABB7B915B62> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff9206a000 -     0x7fff920beff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff920bf000 -     0x7fff92159ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff9215a000 -     0x7fff92238fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff923d5000 -     0x7fff92402fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
        0x7fff92403000 -     0x7fff9244aff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff9244b000 -     0x7fff92474fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff92475000 -     0x7fff924b9ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff924ba000 -     0x7fff924dafff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff924db000 -     0x7fff924dcff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff924dd000 -     0x7fff924e3fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff924e4000 -     0x7fff924f0fff  com.apple.DirectoryService.Framework (10.7 - 146) <38778B01-2CF6-3A33-8A7A-FE016774B24C> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff924f1000 -     0x7fff92553ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff92554000 -     0x7fff9260afff  com.apple.PDFKit (2.7.8 - 2.7.8) <13A92FA5-E6E6-3ECF-9A70-D4330D7BE847> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9260b000 -     0x7fff92710fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff92711000 -     0x7fff9275ffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff92e25000 -     0x7fff92e3bfff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff92e3c000 -     0x7fff92e44fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff92e45000 -     0x7fff930b9fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff930ba000 -     0x7fff930c5fff  com.apple.CommonAuth (2.2 - 2.0) <4F5302A5-867A-3F2E-9E4B-98FA011678F8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff930c6000 -     0x7fff930f9ff7  com.apple.GSS (2.2 - 2.0) <C86012C5-B613-3199-B1B3-A1494EE5E43C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff930fa000 -     0x7fff9341fff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        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: 5739
        thread_create: 886
        thread_set_state: 921
    VM Region Summary:
    ReadOnly portion of Libraries: Total=202.4M resident=83.9M(41%) swapped_out_or_unallocated=118.5M(59%)
    Writable regions: Total=165.9M written=22.4M(14%) resident=53.0M(32%) swapped_out=60K(0%) unallocated=113.0M(68%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  12.3M
    CG image                           4772K
    CG raster data                      300K
    CG shared images                   4464K
    CoreAnimation                       260K
    CoreGraphics                         16K
    CoreImage                             8K
    CoreServices                       1824K
    IOKit                              26.5M
    IOKit (reserved)                   1024K        reserved VM address space (unallocated)
    MALLOC                             89.8M
    MALLOC guard page                    80K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                      124K
    OpenCL                               52K
    OpenGL GLSL                        1024K
    STACK GUARD                        56.0M
    Stack                              11.6M
    VM_ALLOCATE                        17.2M
    __CI_BITMAP                          80K
    __DATA                             18.3M
    __IMAGE                             528K
    __LINKEDIT                         50.1M
    __TEXT                            152.4M
    __UNICODE                           544K
    mapped file                        48.3M
    shared memory                      10.8M
    ===========                      =======
    TOTAL                             507.9M
    TOTAL, minus reserved VM space    506.9M

    If you have not already done so, it would be a good idea to search/ask in the Adobe forums.   And I would recommend you never dump crash reports until asked to do so.
    https://forums.adobe.com/community/indesign

  • How to export file with specific KB/s for video?

    Just wondering how to go about doing this. I want a file to be exported with 188 KB/s video. and the audio 128kbps in h.264.

    I have to admit, you found an interesting way to confuse my friend Jim.
    You see, people just don't use KB/s, they use Mb/s or even Kb/s but using 188KB/s means that most of us have to multiply by eight to get a number we are used to, then divide by 1024.
    So, 188 X 8 = 1504Kb/s or about 1.47Mb/s. Which is pretty small for  video in this day and age, but so be it. That is their recommendation.
    (If anyone wants to argue about the 1024 vs 1000, don't. I can argue both sides for you.)
    http://pc.net/helpcenter/answers/kbps_or_mbps_faster
    https://support.speedtest.net/entries/21057567-What-do-mbps-and-kbps-mean-
    To set the export bit rate you will want to type in 1.47Mb/s but you won't be happy comparing it to a higher quality YouTube video. Darn, who would have even thought I would ever type " higher quality YouTube video" and not be kidding?

  • PS CC autom. generate function for layers (LAYER.PNG) export file with a black Background!

    I generate my ps layers as PNG files (LAYER.png), but since a while it just export my layers with a black (.png) or white (.png24) background. Why? I can't find a solution.. it is so random!
    I'm thankfull for any help!

    Ok, I forgott to say that I use the PNG's in After Effects. Now I know that all Versions of AE can't show small PNGs with transparency backgrounds! Just After Effects CC can do this.
    So this are the two solutions:
    1. Buy After Effect CC
    2. Work with a batch script, to re-saves the PNGs after the export.

  • Transition Issues/Problems on Exported File with FCP7

    Basically the video looks fine when played back in FCP, but gets messed up when output into Quicktime or any other video player.  In most programs it appears as a gamma shift during the FCP transitions and before/after any FCP generated text on the output file, again, it is fine in FCP when played back.
    I'm using Snow Leopard and FCS 7.  All of my footage is 24p 1080 ProRes (standard) with 16bit 48k audio.  My timelline matches this.  I used 5DtoRGB for transcoding.  I 100% made sure to render everything (and made sure all of the render options were checked) before exporting.  My settings are all default and have not been changed by me since the program was working fine.  I am using some FCP notch filters on the audio, but no video filters (other than the transitions), no 3rd party filters/plugins are being used.  I'm not utilizing XML files from any other FCS programs.  I'm watching all of this, including playback in FCP and QT, on an Apple Cinema Display.  My work files are on a G mini fw800 7200rpm drive. 
    Here's my typical workflow: export without self-containing file, open in Quicktime 7 and export to MP4 or Quicktime File (pros I know use this same process, it normally yields great results).  When looking at the initial non self-contained file, there are very slight gamma shifts at the transition/text spots described above.  After converting in Quicktime, the gamma shifts are much more apparent.  I tried using compressor to export and not surprisingly had the same exact large gamma shifts on transitions/text as I did with QT7.  Out of curiousity, I open the non self-contained file in Quicktime X and it actually "zooms in" during the same spots where there's a gamma shift, crazy.
    Anyone want to take a swing at this?  Any help would be greatly appreciated.  I'll start by saying that I've tried extensively troubleshooting the problem and reading up on the web with no solution.  I just can't find anyone else that's reporting anything similar to this.  Even tried a full reinstall after wiping all FCP-related files from my computer; I did this when upgrading my OS and it fixed it temporary...I had the same problem come up a couple of months ago, but I upgraded my software and OS to 10.6.7 and it went away completely for that period.  This is driving me insane and costing me a lot of cash and time, plus I have six projects on deck that need to be done next week, this is the worst time this could have happened.  First serious bug/problem I've encountered on an Apple program in 10 years of using their products.
    Thanks.
    -Dave

    Great to see a reply, thanks.
    In the Advanced section under the General Tab in the Sequence Settings, compressors settings are as follows:
    Gamma Correction: Automatic (should this be turned off by chance?)
    Interlaced (not selected)
    Enable Chroma Filtering (not selected)
    Video Processing Settings for Sequence:
    Render 10-bit material in high-precision YUV
    Process Max White as: White
    Motion Filtering Quality: Normal
    Render Controls for Sequence:
    Filters and Frame Blending for Speed (both selected)
    Frame Rate: 100%
    Resolution: 100%
    Codec: Same as Sequence Codec
    Master Templates and Motion Projects (Quality=Normal, Best Quality is not selected)

  • Garageband exports file with wrong filename

    I have been using garageband to export our church's podcasts for 3 years now.
    But for the last two weeks the poscast filename ends up being the same file from 3 weeks ago.
    I have a file that I use as a starter template.
    I import the new audio and save it in a new folder for that month under the name of the sermon + the date.
    When I export now the file name is not of the file that I saved but that of one I had created 3 weeks ago.
    I then did a test and exported a new podcast not using the template and I get the same results.
    Any thoughts...I guessed the GB forum the best to start with not sure it is GB or iTunes. I'm on a mac running the latest versions of OSX, GB, & iTunes.

    > Moorthy,
    > My issue is not so much about the filename, but an
    > encrypted (binary) file that I just want to copy from here to there.
    Do it like in the mentioned blog, but don't do any mapping. That will be fine.
    > Michal,
    > In my adapter I have the following:
    > 1)  localejbs/xi_file_module/ReadBinaryBean
    >  (LocalEnterpriseBean)
    > )  localejbs/CallSapAdapter
    >                         (LocalEnterpriseBean)
    > ine.xml file I have this:
    > <enterprise-bean>
    >   <ejb-name>ReadBinaryBean</ejb-name>
    > <jndi-name>xi_file_module/ReadBinaryBean</jndi-name>
    >   <session-props/>
    > enterprise-bean>
    Check your EAR if there are any libs from the adapter framework and delete them if necessary.
    After deployment check in your visual administrator if your EAR is available.
    Regards
    Stefan

  • Exporting files with AC3 audio

    Forgive me if this is not the right place to post this question.
    Using QT Pro, I want to trim and edit some files containing AC3 (Dolby Digital) audio. When I export or save the edited video, will they retain the AC3 audio?
    More specifics: These files contain both AAC audio (in the default track) and AC3 audio (second track). These files were encoded using Handbrake, and I will be playing them on my AppleTV (hence the desire to retain the AC3 audio). The source files come from my DVR, and I want to trim some commercials. I tried to trim them prior to encoding, but I'm having trouble finding reliable software for editing MPEG2 streams on a Mac. Thus, I'm trying to figure out whether or not I can trim them afterwards using QT Pro and still retain the AC3 audio.
    Any thoughts would be appreciated. Thanks!

    Aaah, I wish I could help! I have exactly the same problem! I was going to post about it, but since there's this workaround, I didn't want to take up bandwidth with a problem that was not a total showstopper.
    Indeed. I have stopped doing what I used to do before. Before, I used to select "All" in compressor - the files generated were the video, the aiff, and the ac3. Well after burning a few coasters through DVDSP 4.1 where there was picture but no sound, I realized that I needed to drag the aiff file to compressor again, and use that - at that point everything is fine. So, right now, my workflow is to export just the video from FCP through compressor, let it encode. Then export the aiff separately and encode it to a3 in compressor, then import the video and ac3 to DVDSP for good results. In short, no more exporting "All" from FCP through compressor, it's a waste of time.
    But as to why, I have no idea, and I'm eager to hear what folks have to say! Anyhow, just letting you know you are not alone. Btw. my set up is: FCP 4.5 HD, compressor 2.1 and DVDSP 4.1.0... what's yours?

  • Problem exporting file with spot colors to pdf

    I have a book which I designed in InDesign CS3. It has 150 images in it which are Photoshop eps files: black line drawings with a spot color fill. InCS3, when I needed to send files back and forth to the publisher, the eps files came out fine in any pdf I made. Now in CS5.5, no matter what I do, only the spot color shows up in the images -- their black outlines won't show up. I'm sure it's got something to do with settings of some kind but I can't figure it out for the life of me. Help!

    I'm viewing the pdf in Acrobat Pro X. I do see that if I turn Flattener Preview on, I can see the whole image in a separate preview box, but that's not going to work very well when I send it to an editor who is technologically challenged. Is there not a way to ake the pdf behave the way it does if I make it from CS3, where the flattening shows in the pdf by default? As it is, this seems like a step backwards, unless of course, there's something I am missing.

  • Eliminate flicker when exporting file with a matte

    I have a short FCP7 sequence with a moving garbage matte.  It looks fine when I play it in the timeline, but when exported to QuickTime there's now a flickering on the matte with each frame.
    What do I change in the settings so it looks the same in QuickTime as it does in FCP?

    More info Please:
    • Sequence settings - (command-0)
    • Footage properties - (select a clip, press command-9)
    • Export settings

  • How to export files with metadata information displayed?

    I want to wash my .jpg files through LR 5 in order to display the filenames.  Via the Slideshow module I have been able to select and direct the displaying of the desired metadata option.  When I export the files the displayed metadata information does not make the trip.  Any assistance is appreciated.

    I have given my filenames descriptors, for instance, 0000100 - Jerry rock climbing in Custer State Park SD.  Importing into Lightroom allows me to display the filename metadata.  Exporting the files generated in Lightroom to Photoshop Elements allows me to then create a slideshow in which I have more audio flexibilities. 

Maybe you are looking for

  • Any idea when the iPod Touch 5g will ship?

    I preordered it at the end of september and all it says is "available to ship: October" My order is currently "processing" and has been that way for about a week. Anyone know when it should ship? Thanks!

  • Nokia 1520 camera

    I don't seem to get how to zoom with the 1520 camera. Has it got the facility?

  • Extract html content on load of a web page

    Hi Guys,  I have a small question regarding IE add-on. i want to build a add-on which will extract html content whenever a web page loads in my browser and it should send the content to my application(Server) by ajex/http request afterwards. Can you

  • Help needed.. Uploading a jpg into a BufferedImage type in servlets

    Heys guys. I'm trying to use a jsp servlet to upload an image and convert the Stream back to a buffered image. However I'm getting the error "Not a JPEG file: starts with 0x2d 0x2d" with every JPG i try. Here is the code Im using in the servlet:     

  • Using the server cache dir: Dumb programming?

    Hello, I have installed an application on Weblogic portal server 8.1.4, SP5 on Linux Redhat 4. This application is using the .wlnotdelete directory to store some files, which it updates once in a while. I understand this directory is called the serve