Renaming a file on a server

I'm having some problems renaming a file from a form I created... here is my code below
String file = request.getParameter("file");
String newfile = request.getParameter("newfile");
File f = new File("/my path/" + file + "");
File newf = new File("/my path/" + newfile + "");
f.renameTo(newf);
Any idea why this is not working?
Thanks in advance!

Hi,
It may due to space in your folder name.
Try using quote with escape sequence for your folder + file name.
File f = new File("\"/my path/" + file + "\"");
File newf = new File("\"/my path/" + newfile + "\"");
f.renameTo(newf);
Hope this helps.
KD

Similar Messages

  • How to rename a file in Application server

    Hi All,
    Here I have a issue with  the present file which is being generated in application server.
    Before the completion of the file the EDI tool is extracting the file from the app server.So here I would like to generate the file with a temp name and then rename to the actual file name which EDI recognises and fetches.
    Please correct me If I am wrong and let me know how to rename the file in application server.
    Thanks,
    Vijay N

    you can try using unix command , if your application server is unix.
    use move command
    mv   <source>  <target>
    REPORT ZUNIX line-size 400
                    no standard page heading.
    data: unixcom like   rlgrap-filename.  
    unixcom = 'mv file1 file2'.
    data: begin of tabl occurs 500,
            line(400),
          end of tabl.
    data: lines type i.
    start-of-selection.
      refresh tabl.
      call 'SYSTEM' id 'COMMAND' field unixcom
                    id 'TAB'     field tabl[].
    or else you can open dataset/ read the dataset and move it to another file and delete the old file.

  • Rename a file in application server

    Hi SAPients.
    How can I rename a file in the application server?
    I'm working with 46C under SunOS.
    Thank you!

    Hi,
    Try the below code:
    CONCATENATE 'mv' <old filename> ' '
                     <new filename> INTO W_COMMAND-LINE   SEPARATED    BY SPACE.
    PERFORM CALL-PIPE.
    FORM CALL-PIPE.
      CALL FUNCTION 'RFC_REMOTE_PIPE'
           DESTINATION 'SERVER_EXEC'
           EXPORTING
              COMMAND = W_COMMAND-LINE
              READ    = 'X'.
          TABLES
              PIPEDATA = DIR_TABLE.
    ENDFORM.                               " CALL_PIPE
    You need to change the 'command' according to your operating system.
    Rgds,
    Anji
    Message was edited by: Anjikumar

  • Rename the file in application server

    Hi Experts,
    I want to rename the file which is in Application Server.
    E.g:- Current File in Application Server is '\user\sd\file1'
            I want to change the above file name to '\user\sd\file1_old' in Application Server.
    Please help me if any one aware of this.
    Thanks & Regards,
    Chandu

    Hello,
    What you want to do is execute a command on the host operating system.
    This can be done with function module SXPG_COMMAND_EXECUTE.
    This module will execute commands that have been predefined in SAP. To see what is available look in SM49.
    If you have the autorizations you can create your own or ask for it to be created.
    More general information can be found [here|http://wiki.sdn.sap.com/wiki/display/ABAP/CreationofExternalCommandswiththehelpofUNIXCodingin+SAP].
    Hope this is helpful.

  • Renaming of files by MDM Server (MDM 5.5 SP4)

    Hi Experts,
    I am checking the MDM Server Logs and found that there is always renaming of files happening from ".tmp" to ".xml" as shown below:
    7560 2011/09/13 15:39:16.773 GMT SyndicateToPortImpl: rename files (0) "C:\PROGRA1\SAPMDM1.5\Server\Distributions\MR4_ORCL\BP US FUELS CUSTOMER MASTER_PRD\Outbound\SCDB_BP\Modify_BP_SCDB\Ready\Data_110913-153916_000.tmp"
    to
    "C:\PROGRA1\SAPMDM1.5\Server\Distributions\MR4_ORCL\BP US FUELS CUSTOMER MASTER_PRD\Outbound\SCDB_BP\Modify_BP_SCDB\Ready\Data_110913-153916_000.xml".
    Can someone tell me why this renaming of files is happening?
    Thanks!

    Hi,
    This should be happening to avoid incomplete files getting picked up by tools from the Ready folder.
    So until the file is completely transferred into Ready folder, it gets created as .tmp and then it gets converted to .xml once the file is completely copied.
    Same thing you can see when you archive a repository. The .a2a extension is different if the Archive operation aborts.
    As per SAP MDM 7.1 Console reference guide , this is recommended to avoid issues with incomplete files. But in your case of MDM 5.5, if you say that you have not implemented this logic manually and it is happening automatically then it is good for you.
    SAP MDM Console Reference Guide - Page 272.  http://help.sap.com/saphelp_mdm71/helpdata/en/4b/71608566ae3260e10000000a42189b/MDMConsole71.pdf
    Thanks,
    Shambhu.

  • Renaming a file on the application server

    Hi all,
    I create a file on the Application server which I want to rename means a program.
    I would like to add the system stamptime at the time the program is running.
    sample:
    original name:
    file.csv
    final name:
    file_20060626123000.csv
    does somebody have an ABAP program to do that ? other ideas?
    Thanks in advance,
    FedeX

    Thanks for the answers,
    I do not what I doing wrong in my sample....
    I am using this logical path and logical file in an InfoSpoke..
    and I get the error:
    "could not open file on application server"
    My definitions are:
    Logical PATH : Z_PATH_TEST
    Syntax Group ->UNIX
    <P=DIR_HOME>/<FILENAME>
    ( I am sure DIR_HOME is set correcty on SAP Directories)
    Logical FILE NAME : Z_NAME_TEST
    Physical Name :File1_<DATE>.csv
    Data Format : ASC
    Logical Path: Z_PATH_TEST
    What could be wrong here?... Thanks again
    FedeX

  • How to RENAME the file in UNIX-Appl. server, after READING it?

    Hi Experts,
    Following is my requirement,
    What we are wanting here is the functionality added to this program that once the UNIX file is processed, that it can be closed and then renamed on the Application server with the yyyymmdd extension.  For example, the program reads and processes the My_file.csv file today.  Once it's finished, it then closes the file and renames it as My_file20080610.csv.  By doing this, it will prevent the same file from being run the next day in case the new file is not sent. 
    So, pls. let me know that, How to RENAME is file in the UNIX - Appl. server, after reading it? obviuosly I closes it at the end.
    thanq

    Hi Srinivas,
    You can create a My_file20080610.csv. Write the content from My_file.csv into My_file20080610.csv. Then using DELETE DATASET delete the file My_file.csv.
    Thanks
    Romit

  • FM to Rename a File on my Desktop(Presentation server) thru SAP

    Hi,
    I have a requirement wherein, I know the correct path along with the file name of any particular file stored on my desktop. I need to change the name of that file according to the client's naming convention.
    Does anybody knows the name of SAP Standard Function Module by which you can change the name of a file on Presentation Server.
    Thanks in Advance.
    With Best Regards,
    Nitin

    Hi nitin,
    1. Exactly for this purpose
        i have developed an INDEPENDENT SUBROUTINE (FORM)
      in which we pass
        a) old file name
        b) new file name
      and it will rename the file
    (This will work in WINDOWS Operating system)
    (we can modify it very little for other OS also_
    2. just copy paste in new program.
    3.
    Report abc.
    PERFORM MYRENAME USING 'D:\CCC.TXT'  'DDD.TXT'.
    FORM
    form myrename USING oldfile newfile.
      data : pm(200) type c.
      concatenate '/C REN ' oldfile newfile
      INTO PM separated by space.
      CALL FUNCTION 'GUI_RUN'
        EXPORTING
          COMMAND          = 'CMD'
         PARAMETER        = pm
      CD               =
    IMPORTING
      RETURNCODE       =
    endform.                    "myrename
    regards,a
    amit m.

  • Batch rename files on the server?

    Can someone explain how to batch rename files on the server ?
    I have 1000 rows each containing these fields
    id (unique key)
    productCode
    filename1
    filename2
    For every row I need to rename the following fields:
    Rename [filename1] to [productCode]_[id]_1
    Rename [filename2] to [productCode]_[id]_2
    also I need to rename the actual file on the server using the above scheme
    Can someone show me the way ? I'm a little rusty with ColdFusion

    So far I've got everything working apart from CFFILE which works only if it finds a corresponding jpeg file on the server. In other words it works perfectly until row 20 of the database because the filename contained in the field doesn't have a matching jpeg file on the server, so CFFILE fails like this...
    Attribute validation error for tag CFFILE.
    The value of the attribute source, which is currently C:\images\DSCN1293.JPG, is invalid.
    The error occurred in C:\Inetpub\wwwroot\link\htdocs\old_apps\psp\updater.cfm: line 63
    61 :                    action = "rename"
    62 :                    source = #my_source1#
    63 :                    destination = #my_destination1#>
    is there a way to carry on looping through the remaining rows and ignore the above fail ?

  • How to Rename the file in the application server?

    Hi friends.
    How to Rename the file in the application server? via abap program so pls kindly let me know thr any function module is there.
    Thanks
    With Regards
    I.Muthukumar.

    Dont think there is any quick fix way of doin this, however you can use the following sequence of dataset ops to get what you need:
    READ DATASET - retrieve contents of current AS file
    TRANSFER DATASET - create a new file on AS with the contents read in READ
    DELETE DATASET - delete the original file on AS (if TRANSFER above is successful)
    Hope this approach helps.
    Cheers,
    Aditya

  • Infopackage-Load Many Files from Application Server and later Archive/Move

    Hi All..
      I have a doubt,   I have a requirement of take many files to load into BI 7.0..  I used the infopackage before with option:
    Load Binary File From Application server
      I load information successfully... only with one file ...but If I can load many files (with different names) like the next list.. I think it's not a good idea modify the file name (path) on infopackage each time).. :
    *All of this files will be on one server that itu2019s map into AL11.. Like
    Infopfw
    BW_LOAD_20090120.txt
    BW_LOAD_20090125.txt
    BW_LOAD_OTHER_1.txt
    u2026.
    Etc..
    This directory it's not in BW server.. It's other server..but I can load form this location (one file by one)
    Could you help me with this questions:
    -     How can I Use an infopackage with routine that take all the files..one by oneu2026 in order of creation dateu2026and load into Target? Is it possible?.. I have some knowledge of ABAP.. but I don´t know exactly how I can say to system this logicu2026
    -     In addition is it possible move this files to other locationu2026 like into Infopfwarchive u2026 just to have an history of files loaded.
    I saw that in infopackage you have an option to create a routine.. in ABAP codeu2026 Iu2019m a little bit confused because I donu2019t  know how I can specify all the path..
    I try with:
    Infopfw
    InfopfwFile.csv
    Infopfw
    This is the abap code that automatically you see and you need to modifyu2026
    Create a routine for file name
    This routine will be called by the adapter,
    when the infopackage is executed.
              p_filename =
              p_subrc = 0.
    Thank you for your ideas or recommendations.
    Al

    Hi Reddy, thank you for your answer
    I have some doubuts.. when you explain me the option:
    All the above files are appending dates at the end of the file....
    You can load the files through infopackage by using Routines and pick the files based on date at the end of the file..***
    I need to ask you if you think that when you know the date of the file and the infopackage pick each file... thi can work for many files??... or how it's possible control this process?
    About this option, I want to ask you If when you menction Unix code... where it's programed this code?.. in the routine of BW Infopackage??
    ****Or
    Create two folders in your BW in Application server level, in AL11 (ask Basis team)
    I call it is F1 and F2 folders.
    First dump the files into F1 I assume that the file name in F1 is "BW_LOAD_20090120.txt", using Unix code you rename the file and then keep in the same foleder F1 or move to F2.
    Then create InfoPackage and fix the file name (i.e. you renamed), so you don't need to change everyday your file name at infopackage level.Because in AL11 everyday the file are overwrite.
    To I get BW_LOAD_20090120.txt file in F1, then I renamed to BW_LOAD.txt and loaded into BW, then tomorrow I get BW_LOAD_20090125.txt in F1, then I renamed to BW_LOAD.txt....
    so in this way it will work.You need to schedule the Ubix script in AL11.
    This is the way how to handle the application server...I'm using the same logic.
    Thank you soo much.
    Al

  • Can't RENAME a file like Windows can?

    Real easy. I just need to rename a file from this:
    A2Capital.jpg
    to this:
    a2capital.jpg
    I do this in Windows and of course every OS I have used since the 1990s at least. Why can't this be done in OS X 10.4.9?
    I am on a network drive of a Windows Server, if that makes a difference. The error I always get is
    The name a2capital with extension ".jpg" is already taken. Please choose a different name.
    Oh, come on. This is an easy one, right?
    It happens whether I click the filename or if I Show Info.
    Mac Pro Quad 3.0 Mac OS X (10.4.9) I usually run Windows XP

    OS X's filesystem, HFS+, is case-preserving, meaning
    it stores the upper and lowercase characters of
    file/folder names, however it's not case-sensitive
    (unless you specify it as such when formatting the
    disk in Disk Utility). In a case-preserving
    filesystem, MyFile, mYfILE, myfile, and MYFILE all
    reference the same file. There is no need to be rude
    to Kappy, he was just trying to help. Here's some
    reading if you want to learn more:
    http://en.wikipedia.org/wiki/HFS_Plus
    http://en.wikipedia.org/wiki/Comparisonof_filesystem
    s#fn_35
    http://en.wikipedia.org/wiki/Case-preserving
    Note: HFSX in 10.3 added the ability to format a disk
    as Case-Sensitive. If you didn't reformat your disk
    when you got your Mac, it's Case-Preserving, not
    Case-Sensitive.
    I see what you mean by case sensitive. I think Macs and Windows are similar in this regard. All that means is that if I type in a command to run, or I type a filename to launch, the OS is forgiving if I say "BLaH.JpG" for a file that is really "blah.JPG" -- if it's on the hard drive like that already.
    You bet. But in both Mac and Windows it seems, I can rename the file to whatever mixed case I want and get no errors.
    I only have this problem on the network drive,
    which like I said is a Windows 2003 Server share.
    Because your question is in the context of renaming a
    file on a remote Windows share, then all the talk of
    whether HFS is case-sensitive or not doesn't matter.
    I'm assuming the share you're connected to when
    trying to do this rename is NTFS? Macs use Samba to
    connect to Windows shares. I've never tried to do
    what you're doing through a samba share. It could be
    Samba, or it could be how you have your share set up.
    It does look like a Samba idiosyncrasy. I have used Samba before in FreeBSD (a relative to Darwin/OS X) but I would have no idea if that was the case there.
    Samba has traditionally had some oddities, bugs, and problems due to the nature of open-sourcing a Windows custom secret network system. But Macs do claim to be interoperable with other networks and systems. This can't be unusual. Lots of people need to connect to a Windows share.
    Ha, to be honest, I don't think I would even try to setup a NFS share on the Windows server, and there aren't any UNIX servers at this location.
    Who heads up the Samba stuff for Mac OS?

  • Reading XML File from application server

    Hi experts,
    My aim is to read a XML file from application server and extract the relevant data from it and process further.
    When I am trying to read a XML file from application server it is reading success fully but the problem is that its not reading the last root structure of XML file why is so happening can any body help me?
    I am using the following code:
    TYPES: BEGIN OF xml_line,
    text(256) type x,
    END OF xml_line.
    DATA: e_file LIKE rlgrap-filename VALUE  'applcatin server path'
    OPEN DATASET e_file FOR INPUT IN BINARY MODE.
    IF sy-subrc EQ 0.
      DO.
        READ DATASET e_file INTO wa_item1-text.
        IF sy-subrc EQ 0.
          APPEND wa_item1 TO gt_item1 .
          CLEAR wa_item1.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
    ENDIF.
    CLOSE DATASET e_file.
    after this i am passing this internal table to "cl_ixml" class to extract the data
    but it returning the itab with required value except the last record.
    The stream reading the file it self is i thought in complete thats why it is not converting the all values.
    Please  help me...
    Thanks a ton in advance.

    Hi,
    1 Copy Report BCCIIXMLT1
    2 (you can change the way of filling internal table xml_table if necessary)
    3 you don't need the part between
    *-- render the DOM back into an output stream/internal table
    and
    *-- print the whole DOM tree as a list...
    Comment it out or simply delete it
    4 Rename form print_node to your liking e.g. process_node
    5 In your new form you need three extra variables:
    data: attribs type ref to IF_IXML_NAMED_NODE_MAP,
          attrib_node type ref to IF_IXML_NODE,
          attrib_value type string.
    6 After the lines:
    when if_ixml_node=>co_node_element.
      string = pNode->get_name( ).
    Insert:
    attribs = pNode->get_attributes( ).
    clear attrib_value.
    case string.
      when ''. "put your XML tag name here
        attrib_node = attribs->get_named_item(name = '' ). "put your XML attribute name here
        attrib_value = attrib_node->get_value( ).
    You can also refer link,
    /people/r.eijpe/blog/2005/11/21/xml-dom-processing-in-abap-part-ii--convert-an-xml-file-into-an-abap-table-using-sap-dom-approach
    thanks & regards
    shreemohan

  • 10.9.4 Finder crash when renaming any file or folder

    Since I updated yo 10.9.4, I can't rename any file with finder. After renaming a file, when I hit "enter", Finder restarts and file is not renamed.
    Tried with new user account: same issue.
    Tried in Safe Mode, same issue.
    The only way right now to rename a folder is to use the Terminal move command.
    Here is the Finder's crash log from Console:
    Process:         Finder [2589]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Build Info:      Finder_FE-885004002000000~1
    Responsible:     Finder [2589]
    PlugIn Path:       /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    PlugIn Identifier: com.apple.finder
    -2 sec           CODE SIGNING: cs_invalid_page(0x1065aa000): p=2589[Finder] final status 0x1000a00, denying page sending SIGKILL
    --> __TEXT                 0000000106450000-000000010691f000 [ 4924K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
        __DATA                 000000010691f000-0000000106a07000 [  928K] rw-/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0   com.apple.finder               0x00000001065aa39d 0x106450000 + 1418141
    1   com.apple.finder               0x00000001065a9171 0x106450000 + 1413489
    2   com.apple.finder               0x00000001065a90cb 0x106450000 + 1413323
    3   com.apple.finder               0x00000001065a8fbf 0x106450000 + 1413055
    4   com.apple.finder               0x00000001065a8e20 0x106450000 + 1412640
    5   com.apple.finder               0x00000001065a38d4 0x106450000 + 1390804
    6   com.apple.finder               0x00000001065a37c7 0x106450000 + 1390535
    7   com.apple.finder               0x00000001065a36a0 0x106450000 + 1390240
    8   com.apple.finder               0x00000001065a87ff 0x106450000 + 1411071
    9   com.apple.finder               0x00000001065a8661 0x106450000 + 1410657
    10  com.apple.finder               0x00000001065a843c 0x106450000 + 1410108
    11  com.apple.finder               0x00000001065a8344 0x106450000 + 1409860
    18  com.apple.finder               0x0000000106474b35 0x106450000 + 150325
    21  com.apple.finder               0x0000000106456730 0x106450000 + 26416
           0x106450000 -        0x10691eff9  com.apple.finder (10.9.4 - 10.9.4) <1CEEB00A-B22D-34DA-ABDB-EC5419F308A4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Any suggestion?  Thanks!

    Here is the full crash report:
    Process:         Finder [291]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.9.4 (10.9.4)
    Build Info:      Finder_FE-885004002000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [159]
    Responsible:     Finder [291]
    User ID:         501
    PlugIn Path:       /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    PlugIn Identifier: com.apple.finder
    PlugIn Version:    10.9.4 (10.9.4)
    Date/Time:       2014-07-10 16:46:11.903 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  1332570E-59C7-DF2F-F495-F02D82CD5F39
    Sleep/Wake UUID: CA6C44E4-017B-438A-BF45-17910E93DFF7
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x000000010458339d
    kernel messages:
    -1 sec           CODE SIGNING: cs_invalid_page(0x104583000): p=291[Finder] final status 0x1000a00, denying page sending SIGKILL
    -1 sec         
    -1 sec           CODE SIGNING: cs_invalid_page(0x118ddc000): p=572[ReportCrash] final status 0x0, allowing (remove VALID) page
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x10458339d:
    --> __TEXT                 0000000104429000-00000001048f8000 [ 4924K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
        __DATA                 00000001048f8000-00000001049e0000 [  928K] rw-/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.finder               0x000000010458339d 0x104429000 + 1418141
    1   com.apple.finder               0x0000000104582171 0x104429000 + 1413489
    2   com.apple.finder               0x00000001045820cb 0x104429000 + 1413323
    3   com.apple.finder               0x0000000104581fbf 0x104429000 + 1413055
    4   com.apple.finder               0x0000000104581e20 0x104429000 + 1412640
    5   com.apple.finder               0x000000010457c8d4 0x104429000 + 1390804
    6   com.apple.finder               0x000000010457c7c7 0x104429000 + 1390535
    7   com.apple.finder               0x000000010457c6a0 0x104429000 + 1390240
    8   com.apple.finder               0x00000001045817ff 0x104429000 + 1411071
    9   com.apple.finder               0x0000000104581661 0x104429000 + 1410657
    10  com.apple.finder               0x000000010458143c 0x104429000 + 1410108
    11  com.apple.finder               0x0000000104581344 0x104429000 + 1409860
    12  com.apple.AppKit               0x000000010846a151 -[NSKeyBindingManager(NSKeyBindingManager_MultiClients) interpretEventAsCommand:forClient:] + 1392
    13  com.apple.AppKit               0x00000001084891c2 -[NSTextInputContext handleEvent:] + 845
    14  com.apple.AppKit               0x00000001084689dd -[NSView interpretKeyEvents:] + 180
    15  com.apple.AppKit               0x0000000108488d6d -[NSTextView keyDown:] + 658
    16  com.apple.AppKit               0x000000010843556b -[NSWindow sendEvent:] + 1843
    17  com.apple.AppKit               0x00000001083d6b32 -[NSApplication sendEvent:] + 3395
    18  com.apple.finder               0x000000010444db35 0x104429000 + 150325
    19  com.apple.AppKit               0x00000001082269f9 -[NSApplication run] + 646
    20  com.apple.AppKit               0x0000000108211783 NSApplicationMain + 940
    21  com.apple.finder               0x000000010442f730 0x104429000 + 26416
    22  libdyld.dylib                 0x000000010a9c45fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x000000010ab61662 kevent64 + 10
    1   libdispatch.dylib             0x000000010a98c421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x000000010a98c136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x000000010ab5ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010ab5bd18 mach_msg + 64
    2   libsystem_kernel.dylib         0x000000010ab58ff2 thread_suspend + 71
    3   ???                           0x000000010656a723 0 + 4401309475
    Thread 3:
    0   libsystem_kernel.dylib         0x000000010ab5ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010ab5bd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x000000010957df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x000000010957d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x000000010957ce75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x0000000107740969 -[NSConnection run] + 127
    6   com.apple.Foundation           0x00000001076c776b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x000000010ac6f899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x000000010ac6f72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x000000010ac73fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x000000010ab5ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010ab5bd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x000000010957df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x000000010957d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x000000010957ce75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x0000000107740969 -[NSConnection run] + 127
    6   com.apple.Foundation           0x00000001076c776b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x000000010ac6f899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x000000010ac6f72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x000000010ac73fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x000000010ab5ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x000000010ab5bd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x000000010957df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x000000010957d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x000000010957ce75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00000001083d305e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x000000010ac6f899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x000000010ac6f72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x000000010ac73fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x000000010ab60e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x000000010ac70f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x000000010ac73fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x000000010ab60716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x000000010ac71c77 _pthread_cond_wait + 787
    2   com.apple.finder               0x000000010445306c 0x104429000 + 172140
    3   com.apple.finder               0x000000010447c919 0x104429000 + 342297
    4   com.apple.finder               0x000000010466fcbe 0x104429000 + 2387134
    5   com.apple.finder               0x0000000104430c30 0x104429000 + 31792
    6   libsystem_pthread.dylib       0x000000010ac6f899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x000000010ac6f72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x000000010ac73fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x000000010ab60716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x000000010ac71c3b _pthread_cond_wait + 727
    2   com.apple.desktopservices     0x0000000104b01425 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices     0x0000000104ae1f90 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices     0x0000000104ae1bb8 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices     0x0000000104ac689b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib       0x000000010ac6f899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x000000010ac6f72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x000000010ac73fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000608000c48610  rcx: 0x0000608000134060  rdx: 0x00007fff5b7d6100
      rdi: 0x00000001049a2730  rsi: 0x0000000104880bbb  rbp: 0x00007fff5b7d6130  rsp: 0x00007fff5b7d5fd8
       r8: 0x0000000000000001   r9: 0x0000000000000001  r10: 0x0000000000000003  r11: 0x000000010458339d
      r12: 0x0000608000134060  r13: 0x0000000000000001  r14: 0x00007fff5b7d6188  r15: 0x0000000000000001
      rip: 0x000000010458339d  rfl: 0x0000000000010246  cr2: 0x000000010458339d
    Logical CPU:     2
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
           0x104429000 -        0x1048f7ff9  com.apple.finder (10.9.4 - 10.9.4) <1CEEB00A-B22D-34DA-ABDB-EC5419F308A4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x104a32000 -        0x104b62ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x104be7000 -        0x104c4affb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x104c86000 -        0x104cc1fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x104cd4000 -        0x104cd9fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x104ce5000 -        0x104d51fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x104d88000 -        0x104db4ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
           0x104de0000 -        0x104ec4fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x104f87000 -        0x104fd2fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x105019000 -        0x1051b5ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x105291000 -        0x10529ffff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x1052ae000 -        0x105372ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1053fd000 -        0x10544efff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10548b000 -        0x105643ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
           0x1056f0000 -        0x1056f7fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x105701000 -        0x105962fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x105bb3000 -        0x105c84fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x105d3c000 -        0x105fc5fff  com.apple.CommerceKit (1.2.0 - 232.11) <976C534B-C0F3-3C01-AB3D-E81B2EE9ADB1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
           0x106065000 -        0x1060b7ff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x106105000 -        0x106259ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x1062f4000 -        0x1063c5ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x106427000 -        0x106428ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x106431000 -        0x1064bcfff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
           0x1064e8000 -        0x10652efff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x106554000 -        0x10655eff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
           0x106570000 -        0x1065b1fff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x106e02000 -        0x106e30ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x106e5e000 -        0x106e61fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x106e69000 -        0x106e75fff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x106e88000 -        0x1070e2ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10722f000 -        0x10722ffff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x107238000 -        0x1074e2ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10763e000 -        0x10764bfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10765c000 -        0x10765dfff  libffi.dylib (18.1) <FEB76C94-97BA-39BC-B713-D086B9757BA5> /usr/lib/libffi.dylib
           0x107661000 -        0x10795ffff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x107b9c000 -        0x107d49f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x107d71000 -        0x107dc3fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x107e25000 -        0x107e26ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
           0x107e32000 -        0x107ef4ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x107f68000 -        0x108103ff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10820c000 -        0x10820cfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10820f000 -        0x108d85ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10950d000 -        0x1096f2fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x109864000 -        0x10996aff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x1099d7000 -        0x1099d7fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x1099db000 -        0x1099dcffa +cl_kernels (???) <2EC5823C-888A-44B0-BC51-DE1A5219FA12> cl_kernels
           0x1099df000 -        0x109a52fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x109a98000 -        0x10a3b832b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10a4e5000 -        0x10a4f5fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x10a500000 -        0x10a519ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10a52c000 -        0x10a537ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10a546000 -        0x10a576fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x10a5a6000 -        0x10a615ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10a644000 -        0x10a6cdfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10a717000 -        0x10a75cff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10a794000 -        0x10a7a3ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10a7b2000 -        0x10a7ffff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10a830000 -        0x10a869ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10a888000 -        0x10a891fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10a8aa000 -        0x10a8bbff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10a8c1000 -        0x10a8c4ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10a8d2000 -        0x10a8d2fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10a8d7000 -        0x10a8dbff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10a8e3000 -        0x10a8edfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10a901000 -        0x10a908fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10a917000 -        0x10a91effb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
           0x10a926000 -        0x10a974fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10a989000 -        0x10a9a3fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
           0x10a9c1000 -        0x10a9c4ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
           0x10a9d2000 -        0x10a9d2ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10a9db000 -        0x10a9e2ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
           0x10a9ec000 -        0x10a9f1fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10a9fa000 -        0x10a9fcff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10aa05000 -        0x10aa06ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10aa0c000 -        0x10aa1dff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10aa2c000 -        0x10aa2dff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10aa38000 -        0x10aac1ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
           0x10aaf3000 -        0x10aaf5ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
           0x10aafd000 -        0x10ab05fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
           0x10ab0d000 -        0x10ab34ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10ab4b000 -        0x10ab67ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
           0x10ab8f000 -        0x10abbefd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x10abcd000 -        0x10abe8ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
           0x10abf8000 -        0x10ac1fff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x10ac3b000 -        0x10ac44ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x10ac4d000 -        0x10ac4eff9 +cl_kernels (???) <BCEF2E3E-6E69-460A-B56D-34FC85ED495F> cl_kernels
           0x10ac50000 -        0x10ac56ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
           0x10ac6e000 -        0x10ac75ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x10ac88000 -        0x10ac89fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
           0x10ac8e000 -        0x10ac92ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
           0x10ac9a000 -        0x10ac9bfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x10aca8000 -        0x10acadff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x10acb7000 -        0x10acb8fe4 +cl_kernels (???) <7F5CEC7F-7D1D-45B1-9001-CCC4FA8AA0D6> cl_kernels
           0x10acbb000 -        0x10acdffff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
           0x10ad02000 -        0x10ad44ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x10ad5d000 -        0x10ad86ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
           0x10ad99000 -        0x10ada4fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
           0x10adad000 -        0x10b097fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10b118000 -        0x10b1a8ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10b216000 -        0x10b28dfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10b333000 -        0x10b3a0fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10b3e6000 -        0x10b441ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10b477000 -        0x10b541fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10b5ba000 -        0x10b5e3fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10b606000 -        0x10b6f0fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10b70b000 -        0x10b7f2ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x10b82e000 -        0x10b83bff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10b845000 -        0x10b849fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x10b854000 -        0x10b854ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x10b85e000 -        0x10b86bff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x10b873000 -        0x10b874fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10b87e000 -        0x10b899ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x10b8a6000 -        0x10b90afff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10b94f000 -        0x10b952fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10b95f000 -        0x10b976ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10b998000 -        0x10b9a2ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10b9ae000 -        0x10b9d6ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x10b9e6000 -        0x10bcbafc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10bd00000 -        0x10bd00fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10bd06000 -        0x10bdd1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10bddc000 -        0x10be8cff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10be98000 -        0x10c279ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10c2df000 -        0x10c44dff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10c47a000 -        0x10c569fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10c5e1000 -        0x10c628fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10c654000 -        0x10c678ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10c684000 -        0x10c6ddfff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10c6f1000 -        0x10c70cff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10c71a000 -        0x10c71eff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10c725000 -        0x10c813fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10c841000 -        0x10c843fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10c84e000 -        0x10c895ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
           0x10c8af000 -        0x10c8c8ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10c8e5000 -        0x10c914ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10c933000 -        0x10c94ffff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x10c95c000 -        0x10ca4dff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x10ca61000 -        0x10cac6ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10caf3000 -        0x10caf4fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10caf9000 -        0x10cafdff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
           0x10cb07000 -        0x10cb13ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10cb2e000 -        0x10cb37ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10cb45000 -        0x10cb96ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10cbbd000 -        0x10cbd5ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10cbea000 -        0x10cc0fff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10cc1b000 -        0x10cc1bfeb +cl_kernels (???) <C5BBB3DF-049B-44BC-B629-F816BD834987> cl_kernels
           0x10cc1e000 -        0x10cc2affb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10cc33000 -        0x10cc3eff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x10cc4a000 -        0x10cc4dff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
           0x10cc58000 -        0x10cc59ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
           0x10cc5f000 -        0x10cd17ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x10cd82000 -        0x10cdc7fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
           0x10cdd8000 -        0x10ce09fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x10ce1b000 -        0x10ce1dfff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x10ce27000 -        0x10ce29ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
           0x10ce30000 -        0x10ce36fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x10ce48000 -        0x10ce7dffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10ce93000 -        0x10cea3ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
           0x10ceaf000 -        0x10cf8efff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
           0x10cff9000 -        0x10d02dfff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
           0x10d048000 -        0x10d080ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10d0b9000 -        0x10d0b9ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10d0c2000 -        0x10d30aff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10d435000 -        0x10d43dff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10d44a000 -        0x10d45cff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10d472000 -        0x10d4feff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10d535000 -        0x10d55aff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10d577000 -        0x10d848ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10d942000 -        0x10d995fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10d9c0000 -        0x10d9fffff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10da0e000 -        0x10da16ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10da23000 -        0x10da2efff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10da46000 -        0x10da84ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10da8c000 -        0x10da8efff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10da94000 -        0x10da97fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10da9d000 -        0x10ded0ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x10e0ee000 -        0x10e0f8ff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10e10c000 -        0x10e15aff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10e173000 -        0x10e1f4fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10e245000 -        0x10e29dff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10e2e9000 -        0x10e318fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10e339000 -        0x10e342fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x10e351000 -        0x10e492fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x10e5a9000 -        0x10e644ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x10e6b7000 -        0x10ebdafff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x10eefe000 -        0x10ef22fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x10ef56000 -        0x10ef5cff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
           0x10ef66000 -        0x10f088fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
           0x10f1a2000 -        0x10f1ebfff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x10f21c000 -        0x10f552fff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x10f606000 -        0x10fa54fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x10fab0000 -        0x10fab0fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10faba000 -        0x10fad0fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x10faea000 -        0x10fb36ffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x10fb5f000 -        0x10fb76ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
           0x10fb8a000 -        0x10fcb9fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x10fcf5000 -        0x10fd24ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x10fd31000 -        0x10fd36ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
           0x10fd44000 -        0x10fd46fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
           0x10fd53000 -        0x11012afef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x11013b000 -        0x110158ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x110166000 -        0x11016eff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
           0x11017c000 -        0x1101e3ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
           0x110212000 -        0x110271fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x1102b0000 -        0x1102daff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x1102ea000 -        0x110350fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x1103b2000 -        0x1103fffff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x11040b000 -        0x110415ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
           0x110422000 -        0x11044cff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
           0x11045c000 -        0x11046fff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x110487000 -        0x110489fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x11048f000 -        0x110497fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
           0x11049c000 -        0x1104a0fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x1104ac000 -        0x1104affff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x1104b7000 -        0x1104c9fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x1104eb000 -        0x110503ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x11051b000 -        0x11051cff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x110522000 -        0x110524ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x11052c000 -        0x1105b4ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x11060a000 -        0x110981ff6  com.apple.JavaScriptCore (9537 - 9537.77.1) <F588191A-25E6-31AC-A325-B7779DC6D1EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x110a7f000 -        0x110aa1fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x110abf000 -        0x110b4aff7  com.apple.SoftwareUpdate.framework (6 - 574.6) <A83587ED-67AE-3FB0-9494-6EAEFEF4B17D> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
           0x110bbd000 -        0x110bd8fff  com.apple.DistributionKit (700 - 846) <13B5FB63-634A-342D-A508-FCC13A2236A5> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
           0x110bf7000 -        0x110bfbff7  com.apple.ServerInformation (2.1.1 - 1) <7FAF2B82-FE90-3398-98D8-0F84C6FE6A4A> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x110c03000 -        0x110c99ff7  com.apple.PackageKit (3.0 - 332) <70BE1C7F-0609-32D3-9FA3-3C2CCF7FE999> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
           0x110d11000 -        0x110d1ffff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x110d32000 -        0x110d49fff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
           0x110d61000 -        0x110d73fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
           0x110d85000 -        0x110d87fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
           0x110d8e000 -        0x110dddff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x110e2b000 -        0x111074ff7  com.apple.AddressBook.framework (8.0 - 1371) <86409BC9-C2EB-3BBC-8F4D-43DCA2B23C5D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x1112e3000 -        0x111419ffd  com.apple.WebKit (9537 - 9537.77.4) <A0291E16-4ED9-30E8-B9A2-DB836778EE9E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x11150f000 -        0x1115acfff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
           0x1115ef000 -        0x11160bfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x11162b000 -        0x1118bcff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x1118ea000 -        0x11273dffb  com.apple.WebCore (9537 - 9537.77.4) <9C4E816A-0DAC-31B2-85C3-910164F3E741> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x1130ac000 -        0x1130b3ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x1130bc000 -        0x113119fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
           0x113165000 -        0x113167fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5ED

  • How can I stop Microsoft IE renaming .jar files to .zip files?

    I realise this question has been asked before on this forum, but as far as I can tell no answer has yet been posted.
    If I put a .jar file on my webserver for people to download, later versions of Internet Explorer will rename the file from xxx.jar to xxx.zip on the client's machine. Is there any way of stopping this from happening?
    It looks like the problem is caused by IE examining the contents of the file and realising it uses ZIP compression. As a result, any file that I create (not just jars) that uses Java to zip the contents, when placed on a web server, gets interpreted as a .zip file by IE regardless of its extension.
    I realise there are some workarounds such as zipping the .jar file, creating a .exe file from the .jar, telling everyone to use Firefox etc., but none of these are really acceptable or particularly efficient. I am really hoping there is something I can do to the .jar file or the compression process that will tell IE to leave the file alone.
    Thanks,
    Jo.

    You can save any kind of document on iCloud Drive, as long as the file size is smaller than 15GB.
    See:   iCloud Drive FAQ
    Create a new folder for your Office documents on iCloud Drive and drag your documents there, or select iCloud Drive in the File Chooser panel, when you save a document.

Maybe you are looking for