Send Image to browser - Firefox issue

Hi,
I have implemented the retrieval of an OrdImage from the DB and sending it to a browser using the OrdHttpJspResponseHandler:
OrdImage media = (OrdImage)result.getCustomDatum(1, OrdImage.getFactory());
handler.setPageContext(pageContext);
handler.sendImage(media);
This code works fine and the image displays on the browser, but only in Internet Explorer or Safari. When I try to retrieve the image using Firefox, the browser wants to download the image instead of displaying it. The downloaded image has the extension ".jsp". The downloaded file however, is a valid jpg-image because if I change the extension to ".jpg" I can view the image in any image viewer software.
Does anybody know how to make this work?
Markus

I have no problem on OC4J and the following JSP....
(Needs a photo table, and a URL of the form:
http://<SERVER>:8888/examples/jsp/ExampleMediaDelivery.jsp?id=1
Did you do a handler.setPageContent?
<%@ page language="java" %>
<%@ page import="oracle.ord.im.OrdHttpJspResponseHandler" %>
<%@ page import="oracle.ord.im.OrdImage" %>
<%@ page import="oracle.ord.im.OrdMediaUtil" %>
<%@ page import="oracle.jdbc.pool.OracleConnectionPoolDataSource" %>
<%@ page import="oracle.jdbc.pool.OraclePooledConnection" %>
<%@ page import="oracle.jdbc.driver.OracleConnection" %>
<%@ page import="oracle.jdbc.OraclePreparedStatement" %>
<%@ page import="oracle.jdbc.OracleResultSet" %>
<jsp:useBean id="handler" scope="page"
class="oracle.ord.im.OrdHttpJspResponseHandler"/>
<%
// Get ID of image to fetch. We could get other parameters as well
boolean imageSent = false;
String id = request.getParameter( "id" );
if ( id != null && !"".equals(id) )
// Use a try block to ensure the JDBC connection is released
OracleConnection conn = null;
try
// Get a connection from the pool. The SQL would be better done
// from a factory....
javax.naming.InitialContext ic = new javax.naming.InitialContext();
OracleConnectionPoolDataSource ds = (OracleConnectionPoolDataSource)
ic.lookup("jdbc/pool/OracleMediaPoolDS");
OraclePooledConnection pc = (OraclePooledConnection)
ds.getPooledConnection();
conn = (OracleConnection)pc.getConnection();
// Here, we go to the database and populate album with an image
// from the database, Returns null if image not found or
// image column is null (not populated).
String imgSelectSQL = "select image from photos where id = " + id;
OraclePreparedStatement stmt = (OraclePreparedStatement)
conn.prepareStatement(imgSelectSQL);
OracleResultSet rset = (OracleResultSet)stmt.executeQuery();
rset.next();
OrdImage imageProxy =
(OrdImage)rset.getORAData("image", OrdImage.getORADataFactory());
rset.close();
if ( imageProxy == null)
response.setStatus( response.SC_NOT_FOUND );
return;
// Send this image.
handler.setPageContext( pageContext );
handler.sendImage( imageProxy );
imageSent = true;
finally
// Ensure the JDBC connection is released
if (conn != null) conn.close();
// Go to not found error
if (imageSent) return;
%>
<%-- The request does not include a key to the row --%>
<html lang="EN"><head><title>ExampleMediaDelivery.jsp - malformed URL</title></head>
<body><h1>ExampleMediaDelivery.jsp - malformed URL</h1>
</body></html>

Similar Messages

  • Sending Audio to Browser - Performance issue

    Hi,
    I have written a simple jsp page that retrieves an OrdAudio object from the database and sends it to the browser. I have done this before with images, which worked perfectly. For the audio files, I simply changed the image specific code to work with audio.
    The problem is that for an approximately 100KB audio file, it takes a good two minutes for it to play in the browser. Over a broadband connection this seems pretty slow. Is there a way to improve this?
    here is part of my code:
    // create OrdAudio instance
    OrdAudio media = (OrdAudio)result.getCustomDatum(1, OrdAudio.getFactory());
    // set page context and send audio to browser
    handler.setPageContext(pageContext);
    handler.sendAudio(media);

    This doesn't sound right. One thing that caught me eye is that you are measuring the time that the audio "plays in the browser." Is there any chance that this 100kb file has a 100sec audio duration? How long should it take to play this audio file?
    One way to debug is to change the mid-tier logic to save the file to the local disk instead of sending it back on the HTTP response. You can use the method getDataInFile(java.lang.String filename) where filename is a string representing the full path to a local fiel that you have permission to write to. If you time this call, you can measure how long it takes to fetch the data from the database.
    The other issue concerns the client side HTML coding. What are you coding to accept the audio data? Browsers accept images (JPEG and GIF) natively but plugins are required to accept audio data. How is this being handled?

  • Sending Image to Browser

    Hello Guys !
    I need to load TIFF Image on Browser. Before this I'm converting to JPEG format whitout saving image on disk, just sending it to browser. This is the point: how can I format image in HTML format ?
    response.setContentType("image/jpeg");       
            ServletOutputStream sos = response.getOutputStream();
            RenderedOp src = JAI.create("fileload", "g:\\java\\00000001.TIF");
            ImageEncoder encoder = ImageCodec.createImageEncoder("JPEG",sos,null);       
            encoder.encode(src);Thanks !

    OK ! Now I see. But I don't know how to do that.
    I created a JSP FILE:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page import="obj.*"%>
    <%
      NewServlet objServlet = new NewServlet(); 
      out.println("<img src=" + ?????????? + "/>"); 
    %>
    <html>
    <head><title>Image View</title></head>
    <body>
    </body>
    </html>And have a code in NewServlet:
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {       
            response.setContentType("image/jpeg");       
            ServletOutputStream sos = response.getOutputStream();
            RenderedOp src = JAI.create("fileload", "g:\\java\\00000001.TIF");
            ImageEncoder encoder = ImageCodec.createImageEncoder("JPEG",sos,null);       
            encoder.encode(src);       
        }HOW CAN I LINK THE NEWSERVLET WITH JSP FILE ???
    PS: I HOPE I'M NOT BORING YOU !!!!
    THANKS !

  • I have a iMac destop 10.6.2 and use the AOL Mail web site with your Firefox Browser. It has worked great for years. I update the firefox to 6.1 and now I cannot send images using the Firefox browser. With Safari browser it works fine.

    I use AOL mail - http://www.aol.com/ with my Firefox 6.1 browser. Before updating aol mail worked great with firefox for years. Now when I try to send ( upload) messages with a file or images I always get the reading " there was a technical problem and I should try again". Messages with NO files or images go through just fine. I have cleared the Firefox history, the cache and cookies and the problem remained the same. The question is does this problem have something to do with the latest update ? AOL are still only familar with the 3.6 Firefox versions. Thanks

    Well I guess I was too optimistic. Since last posting I have had three hang events, one during reboot. When the login dialog box came up I clicked on it and it hung.
    However I do have a new data point. I have enabled the remote login (sshd). I have discovered that when the system hangs like I described above, I can still log in via SSH from my Windows system. The shell appears normal, but when I tried a "killall Safari" command the OS crashed hard. After a hard reset, the system hung during the login process. Again I could login remotely, and that time I executed a "sudo reboot" via the remote session. That cleared the display to all-blue but did not successfully reboot.
    Can anyone suggest what to try via the remote login to help diagnose what is happening? I am familiar with typical Linux architecture but the differences in Mac OS X are leaving me a bit disoriented.

  • Send image to browser with cfcontent not download prompt

    I'm sending an image to be downloaded using cfcontent
    <cfheader name="Content-disposition" value="attachment;filename=#getit.file#">
    <cfcontent type="image/jpg" file="#physicalpath#\#getit.file#">
    Can I have the image sent to the browser instead of a download prompt?

    If the image isn't accessible directly via HTTP, you can use CF to serve it. Your CF page would have the CFCONTENT tag as you showed in your original post, then you'd use IMG tags in other pages pointing to that CF page:
    <img src="myimage.cfm?id=whatever"/>
    You wouldn't need the CFHEADER to specify it as an attachment, though - that's only for when you want to prompt the user to download a file without having it handled natively by the browser.
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/

  • Linux Mint freezee because of firefox issues with big images

    I had few system freezes recently. I am not sure what is the cause of it, but the last one happened when I tried to open image on this website:
    http://www.wykop.pl/wpis/10937070/pojechalem-dzis-zobaczyc-co-to-za-dzielnica-dublin/
    My whole system stop responding - both screens frozen, but I could still here sounds from kodi. Could not switch to second terminal.
    I use the website on windows 7 firefox without issues. However I've got couple of freezes during upload or clicking on the images. Not sure what could cause the system to freeze, but firefox would be the process which took up to 100% of one core previously.
    UPDATE:
    Actually System freeze happened on google street view as well, so it is not website related.
    Here is my info:
    Application Basics
    Name: Firefox
    Version: 34.0
    User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:34.0) Gecko/20100101 Firefox/34.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Ghostery
    Version: 5.4.1
    Enabled: true
    ID: [email protected]
    Name: Mint Search Enhancer
    Version: 1.0
    Enabled: true
    ID: [email protected]
    Name: Stylish
    Version: 1.0.7
    Enabled: true
    ID: {46551EC9-40F0-4e47-8E18-8E5CF550CFB8}
    Graphics
    Adapter Description: X.Org -- Gallium 0.4 on AMD RV770
    Device ID: Gallium 0.4 on AMD RV770
    Driver Version: 3.0 Mesa 10.1.3
    GPU Accelerated Windows: 0/1 Basic
    Vendor ID: X.Org
    WebGL Renderer: X.Org -- Gallium 0.4 on AMD RV770
    windowLayerManagerRemote: false
    AzureCanvasBackend: cairo
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: none
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 245760
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 4
    browser.display.background_color: #CCCCCC
    browser.fixup.domainwhitelist.youtube: true
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20141127111021
    dom.mozApps.used: true
    extensions.lastAppVersion: 34.0
    media.gmp-gmpopenh264.lastUpdate: 1418517098
    media.gmp-gmpopenh264.version: 1.1
    media.gmp-manager.lastCheck: 1420986521
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1420986522
    places.history.expiration.transient_current_max_pages: 14607
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    plugin.state.flash: 0
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1419092459
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.2
    Version in use: 3.17.2
    Experimental Features
    ---------------------

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?

  • MOSS 2007 gives cross browser compatabity issue on firefox and chrome and also in higher version of IE (9 & 11)

    I am getting browser compatablity issue when MOSS 2007 is used on IE 9 & 11 and on other browsers like firefox and chrome.
    I also face issue while using the latest version of third party Intersoft WebUI 2014 R2 controls. Although the older version of Intersoft WebUI 2008 controls were working fine with MOSS in IE7 browser. But recently WebGrids are not loading
    properly and the WebCombo dropdowns doesn't work. After apporaching the Intersoft on tis issue they said their latest version of Intersoft is compatible with MOSS 2007.
    In this process of upgrade I learnt that the Intersoft Sample which comes with their setup can be run on Visual Studio 2010 and above. So I would like to know whether MOSS 2007 support VS 2010 or not.
    Accepting response on my queries.

    You've posted this in the wrong forum. 2007 questions should go into the SharePoint legacy forum.
    This thread discussed 2007 browser support:
    https://social.technet.microsoft.com/Forums/en-US/a3131e1f-b78b-46bd-bc46-750866b280bd/sharepoint-2007-ie-browser-compatability
    Visual Studio 2010 will let you build tools for SharePoint 2007 however I'm not familiar with what you're trying to do or what intersoft webui does.

  • I.E. keeps trying to download after I use my browser is this a Firefox issue?

    While using Firefox I go to my home page at MSN for my emails and Internet Explorer tries to download each time and I have to delete the download before it starts. Is this a Firefox issue or MSN?
    Thank you

    Make sure you have cookies enabled and clear your cache.  If it continues to fail try using a different browser.

  • We have a web site with a valid Certificate, however Firefox is the only browser that issues a warning that certificate is invalid.

    We have a valid certificate on our web site. However Firefox issues an error that the connection is untrusted. I have verified that the certificate is good using www.digicert.com/help. The other browsers, IE7,8,9, Google Chrome, and Safari have no issue with the site. Any input would be appreciated.

    Try going into Settings > Mail, Contacts, Calendars > select the account > account name , tap on SMTP (under the 'Outgoing Mail Server' heading) and then tap on your Primary Server and try entering your email account and password and see if it then works

  • Yahoo mail keeps making sign in over & over & over, when trying to send a mssg, read a mssg,etc. Yahoo says it's a firefox issue. How do I fix this? Thanks!

    Yahoo mail replied this is a firefox issue. It will not let me stay logged in & makes me re-login repeatedly. Thanks.

    This can be caused by the connection settings having the default setting.
    Try to select the "No Proxy" setting instead of the default "Use the system proxy settings" setting.
    *Tools > Options > Advanced : Network : Connection > Settings
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel

  • Applet does not get client certificate from browser (Firefox, IE7)

    I'm writing a web service which runs Tomcat through Apache. One critical requirement is that the service be able to invoke certain device drivers on the end user's machine. Fortunately, there is a Java API for this, so this requirement can be fulfilled using an applet.
    Here's the problem. This is a B2B application, so we're using SSL and requiring client authentication. I'm no web security guru, but I managed to get SSL set up through Apache (with a self-signed certificate for now; we'll get a real one from a real CA when we're ready to go to production). I also managed to set up client authentication by creating my own CA and generating a client certificate, which I then copied to my test client (Win XPSP2) and imported into both Firefox (2.0.0.15) and IE (6.0.2900). The applet is signed with a real certificate, and that causes no problems. And all of the pages for my web service work as expected.
    All except one. The page which is supposed to load the applet pops a dialog stating 'Identification required. Please select certificate to be used for authentication', and presents a list of zero certificates.
    Actually, I get this dialog in Firefox on my XPSP2 box, and also when I test on a Vista Home Premium box running IE 7.0.6000. Puzzlingly, this behavior does NOT occur on my XPSP2 box when running through IE 6.0. It seems that with XPSP2 and IE 6.0, the JVM can manage to obtain the required client certificate from the browser and pass it along to Apache, but the JVM can't do this when running in Firefox or in IE 7.0 on Vista.
    I have gone to the Java Control Panel and verified that the 'Use certificates and keys in browser keystore' option is selected on both boxes.
    I've done a fair amount of research for this (including in this forum) and see that this appears to be a chronic difficulty with applets. What makes it worse is that I don't think I can use the standard workaround, which is to download the applet from a different host/virtual host, because the applet needs to communicate with the web service. Since we have the additional layer of Tomcat container-managed user authentication, the applet needs to be communicating with the server using the same session token as everything else.
    So at this point, I'm stuck. Does anyone know a solution to this problem? Two thoughts (I'm reaching at straws here):
    1) I have the certificate imported in both Firefox and IE as a 'personal' certificate. Is there someplace else I can put it so the JVM will know how to find it? A rather old thread in this forum mentioned something about setting properties in the Java Control Panel, but I see no place in the JCP to specify such properties, so I'm guessing that solution is no longer operative.
    2) I'm using a trick I found on the internet to make the applet load cleanly with both Firefox and IE, namely, I'm using the <OBJECT> tag to specify the applet class and codebase for IE, and then using <COMMENT><EMBED ... /></COMMENT> within the <OBJECT> declaration to specify the information for Firefox. Is there some other way of doing the markup that will give the JVM a hint that it should get a certificate from the browser?
    BTW . . . I would hate to drop support for Firefox, but if someone has an IE-only solution, I'll take it. Unfortunately, I reckon a Firefox-only solution would not fly.
    Thanks all.

    My applet is also signed by a valid certificate. The question of whether the applet is signed/self-signed/unsigned >isn't an issue --- I just wanted you to make sure the Applet runs because it is a know valid Java2 Applet that is 100% signed properly and verified to run.
    This eliminates the possibility that it is a JVM issue. However after reading your message further I am afraid
    it is not relevant to your issue.
    due to the client authentication, my browser (Firefox, IE7) refuses to even download the applet.
    I went to your site, and I can see your applet in both Firefox and IE6. However, I don't believe your site is set up >quite like mine, because it appears I can run your applet whether I have imported your X509 certificate or not. What I >did was:If that is true we are all dead :) No I think you just missed the cert in the IE databse. It doesn't have to be in the
    Applet database to function. Surprise!
    Check your IE/tools/internet options/content tab/certificates/trusted root certification authorities.
    I then opened the Java control panel and verified that the certificate isn't listed there, either. So unless the certificate >is being cached/read from some other location (which could be, this certificate stuff is largely black magic to me), >then your server isn't requiring client authentication, either accidentally or by design.No HyperView is a valid java2 Applet and actually writes to a file "hyperview.dat" though it is probably empty.
    If you click on a component in the view and then on the view and type "dumpgobs" it shoud write out some data about the current graphics objects so you can see it has complete read/write access..
    Further it opens up a complete NIO server ands starts listening for connections on a random port
    (Echoed in your java console) You can connect to it with telnet and watch impressive ping messages all day :)
    This all goes back to a few years BTW back before there was a plugin and there was only Netscape & IE.
    There are actually 2 certificate databases and what loads where depends on which type of cert you are using. Now self signed or not doesn't matter but what does matter is the type of certificate. IE: is it RSA/DSA/Sha1
    etc. The Netscape DB was a Berkley DB and MS used whatever they use. The Cert is a DSA/Sha1 cert
    which I like the best ATM as it (X fingers it stays so) always has worked.
    Sadly that tidbit doesn't help you either I am afraid.
    What I'm trying to do is require client authentication through Apache by including the following markup in a virtual >host definition:
    SSLCACertificateFile D:/Certificates/ca.crt
    SSLVerifyClient require
    SSLVerifyDepth 1You got me there I avoid markup at all costs and only code in C java and assembler :)
    Now unless I am wrong I think you are saying that you want the Applet to push the certificate to the server
    automatically and I don't think this happens. Least I have never heard of this happening from an Applet automatically.
    On my client machine, I have a certificate which was generated using OpenSSL and the ca.crt file listed. Testing >shows that the server is requiring a certificate from the client, and the web browser is always providing it.
    The problem is that when the browser fires up the Java plugin to run an applet, there is not sufficient communication >between the browser and the plugin so that the plugin can obtain the certificate from the browser and provide it to >the server.
    So the server refuses to send the applet bytecode to the JVM, and we're stuck.In terms of implementation ease I think you may have the cart before the horse because I think it would be far easier to run an Applet in the first place to do the authentication, and then send, for example, a jar file to bootstrap and run
    (or some classes) in the event the connection is valid. Then again one never knows it all and there may be some classes which enables the plugin as you wish. I have never heard of this being done with the plugin the way you suggest.
    I am thinking maybe there is another method of doing this I do not know.
    Did you try pushing the cert via JavaScript/LIveConnect?? That way it could run before the Applet and do the authentication.
    Maybe someone else has other ideas; did you try the security forum??
    Sorry but I am afraid that is not much help.
    I did snarf this tidbit which may have some relevance
    The current fix for this bug in Mantis and 1.4.1_02 is using JSSE API, Here are the step:
    In Java control panel, Advanced tab -> Java Runtime Parameters, specify:
    -Djavax.net.ssl.keyStore=<name and path to client keystore file>
    -Djavax.net.ssl.keyStorePassword=<password to access this client keystore file>
    If it is a PKCS12 format keystore, specify:
    -Djavax.net.ssl.keyStoreType=PKCS12
    In our future JRE release 1.5, we will create our own client authentication keystore file for JPI and use that for client authentication, for detail info, please see RFE 4797512.
    Dennis
    Posted Date : 2005-07-28 19:55:50.0Good Luck!
    Sincerely:
    (T)
    Edited by: tswain on 23-Jul-2008 10:07 AM

  • Browser crashing issues.

    I have late 2009 iMac with 3.06 GHz Intel Core 2 Duo running Mountain Lion. I'm having browser crashing issues (Safari, Chrome, and Firefox are all crashing.) Could someone take a look at this Safari Problem Report and let me know if there's anything I can do. Thanks in advance.
    Kevin
    Process:         WebProcess [186]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.30.1)
    Build Info:      WebKit2-7536030001000000~9
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [166]
    User ID:         501
    Date/Time:       2013-08-20 01:43:28.695 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          23752 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  28034 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      1C6C344A-AE19-F6BB-72DC-CC720674AFEE
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000038
    VM Regions Near 0x38:
    -->
        __TEXT                 0000000100460000-0000000100461000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore                0x00007fff91c72600 JSC::SlotVisitor::copyAndAppend(void**, unsigned long, JSC::JSValue*, unsigned int) + 208
    1   com.apple.JavaScriptCore                0x00007fff91c463c0 JSC::JSObject::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 432
    2   com.apple.JavaScriptCore                0x00007fff91c3ebdb JSC::JSFunction::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 27
    3   com.apple.JavaScriptCore                0x00007fff91c72158 JSC::SlotVisitor::drain() + 312
    4   com.apple.JavaScriptCore                0x00007fff91c1b51c JSC::Heap::markRoots(bool) + 1452
    5   com.apple.JavaScriptCore                0x00007fff91c1abf8 JSC::Heap::collect(JSC::Heap::SweepToggle) + 152
    6   com.apple.JavaScriptCore                0x00007fff91c19a0b JSC::DefaultGCActivityCallbackPlatformData::timerDidFire(__CFRunLoopTimer*, void*) + 315
    7   com.apple.CoreFoundation                0x00007fff8df14804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    8   com.apple.CoreFoundation                0x00007fff8df1431d __CFRunLoopDoTimer + 557
    9   com.apple.CoreFoundation                0x00007fff8def9ad9 __CFRunLoopRun + 1529
    10  com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    11  com.apple.HIToolbox                     0x00007fff8a0eeeb4 RunCurrentEventLoopInMode + 209
    12  com.apple.HIToolbox                     0x00007fff8a0eec52 ReceiveNextEventCommon + 356
    13  com.apple.HIToolbox                     0x00007fff8a0eeae3 BlockUntilNextEventMatchingListInMode + 62
    14  com.apple.AppKit                        0x00007fff8e46e533 _DPSNextEvent + 685
    15  com.apple.AppKit                        0x00007fff8e46ddf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    16  com.apple.AppKit                        0x00007fff8e4651a3 -[NSApplication run] + 517
    17  com.apple.WebCore                       0x00007fff8cb684ff WebCore::RunLoop::run() + 63
    18  com.apple.WebKit2                       0x00007fff93bdf462 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    19  com.apple.WebKit2                       0x00007fff93ba5bfd WebKitMain + 285
    20  com.apple.WebProcess                    0x0000000100460e7b 0x100460000 + 3707
    21  libdyld.dylib                           0x00007fff8ac1f7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8f1e7d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8fa25dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8fa259ee _dispatch_mgr_thread + 54
    Thread 2:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91aebb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff91d0ebfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff91d2425f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 3:: JavaScriptCore::Marking
    0   com.apple.JavaScriptCore                0x00007fff91c13aae JSC::FunctionExecutable::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 142
    1   com.apple.JavaScriptCore                0x00007fff91c72158 JSC::SlotVisitor::drain() + 312
    2   com.apple.JavaScriptCore                0x00007fff91c71a26 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 294
    3   com.apple.JavaScriptCore                0x00007fff91c718b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91d2425f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff94917546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff94975562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 5:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff8df07dd1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff8cb7d5e1 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore                0x00007fff91d2425f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8f1e7322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8df38f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 7:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91aebb2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8cba2d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8c0f312a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91d2425f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 8:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91aebb2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8cba2d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8c0f312a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91d2425f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 9:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff8df07dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff90b6e2d6 listenOnDelegatePort + 403
    7   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 10:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff8df07dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff90b6e771 listenOnNotificationPort + 371
    7   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 11:: com.apple.coremedia.networkbuffering
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff8df07dd1 CFRunLoopRun + 97
    6   com.apple.CoreMedia                     0x00007fff883f9830 FigThreadGlobalNetworkBufferingRunloop + 21
    7   com.apple.CoreMedia                     0x00007fff883fb379 figThreadMain + 382
    8   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 12:: com.apple.coremedia.asyncio
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff883faea8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8fdd46a1 0x7fff8fdba000 + 108193
    4   com.apple.CoreMedia                     0x00007fff883fb379 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 13:: com.apple.coremedia.player.async
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff883faea8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8fe13caf 0x7fff8fdba000 + 367791
    4   com.apple.CoreMedia                     0x00007fff883fb379 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 14:: AQClient
    0   libsystem_kernel.dylib                  0x00007fff8f1e5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f1e4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8def4233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8def9916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8def90e2 CFRunLoopRunSpecific + 290
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff8b11670e GenericRunLoopThread::Entry(void*) + 204
    6   com.apple.audio.toolbox.AudioToolbox          0x00007fff8b1165c5 CAPThread::Entry(CAPThread*) + 175
    7   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 15:: com.apple.coremedia.audioqueue.source
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff883faea8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8fdebbda 0x7fff8fdba000 + 203738
    4   com.apple.CoreMedia                     0x00007fff883fb379 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 16:: com.apple.coremedia.audiomentor
    0   libsystem_kernel.dylib                  0x00007fff8f1e70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88bdffe9 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff883faea8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8fe34f97 0x7fff8fdba000 + 503703
    4   com.apple.CoreMedia                     0x00007fff883fb379 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff88bdb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff88bc81e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8f1e76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff88bddf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff88bddd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff88bc81d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xffff000000000002  rbx: 0x0000000162f5bde0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000000000001  rsi: 0x0000000000000000  rbp: 0x00007fff5f79d4a0  rsp: 0x00007fff5f79d440
       r8: 0x000000000000006c   r9: 0x000000015b3a6400  r10: 0x000000014adf4600  r11: 0x000000016417bda8
      r12: 0x000000010054ce28  r13: 0x000000010054ce28  r14: 0x0000000000000001  r15: 0x000000000000004a
      rip: 0x00007fff91c72600  rfl: 0x0000000000010246  cr2: 0x0000000000000038
    Logical CPU: 0
    Binary Images:
           0x100460000 -        0x100460fff  com.apple.WebProcess (8536 - 8536.30.1) <F967F09F-969C-3788-9376-7B4067F402B4> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x100465000 -        0x100465fff  WebProcessShim.dylib (7536.30.1) <15AC7990-1B63-3AD9-905F-7331C901A578> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x141bb4000 -        0x141bcafff  com.apple.WebInspector (8536 - 8536.30) <7DD903D1-505E-34D3-835A-15BE44CC49B6> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x143e82000 -        0x143e8ffff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x143e96000 -        0x143ec1fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x143eca000 -        0x143ed3fe7  libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x144368000 -        0x144369ff7  ATSHI.dylib (341.1) <6860AB9D-27E6-3516-91BF-05E4B9E8A8F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x144639000 -        0x14464fff7  com.apple.webcontentfilter.framework (3.1 - 5) <B9C18026-4D06-3C13-8842-15C190E214E5> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x144f10000 -        0x1450cefff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x145105000 -        0x145275fff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x1452ad000 -        0x145565fff  com.apple.ATIRadeonX2000GLDriver (8.12.47 - 8.1.2) <2763421F-F64B-39FD-8DD2-60DDDEB246F3> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x14b916000 -        0x14b91bfff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <586F677E-D0F8-33B2-B6ED-41ED81C9EED9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x14e253000 -        0x14e270ff7  com.apogee.DuetUSBPlugIn (1.15.21 - 1.15.21) <126A74F2-C55A-37A2-8594-8F279F077E90> /System/Library/Extensions/DuetUSBPlugIn.bundle/Contents/MacOS/DuetUSBPlugIn
           0x15289d000 -        0x1529f2ff7  com.apple.audio.units.Components (1.9 - 1.9) <8384AE1A-7C79-3F03-81E0-9A15E09094D2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x159abc000 -        0x159ccbff7  com.apple.audio.codecs.Components (3.1 - 3.1) <352F4973-BDA4-3D62-A4A6-080B9AFB291F> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
        0x7fff60060000 -     0x7fff6009493f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff882e0000 -     0x7fff88309fff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
        0x7fff88317000 -     0x7fff88319fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8831a000 -     0x7fff8831bfff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff8831d000 -     0x7fff8837cfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff883db000 -     0x7fff88426fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff88427000 -     0x7fff8842efff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8842f000 -     0x7fff88433ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88434000 -     0x7fff88490fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff88491000 -     0x7fff88497fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8849a000 -     0x7fff884c6fff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff885d5000 -     0x7fff885d6fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff885d7000 -     0x7fff88603ff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff88604000 -     0x7fff8863cfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff8863d000 -     0x7fff88b44ff7  com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff88b45000 -     0x7fff88b50ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff88b51000 -     0x7fff88b8cfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff88b8d000 -     0x7fff88b8dfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88b9a000 -     0x7fff88bc6fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff88bc7000 -     0x7fff88c93ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff88d17000 -     0x7fff88d32ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff895e9000 -     0x7fff895eefff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff895ef000 -     0x7fff8960ffff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89655000 -     0x7fff89664ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff89665000 -     0x7fff8967ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <5637F52D-3AB9-38FD-B851-265B9F5A2FE8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff89680000 -     0x7fff896cfff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff896d0000 -     0x7fff8974fff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8975d000 -     0x7fff89852fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff89853000 -     0x7fff89857fff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89858000 -     0x7fff89863ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff89864000 -     0x7fff89962fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff89963000 -     0x7fff89966fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff899a5000 -     0x7fff89b53fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89b54000 -     0x7fff89b56ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff89b57000 -     0x7fff89dd8fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89dd9000 -     0x7fff89deffff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff89df0000 -     0x7fff89e07fff  com.apple.CFOpenDirectory (10.8 - 151.10) <F7AD9844-559A-366E-8192-BB4FCF9EE7A3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff89e08000 -     0x7fff89f93fff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff89f94000 -     0x7fff89f95ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff89f96000 -     0x7fff89fc8fff  com.apple.framework.Admin (12.1 - 12.1) <2DA7835C-D3AB-3512-BDC1-03F437270772> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff89fc9000 -     0x7fff8a08eff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a08f000 -     0x7fff8a3bffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8a3ec000 -     0x7fff8a446ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a447000 -     0x7fff8a468ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8a469000 -     0x7fff8a49dfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8a49e000 -     0x7fff8a50bff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8a898000 -     0x7fff8a91aff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8a929000 -     0x7fff8a9c4fff  com.apple.CoreSymbolication (3.0 - 117) <50716F74-41C2-3BB9-AC16-12C4D4C2DD1E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8a9c5000 -     0x7fff8a9dbfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8aa5c000 -     0x7fff8aa8afff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8aa8b000 -     0x7fff8aa91ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8aa92000 -     0x7fff8ab8ffff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8ab90000 -     0x7fff8abcafff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8ac1d000 -     0x7fff8ac20ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ad90000 -     0x7fff8ad95fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8ad96000 -     0x7fff8aeb6fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8aeb7000 -     0x7fff8aec5ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff8b10f000 -     0x7fff8b261fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8b262000 -     0x7fff8b2a5ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8b2a6000 -     0x7fff8b2f2ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8b2f3000 -     0x7fff8b3f0ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8b3f1000 -     0x7fff8b430ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b431000 -     0x7fff8b4beff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8b4bf000 -     0x7fff8b71aff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8b71b000 -     0x7fff8b7afff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8b7c1000 -     0x7fff8b850fff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
        0x7fff8b8e9000 -     0x7fff8b8edfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b8fa000 -     0x7fff8b909fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b90a000 -     0x7fff8b916ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <5AA375C4-9FD4-3F4F-849D-0329E0D5DC04> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b917000 -     0x7fff8c0befff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8c0bf000 -     0x7fff8c0c9fff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
        0x7fff8c0ca000 -     0x7fff8c0cefff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8c0d4000 -     0x7fff8d093ff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d094000 -     0x7fff8d358fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8d3c9000 -     0x7fff8d431fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d50a000 -     0x7fff8d546fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8d547000 -     0x7fff8d54efff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8d5aa000 -     0x7fff8d5abfff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff8d5ac000 -     0x7fff8d5f0fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8d5f1000 -     0x7fff8d634ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8d635000 -     0x7fff8d8a2ff7  com.apple.RawCamera.bundle (4.07 - 696) <CCB97D78-309C-3CD9-B499-81192069A333> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d8dc000 -     0x7fff8d8e6ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8d8e7000 -     0x7fff8d8effff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8d8f0000 -     0x7fff8d93dfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8d93e000 -     0x7fff8da68ff7  com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8da69000 -     0x7fff8dad1ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8dad2000 -     0x7fff8dad7fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8dad8000 -     0x7fff8dae6fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8dae7000 -     0x7fff8dafaff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8dafb000 -     0x7fff8dafbfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8dafc000 -     0x7fff8db44fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8db45000 -     0x7fff8db45fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8db46000 -     0x7fff8dbf9ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8dbfa000 -     0x7fff8dbfbfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8dbfc000 -     0x7fff8dea0ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8dea1000 -     0x7fff8dec3ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8dec4000 -     0x7fff8e0aeff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8e0af000 -     0x7fff8e0b2fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8e0b3000 -     0x7fff8e0b7ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8e0b8000 -     0x7fff8e0dffff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e132000 -     0x7fff8e13dfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8e13e000 -     0x7fff8e13efff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8e13f000 -     0x7fff8e189ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e18a000 -     0x7fff8e2a4fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8e2a5000 -     0x7fff8e2a8ff7  com.apple.LoginUICore (2.1 - 2.1) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8e2c1000 -     0x7fff8e316ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e317000 -     0x7fff8e318ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8e319000 -     0x7fff8ef46fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ef47000 -     0x7fff8ef49ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8ef91000 -     0x7fff8f117fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8f118000 -     0x7fff8f123fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8f124000 -     0x7fff8f17dff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f17e000 -     0x7fff8f1a0ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8f1d3000 -     0x7fff8f1d4fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8f1d5000 -     0x7fff8f1f0ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f1f1000 -     0x7fff8f231ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f232000 -     0x7fff8f239fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8f23a000 -     0x7fff8f291ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8f2fe000 -     0x7fff8f31dff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8f31f000 -     0x7fff8f4bafef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f4d0000 -     0x7fff8f4d4fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8f535000 -     0x7fff8f53bfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8f543000 -     0x7fff8f545fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8f546000 -     0x7fff8f597ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f598000 -     0x7fff8f598fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8f5de000 -     0x7fff8f67cff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f68c000 -     0x7fff8f8c1ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8f8c2000 -     0x7fff8f8f9ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff8f8fa000 -     0x7fff8fa13fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8fa14000 -     0x7fff8fa14fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8fa15000 -     0x7fff8fa20ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8fa21000 -     0x7fff8fa36ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8fa5a000 -     0x7fff8fa66fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8fa67000 -     0x7fff8fa72ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <8AE56B58-A521-3F29-AAE2-10ADADBD30EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8fa73000 -     0x7fff8fa75ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8fa76000 -     0x7fff8fac5fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8fac6000 -     0x7fff8fb60fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8fb61000 -     0x7fff8fbb8ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8fc72000 -     0x7fff8fce0ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8fce1000 -     0x7fff8fd2cfff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8fdba000 -     0x7fff90071ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff9007b000 -     0x7fff9009cfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff9009d000 -     0x7fff901fbfef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff901fc000 -     0x7fff901fdff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff901fe000 -     0x7fff90225ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E8DA9FDB-3A58-3934-A7C9-2728B683D741> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff90226000 -     0x7fff90260ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90261000 -     0x7fff9026bfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff9026c000 -     0x7fff90689fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff90900000 -     0x7fff9090dff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9090e000 -     0x7fff9090effd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9090f000 -     0x7fff90916fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90940000 -     0x7fff90a1afff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff90a1b000 -     0x7fff90a1ffff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff90a20000 -     0x7fff90a20fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff90a21000 -     0x7fff90a32ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff90a33000 -     0x7fff90a3ffff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff90ae9000 -     0x7fff90b45ff7  com.apple.Symbolication (1.3 - 93) <C0FEE99C-6AD9-35D7-9B41-574F25F843B9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff90b46000 -     0x7fff90b59ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff90b5a000 -     0x7fff90ccbff7  com.apple.QTKit (7.7.1 - 2599.31) <E088A52C-914C-3BD7-AD50-CD40CA5D1308> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff90ccc000 -     0x7fff90d2fff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff90d30000 -     0x7fff90d86fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff90d87000 -     0x7fff90d99ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff90d9a000 -     0x7fff90d9afff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff90d9b000 -     0x7fff90dc9ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff90dca000 -     0x7fff91206fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff91207000 -     0x7fff9120fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff91210000 -     0x7fff91607fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff9160e000 -     0x7fff91625fff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff91626000 -     0x7fff91629fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff9162a000 -     0x7fff9182afff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff9182b000 -     0x7fff91adafff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff91ae5000 -     0x7fff91d80ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91e73000 -     0x7fff91e80fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff91e81000 -     0x7fff91f8cfff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff91fde000 -     0x7fff9296e4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff9296f000 -     0x7fff9297dff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff9297e000 -     0x7fff929dafff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff929db000 -     0x7fff92a0cff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff92a0f000 -     0x7fff92a2eff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92a2f000 -     0x7fff92a31fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff92a48000 -     0x7fff92a6dff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff92a6e000 -     0x7fff92b14ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <FFDDD2D8-690D-388F-A48F-4750A792D2CD> /System/Library/Frameworks/CoreServices.framework/V

    This crash is caused by a hardware fault, in every case I've seen.
    If your model has user-replaceable memory, and you've upgraded the memory modules, reinstall the original memory and see whether there's any improvement. Be careful not to touch the gold contacts. Clean them with a mild solvent such as rubbing alcohol. Aftermarket memory must exactly match the technical specifications for your model. Memory that is either slower or faster than specified may be incompatible.
    The Apple Hardware Test or Apple Diagnostics, though generally unreliable, will sometimes detect a fault. A negative test can't be depended on. Run the extended version of the test.

  • Can't Send Images

    For the past week or so I haven't been able to send images from skype. Sending mp3 files and documents works fine, but when I try to send a picture it's stuck on the sending image thumbnail (as the picture in the attachment)
    I've read a lot of post about this in the past few days, but I haven't found anything on this particular issue.Any help would be appreciated, thanks.

    ruwim wrote:
    Try again to reset all Internet Explorer settings: http://support.microsoft.com/kb/923737 Next reset LAN settings: Open Internet Explorer. Go to Tools -> Internet Options -> Connections -> LAN settings. Make sure that the only option selected is “Automatically detect settings”. Next clear all Temporary Internet Files: Open Internet Explorer -> Tools -> Internet Options -> General. In the section “Browsing history” press the “Settings” button and in the next window the “View files” button. Delete all files from the Temporary Internet Files folder. I've tried all of those steps, but it still isn't working.

  • Why does firefox (updated) on windows 7 NOT send a hotllink (must copy/paste),when using the 'send link' feature,whereas firefox on XP always sends a hotlink?

    Question
    why does firefox (updated) on windows 7 NOT send a hotllink (must copy/paste),when using the 'send link' feature,whereas firefox on XP always sends a hotlink? This feature has always worked perfectly on all my windows XP computers,but not at all on any of my versions of firefox on windows 7.How can i fix this? Why does it not work?

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. You can also attach a screenshot on this page below '''Post a Reply''' > '''Add images: Browse ...'''

  • Images downloaded using firefox (android) not recognised properly - cant attach pics for mms

    Hey
    I have been experiencing a problem on my HTC one x where images downloaded through firefox for android will not behave properly in my phone. Attempts to attach pictures to text messages are met with a pop up saying "unable to attach media".
    Inspecting the details of these pictures in the gallery app showed that the file type field is blank (hence being unable to attach it to a mms, another symptom is that gifs display as a still image of the first frame of the gif).
    Inspecting these pictures using a file browsing app shows that they all have the correct extensions for their file type. Renaming the pictures (without changing the extension) within the file browser seems to fix the problem - their file type shows up correctly within the gallery app, pics can be sent via mms and gifs become animated.
    I am only experiencing this issue with firefox, the same images downloaded with different browsers all work perfectly - i dont have to rename them to get my phone to recognize them properly.
    The problem may have something to do with the method that firefox uses to download files - every file i have downloaded using other browsers shows up in my phones stock "downloads" app, while files downloaded through firefox do not (it keeps its own list within the app itself)
    Any ideas as to the cause of this problem?

    Talked with a co-worker. This is https://bugzilla.mozilla.org/show_bug.cgi?id=842037
    The workaround is to long tap on the image and select share and then choose message.

Maybe you are looking for

  • Where can I get an OS-X 10.4 full install (black) DVD?

    I've recently been given an old G4 17" iMac with 10.2.8 on it. I would like to upgrade this but only to 10.4 since I need a machine which runs "Classic". Our original Mini cam with 10.4 but I cannot find the install DVD Looking at eBay they seem to b

  • Documents in Payment block in F110 run

    Dear friends, I have a specific query in the F110 run, wherein the documents which are having payment block appear in the exception list of the F110 run. Is there any functionality in the Automatic Payment program, wherein i can avoid these blocked i

  • Error adding file type item using portal api

    We are using portal 3.0.8. I can add text and url type items fine but when i try to add a file type item, i get following error. ERROR at line 1: ORA-29532: Java call terminated by uncaught Java exception: java.lang.SecurityException: relative pathna

  • Kernel Panic in Mountain Lion OSX

    Hello everybody! Ha some time ago I had problems with my iMac locking. It simply locks the screen, keyboard and mouse, for no apparent reason. The last two times he generated an error log. Follows the last log generated: Interval Since Last Panic Rep

  • External computers are trying to connect to my pc, I've noticed a hole in my connection and manipulation of my firewall-how do I fix this?

    I am having hangs and when I went into my control panel my firewall settings were changed, an external link to my pc had been setup. My remote access connections are set to off, what can I do to prevent this? I'm using SSL Google connection to search