10.1.2 Displays grey, blank page (Fixed with 10.1.3)

Adobe 10.1.2 I have the blank grey screen
show large images however is already checked...
what else could cause this?/

Here's a story of how I got this working... kind of a mystery still, but that's what we have to deal with all the time, isn't it?
I had the same problem, installing 10.1.2 caused a blank screen, or a stuck progress bar, when loading PDFs in IE9. The PDFs in question are dynamically generated with IText, embedded in html via a <object> tag, and served up via Jboss (Tomcat) 5.1.0.  There were no issues in Firefox.  We also had several users report similar issues with IE8.
What seemed to fix it (at least on my local environment) for me was to, add a Content-Length header with the file size, remove the compressableMimeType="application/pdf" in the server configuration.
However, on a different environment, it still wasn't working (grey screen, stuck progress bar in IE), so I set a debug point.  The download method was being called 3 times - I had several Cache-Control headers set in an attempt to prevent caching.  Removing these headers seemed to help, now the download method is being called only once, or sometimes twice.  I found a MS article I found that seemed relevant: http://support.microsoft.com/kb/293792
Possibly the multiple-request, user-agent='contype' thing with IE is really screwing up the new version of the plug-in.  I read the MS article, added a check for user-agent='contype' and returning only the Content-Type header instead of the whole document -- seemed to improve things.
However several PDF form elements were still screwed up - missing submit button, combo box fields with missing options.
Latest update:  This combo of configurations seems to be working on both firefox and IE9 with reader 10.1.12:
1. removed content-length, it was causing other problems
2. added check for user-agent='contype' and returning only headers
3. removed cach-control headers
4. compressableMimeType = 'application/pdf' is enabled in Tomcat config
My hunch is #2 was the real problem, would need further testing to know for sure.

Similar Messages

  • Jsp files displaying a blank page

    Hi I have integrated tomcat5 and Apache 2 using mod_jk in Fedora 7.
    I had no problem starting Tomcat5 and Apache 2 server. The problem is when I tried to browse my
    jsp file.. it display a blank page. I try to see the log files but there is no error related to this.
    here is my jsp file..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="" %>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Hello World JSP</title>
    </head>
    <body>
    <h1><% out.println(" Hello world JSP!"); %></h1>
    </body>
    </html>please help me.. Thanks in advance for your help..

    here is my new HelloWorld.jsp..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Hello World JSP</title>
    </head>
    <body>
    <h1><% out.println(" Hello world JSP!"); %></h1>
    </body>
    </html>
    it still display a blank page.
    here is my context path..declared in server.xml
    <Context path="" docBase="/var/www/myweb" debug="0" reloadable="true"/>
    My HelloWorld.jsp is save in /var/www/myweb
    what is the problem? thanks..

  • Struts -- LogonView.jsp Displays A Blank Page

    I am using the Struts. My LogonView.jsp displays a blank page. I have no idea why nothing is written while the MessageResources.properties file is found. (I would have gotton HTTP Status 500 if the MessageResources.properties is not found or the value of the corresponding key in the bean:message tag cannot be picked up.)
    Here is my MessageResources.properties file:
    button.submit=Send for Verification
    button.reset=Clear the Form
    logonForm.userId=User Name
    logonForm.password=Password
    logonForm.confirm_password=Confirm Password
    logonForm.emailAddress=E-mail Address
    logonForm.hear_from_us=How did you hear about the StudentScholar.org?
    logonForm.subscriber=Subscribe to the StudentScholar.org newsletter
    logonForm.send_updates=Occassionally send me updates
    logonForm.fname=First Name
    logonForm.lname=Last name
    logonForm.streetAddress=Street Address
    logonForm.city=City
    logonForm.state=State
    logonForm.zip=Zip Code
    logonForm.country=Country
    logonForm.phone=Telephone
    logonForm.degree_type=Degree Type(s)
    logonForm.major=Majoring Field(s)
    logonForm.cumulativeGPA=Cumulative GPA
    logonForm.collegeID=College ID
    logonForm.permissionID=Permission ID
    logonForm.last_logon_date=Last Logon Date
    heading.logon=<H2>Enter your user information</H2>
    title.logon=Logon Screen
    error.invalid.logon=<li>The User ID and/or Password are invalid. Please try again.</li>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    title.mainmenu=Welcome
    heading.mainmenu=<H1>Welcome!</H1>
    label.userType=<H2>You are authorized to use this system as a</H2>
    errors.prefix=<LI>
    errors.suffix=</LI>
    errors.footer=</UL><hr>
    errors.minlength={0} can not be less than {1} characters.
    errors.required={0} is required.
    errors.date={0} is not a date.
    errors.double={0} must be an double.
    errors.email={0} is an invalid e-mail address.Here is my LogonView.jsp:
    <!-- LogonView.jsp -->
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <html>
    <head><title><bean:message key="title.logon" /></title>
    <html:javascript formName="logon" />
    </head>
    <body bgcolor="white">
    <bean:message key="heading.logon" />
    <html:errors />
    <html:form action="/logon" onsubmit="return validateLogon(this)" >
    <table border="0" width="100%">
        <tr>
            <th aligh="right">
               <bean:message key="logonForm.userId" />:
            </th>
            <td align="left">
            <html:text property="userId" size="10" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
               <bean:message key="logonForm.password" />:
            </th>
            <td align="left">
            <html:password property="password" size="10" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
               <bean:message key="logonForm.confirm_password" />:
            </th>
            <td align="left">
            <html:password property="confirm_password" size="10" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.emailAddress" />:
            </th>
            <td align="left">
            <html:text property="emailAddress" size="25" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.hear_about_us" />:
            </th>
            <td align="left">
               <html:text property="hear_about_us" size="25" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
               <bean:message key="logonForm.subscriber" />:
            </th>
            <td align="left">
               <html:checkbox property="subscriber" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.send_updates" />:
            </th>
            <td align="left">
               <html:checkbox property="send_updates" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
               <bean:message key="logonForm.fname" />:
            </th>
            <td align="left">
            <html:text property="fname" size="15" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.lname" />:
            </th>
            <td align="left">
            <html:text property="lname" size="15" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.streetAddress" />:
            </th>
            <td align="left">
            <html:text property="streetAddress" size="50" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.city" />:
            </th>
            <td align="left">
            <html:text property="city" size="15" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.state" />:
            </th>
            <td align="left">
               <html:text property="state" size="25" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.zip" />:
            </th>
            <td align="left">
            <html:text property="zip" size="10" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.country" />:
            </th>
            <td align="left">
            <html:text property="country" size="25" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.phone" />:
            </th>
            <td align="left">
            <html:text property="phone" size="15" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.degree_type" />:
            </th>
            <td align="left">
            <html:textarea property="degree_type" rows="9" cols="90" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.major" />:
            </th>
            <td align="left">
            <html:text property="major" size="15" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.cumulativeGPA" />:
            </th>
            <td align="left">
            <html:text property="cumulativeGPA" size="4" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.collegeID" />:
            </th>
            <td align="left">
            <html:text property="collegeID" size="5" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.permissionID" />:
            </th>
            <td align="left">
            <html:text property="permissionID" size="5" />
         </td>
        </tr>
        <tr>
            <th aligh="right">
            <bean:message key="logonForm.last_logon_date" />:
            </th>
            <td align="left">
            <html:text property="last_logon_date" size="15" />
         </td>
        </tr>
        <tr>
            <td align="right">
                <html:submit>
                    <bean:message key="button.submit" />
                </html:submit>
            </td>
            <td align="right">
                <html:reset>
                    <bean:message key="button.reset" />
                </html:reset>
            </td>
        </tr>
    </table>
    </html:form>
    </body>
    </html>

    Any feedback. Your help would be much appreciated.

  • When I click on a picture to enlarge it on a web page ( any webpage),a new blank page opens with nothing.It only syas search bookmarks and history.What do I have to do to view an enlarged view says

    Using Firefox to search a web page.
    When I click on a picture to enlarge it on a web page ( any webpage),a new blank page opens with nothing.It only says" search bookmarks and history".
    What do I have to do to view an enlarged view ? What settings do i have to enable in firefox.
    Any help would be appreciated
    Colincolin30

    See:
    * [[Images or animations do not show]]
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • CF 8 not rendering page, displays a blank page

    Okay I have something that started to happen today and it
    seems others have seen it happening on IE. I try to go to a page on
    our site it doesn't display anything, just a blank page. If you hit
    refresh it works fine and continues to work as it should until you
    close the browser. If you close the browser and try to access the
    page again you will get a blank screen, refresh fixes it. Nothing
    in the code or on the server has changed since yesterday. But we
    have had similar reports of this happening to users hitting a
    submit button and getting a blank screen. This however is the first
    time I have been able to replicate the issue. I have tried this
    issue on IE, Firefox, and Flock and all give the same issue. Also
    there are no errors and any log files. Anyone know what may be
    causing this???

    We resolved our problem by adding memory to our server. We
    had a number of strange problems including the one noted above that
    were only resolved by restarting CF services regularly. The
    problems all went away after we noticed our server's physical
    memory was insufficient and increased it substantially. The
    application we have running on this server is pretty memory
    intensive (storing a lot of very large queries in APPLICATION scope
    variables).

  • BI 7.0 Analysis Authorization issue: some reports displaying a blank page.

    Hi All,
    This is regarding BI 7.0 Analysis Authorization issue.
    Overview:
    we have restricted some queries at infoobject level.
    Issue:
    a. For some of the queries, we can see the selection screen but when we try to execute the query by clicking on the execute button (Queries WAD) we get a blank page, meaning nothing is displayed on the output (white/Blank screen).
    b. When we execute the same query through RSRT, we get a message which says "Disconnecting from BW server..".
    c. Let me explain further on this. Basically we are doing this in order to have limited access to Auditors at the client side. At the same time normal users should not get impacted due to this, hence we created two roles. One for normal users and other for Auditors.
    d.  Now the thing is that we execute the same report with normal user ID's the report executes properly and displays the output. it does not show the blank page.
    e. But when we execute the same report with Auditors ID then we get a blank page.
    Any idea why this is so?

    Hi Neha,
    I tried the below also,
    GL Acnt
    I EQ 0000134010
    I EQ :
    but still it didn't work.
    No Infoobject is missing in Authorization Object.
    For your point, "rsecadmin - > analysis -> execute as -> check for the desired user & analyze the log" it didnu2019t allow me to analyze, since as soon as click on execute button a pop-up comes up saying "Disconnecting from the BW server..."
    As mentioned earlier also it is giving me the below message,
    ""I>> Row: 103 Inc: AUTHORITY_02 Prog: CL_RSR_RRK0_AUTHORIZATION                                                                       RS_EXCEPTION        301CL_RSR_RRK0_AUTHORIZATION                         AUTHORITY_02"
    Kindly suggest, since this is a show-stopper for us!
    Thanks,
    Ishdeep Kohli.

  • Grey blank page for some messages since upgrading to mountain lion

    Just upgraded several days ago from Snow Leopard to Mountain Lion (10.8.3) and I have notice that some email messages (Apple Mail) I only get a blank grey page. I know I have a lot of messages in my mail account and wonder if that might be the problem. Any help would be appreciated.
    Jerry

    I tried rebuild but it did not help. I still have a grey empty page on some messages. They usually part of a conversation, I tried to uncheck the "organize by conversation" but I still randomly have that problem. Sometimes if I quit and reopen Mail it goes away but other times it doesn't. Is it possible that having a large number of messages in the inbox might be responsible?

  • Safari displays white blank page

    I'm using OSX 10.8.5 on Macbook pro Intel Core 2 Duo.
    Since almost a year ago, I didn't see pages in Safari, it display white blank screen but it has contents.
    Safari loaded contents, but it didn't render contents into page.
    I found that, Safari update entry of 'com.apple.afari.plist' file in the Preference folder and it cause Safari fail to render pages.
    When Safari start, it changes
              <key>com.apple.Safari.ContentPageGroupIdentifier.WebKit2AcceleratedCompositingEnabled</key>
    entry to
    <false/>
    and next time I start Safari, white blank page displayed.
    If I change
              <key>com.apple.Safari.ContentPageGroupIdentifier.WebKit2AcceleratedCompositingEnabled</key>
    entry to
    <true/>
    and start Safari, I can see pages well, but I can't stop Safari to update the value to false.
    Any solutions to solve this issue ?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Why does the website display white blank pages only?

    Hello:
    I use Firefox 13.0.1 on a Mac OS X, and I often go to www.wenxuecity.com for news. But, in the past couple of days, when I type in that address in the URL window, only a white blank page shows up. Nothing else! If I use Google to find direct links to a few news items at that website and click the links, I also get white blank pages. No error message or anything else.
    Could you tell what is going on here?
    Many thanks!

    Is the page completely blank or is there still some content visible?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    You can also try to check the Net log in the Web Console (Web Developer > Web Console;Cmd+Shift+K) to see if that bring up errors about loading files.<br />
    You can double click a net log entry to see more details.
    *https://developer.mozilla.org/en/Tools/Web_Console
    *https://developer.mozilla.org/en/Using_the_Web_Console
    You need to reload web page(s) and bypass the cache to refresh all files with the Web Console panel open.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)

  • Firefox opens, then it loads, then it displays a blank page , and then disappears????

    Firefox opens, then loads a blank page with prior tabs, then after 5 seconds it disappears off the screen! Poof never to be seen again!

    Firefox opens, then loads a blank page with prior tabs, then after 5 seconds it disappears off the screen! Poof never to be seen again!

  • Opening a new URL, a blank page appears with 2 messages on the top left and right corner of the window: "Advertise here" and "Skip this ad" and it will not go to the requested site until I push "Skip this ad"

    It would be nice to have the possibility to attach a print screen or something to give you a better idea what is happening and how it looks like.
    Anyway, what I described above is accurate:
    - the address bar shows the link where I wish to go
    - but the page loaded is blank with these 2 hyperlink messages ("Advertise here" in the top left corner, and "Skip this ad" in the top right corner).
    I would like to emphasize that it does not have to do with the requested URL: it does the same thing with all sites, all the time.

    For me is the same, it's yet 6 months.
    the blank page apears for the first 20-30 of the day's navigation, then no more.
    For example: If I open firefox at 9 a.m., it appears until 9.30 more or less. If i surf the web until mignight, at 00.01 a.m. this page starts bugging me.
    I have yust to click on the link "skip this ad" to return to the desired web page.
    Using Adblockplus and NoScript plug-ins had sadly no effect.
    I've read somewere that the ploblem should be an f**** adware called "directCPV"., and that the solution is toremove an .exe file called Directcpv.exe or somewhat else, but in my pc I haven't found any of those linked to this adware.
    I tried a full system scan with an antivirus (McAfee), with Malwarebytes, Ad-Aware, ATF cleaner, Spybot, Exterminate-it but NO RESULTS.
    I tried to do this in safe mode too.
    No way cleaning the cache, temp files, cookies etc.
    finally I tried to uninstall Firefox (cleaning all registry entry too) and reinstall it, but the problem is still there.
    The only cure seems to be formatting the HD, but it's very last chance.
    If someone have an idea, please post it here.

  • HP Photosmart premium c309g-m printer prints blank pages even with new cartridge

    I have an HP Photosmart premium c309g-m printer and I tried to copy a black and a color document. The printer goes through the motions but the page is blank. I have tried put a new black cartridge in and still prints a blank page.

    Thank you everyone who responded. I would like to let you know my printer is now up and working. It was so nice and helpful of you to respond with links and suggestions. I appreciate it.

  • Printing blank pages - even with new genuine HP cartridges

    All of a sudden, my 6700 has started printing blank pages, even the copier runs blanks - after replacing cartridges with new HP cartridges.
    I ran all the diagnostics, printer says its fine, printhead was cleaned, and still printing blanks.
    Printer's out of warranty, what should I do? I just bought a ton of cartridges for this....!
    Help!!

    arcalgud wrote:
    All of a sudden, my 6700 has started printing blank pages, even the copier runs blanks - after replacing cartridges with new HP cartridges.
    I ran all the diagnostics, printer says its fine, printhead was cleaned, and still printing blanks.
    Printer's out of warranty, what should I do? I just bought a ton of cartridges for this....!
    Help!!
    The document here may help resolve the issue of blank printing on the Officejet 6700. 
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • My home page is set to google & is always open, after i open new tabs to other web pages & then go back to the original home page tab it is frozen or if not frozen you try to do a search & it displays nothing (blank page white background)

    If the above problem occurs I can open a new home(ie google) in a new tab & it works every time.
    When original home page isnt frozen & will let you do a google search but displays blank you cannot return to the original page (ie using back button or home button).
    When the page is frozen you can do nothing with it.

    # Click the orange Firefox button, then select Options to open the options window
    # Go to the General panel
    #Change the setting "When Firefox starts" to "Show my home page"

  • Blank Page Facebook with Safari-but running with firefox- help

    Since a few days, opening Facebook with safari doesn't work:I can't log, the page is white. If I use  Firefox or try whith an another user account with Safari,it's running.
    Here is my report.
    Thanks for the help!
    Process:         Safari [179]
    Path:            /Applications/Pacifist/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2013-01-24 09:21:30.211 -0500
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  B7361C74-FCF7-45BD-BFD7-D7F36F114C22
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    Crashed Thread:  9
    Thread 0:
    0   libSystem.B.dylib                       0xffff0691 __bzero + 145 (cpu_capabilities.h:244)
    1   libJPEG.dylib                           0x9089bcd0 _cg_jzero_far + 32
    2   libJPEG.dylib                           0x9089da96 access_virt_barray + 300
    3   libJPEG.dylib                           0x9089d7a5 consume_data + 94
    4   libJPEG.dylib                           0x9089d5e9 decompress_data + 74
    5   libJPEG.dylib                           0x908ac20c process_data_simple_main + 52
    6   libJPEG.dylib                           0x9089b6bf _cg_jpeg_read_scanlines + 150
    7   com.apple.ImageIO.framework             0x91a95863 getBandProcJPGProg + 258
    8   com.apple.ImageIO.framework             0x91acb1c3 faultCacheData_cb + 120
    9   com.apple.CoreGraphics                  0x95157321 faultDataAcquireBytePointer + 190
    10  com.apple.CoreGraphics                  0x94f9dccb CGDataProviderGetBytePtr + 122
    11  com.apple.ImageIO.framework             0x91a5d0c9 CGImagePlusCreateImage + 491
    12  com.apple.WebCore                       0x96dc1e8a WebCore::ImageSource::createFrameAtIndex(unsigned long) + 90
    13  com.apple.WebCore                       0x96dc1c52 WebCore::BitmapImage::cacheFrame(unsigned long) + 66
    14  com.apple.WebCore                       0x96dc1bfc WebCore::BitmapImage::frameAtIndex(unsigned long) + 76
    15  com.apple.WebCore                       0x96faa0fa WebCore::BitmapImage::draw(WebCore::GraphicsContext*, WebCore::FloatRect const&, WebCore::FloatRect const&, WebCore::ColorSpace, WebCore::CompositeOperator) + 58
    16  com.apple.WebCore                       0x96faa021 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::FloatRect const&, WebCore::FloatRect const&, WebCore::CompositeOperator, bool) + 481
    17  com.apple.WebCore                       0x972f0916 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::IntRect const&, WebCore::IntRect const&, WebCore::CompositeOperator, bool) + 102
    18  com.apple.WebCore                       0x96fb4ba8 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::IntRect const&, WebCore::CompositeOperator, bool) + 88
    19  com.apple.WebCore                       0x96fb46b0 WebCore::RenderImage::paintIntoRect(WebCore::GraphicsContext*, WebCore::IntRect const&) + 464
    20  com.apple.WebCore                       0x96fa98a5 WebCore::RenderImage::paintReplaced(WebCore::PaintInfo&, int, int) + 949
    21  com.apple.WebCore                       0x96fa8f79 WebCore::RenderReplaced::paint(WebCore::PaintInfo&, int, int) + 665
    22  com.apple.WebCore                       0x96fa8cac WebCore::RenderImage::paint(WebCore::PaintInfo&, int, int) + 44
    23  com.apple.WebCore                       0x96f17ea1 WebCore::InlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 337
    24  com.apple.WebCore                       0x96e8ad1d WebCore::InlineFlowBox::paint(WebCore::PaintInfo&, int, int, int, int) + 381
    25  com.apple.WebCore                       0x96e8aad5 WebCore::RootInlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 85
    26  com.apple.WebCore                       0x96e8a160 WebCore::RenderLineBoxList::paint(WebCore::RenderBoxModelObject*, WebCore::PaintInfo&, int, int) const + 704
    27  com.apple.WebCore                       0x9795b471 WebCore::RenderBlock::paintContents(WebCore::PaintInfo&, int, int) + 81
    28  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    29  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    30  com.apple.WebCore                       0x96f90895 WebCore::RenderTableCell::paint(WebCore::PaintInfo&, int, int) + 53
    31  com.apple.WebCore                       0x96f904ea WebCore::RenderTableSection::paintCell(WebCore::RenderTableCell*, WebCore::PaintInfo&, int, int) + 154
    32  com.apple.WebCore                       0x96f8fd08 WebCore::RenderTableSection::paintObject(WebCore::PaintInfo&, int, int) + 488
    33  com.apple.WebCore                       0x96f8fae7 WebCore::RenderTableSection::paint(WebCore::PaintInfo&, int, int) + 167
    34  com.apple.WebCore                       0x96f89f41 WebCore::RenderTable::paintObject(WebCore::PaintInfo&, int, int) + 305
    35  com.apple.WebCore                       0x96f89d8e WebCore::RenderTable::paint(WebCore::PaintInfo&, int, int) + 238
    36  com.apple.WebCore                       0x96e85c09 WebCore::RenderBlock::paintFloats(WebCore::PaintInfo&, int, int, bool) + 441
    37  com.apple.WebCore                       0x96e84ebc WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 716
    38  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    39  com.apple.WebCore                       0x96f90895 WebCore::RenderTableCell::paint(WebCore::PaintInfo&, int, int) + 53
    40  com.apple.WebCore                       0x96f904ea WebCore::RenderTableSection::paintCell(WebCore::RenderTableCell*, WebCore::PaintInfo&, int, int) + 154
    41  com.apple.WebCore                       0x96f8fd08 WebCore::RenderTableSection::paintObject(WebCore::PaintInfo&, int, int) + 488
    42  com.apple.WebCore                       0x96f8fae7 WebCore::RenderTableSection::paint(WebCore::PaintInfo&, int, int) + 167
    43  com.apple.WebCore                       0x96f89f41 WebCore::RenderTable::paintObject(WebCore::PaintInfo&, int, int) + 305
    44  com.apple.WebCore                       0x96f89d8e WebCore::RenderTable::paint(WebCore::PaintInfo&, int, int) + 238
    45  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    46  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    47  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    48  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    49  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    50  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    51  com.apple.WebCore                       0x96e837a1 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 3489
    52  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    53  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    54  com.apple.WebCore                       0x96e82975 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*) + 101
    55  com.apple.WebCore                       0x96e824dd WebCore::FrameView::paintContents(WebCore::GraphicsContext*, WebCore::IntRect const&) + 445
    56  com.apple.WebKit                        0x955df1a4 -[WebFrame(WebInternal) _drawRect:contentsOnly:] + 260
    57  com.apple.WebKit                        0x955ded04 -[WebHTMLView drawSingleRect:] + 388
    58  com.apple.WebKit                        0x955de9e3 -[WebHTMLView drawRect:] + 595
    59  com.apple.AppKit                        0x9581dbf8 -[NSView _drawRect:clip:] + 3853
    60  com.apple.AppKit                        0x9581c6ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    61  com.apple.WebKit                        0x955de56a -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 266
    62  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    63  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    64  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    65  com.apple.AppKit                        0x9581b045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    66  com.apple.AppKit                        0x958174ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    67  com.apple.AppKit                        0x958ac47d -[NSView displayIfNeededInRectIgnoringOpacity:] + 628
    68  com.apple.WebCore                       0x96ff9d78 WebCore::Widget::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 760
    69  com.apple.WebCore                       0x96ff95b7 WebCore::ScrollView::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 55
    70  com.apple.WebCore                       0x96ff9502 WebCore::RenderWidget::paint(WebCore::PaintInfo&, int, int) + 1826
    71  com.apple.WebCore                       0x96f17ea1 WebCore::InlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 337
    72  com.apple.WebCore                       0x96e8ad1d WebCore::InlineFlowBox::paint(WebCore::PaintInfo&, int, int, int, int) + 381
    73  com.apple.WebCore                       0x96e8aad5 WebCore::RootInlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 85
    74  com.apple.WebCore                       0x96e8a160 WebCore::RenderLineBoxList::paint(WebCore::RenderBoxModelObject*, WebCore::PaintInfo&, int, int) const + 704
    75  com.apple.WebCore                       0x9795b471 WebCore::RenderBlock::paintContents(WebCore::PaintInfo&, int, int) + 81
    76  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    77  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    78  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    79  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    80  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    81  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    82  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    83  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    84  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    85  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    86  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    87  com.apple.WebCore                       0x96e837dd WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 3549
    88  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    89  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    90  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    91  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    92  com.apple.WebCore                       0x96e82975 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*) + 101
    93  com.apple.WebCore                       0x96e824dd WebCore::FrameView::paintContents(WebCore::GraphicsContext*, WebCore::IntRect const&) + 445
    94  com.apple.WebKit                        0x955df1a4 -[WebFrame(WebInternal) _drawRect:contentsOnly:] + 260
    95  com.apple.WebKit                        0x955ded04 -[WebHTMLView drawSingleRect:] + 388
    96  com.apple.WebKit                        0x955de9e3 -[WebHTMLView drawRect:] + 595
    97  com.apple.AppKit                        0x9581dbf8 -[NSView _drawRect:clip:] + 3853
    98  com.apple.AppKit                        0x9581c6ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    99  com.apple.WebKit                        0x955de56a -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 266
    100 com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    101 com.apple.AppKit                        0x9581b045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    102 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    103 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    104 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    105 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    106 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    107 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    108 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    109 com.apple.AppKit                        0x9581a987 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    110 com.apple.AppKit                        0x958174ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    111 com.apple.AppKit                        0x95757e7b -[NSView displayIfNeeded] + 933
    112 com.apple.AppKit                        0x95757a29 -[NSWindow displayIfNeeded] + 189
    113 com.apple.Safari                        0x000333b3 0x1000 + 205747
    114 com.apple.AppKit                        0x9575784c _handleWindowNeedsDisplay + 436
    115 com.apple.CoreFoundation                0x967af772 __CFRunLoopDoObservers + 466
    116 com.apple.CoreFoundation                0x967b0acc CFRunLoopRunSpecific + 844
    117 com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    118 com.apple.HIToolbox                     0x903fd2ac RunCurrentEventLoopInMode + 283
    119 com.apple.HIToolbox                     0x903fcffe ReceiveNextEventCommon + 175
    120 com.apple.HIToolbox                     0x903fcf39 BlockUntilNextEventMatchingListInMode + 106
    121 com.apple.AppKit                        0x957556d5 _DPSNextEvent + 657
    122 com.apple.AppKit                        0x95754f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    123 com.apple.Safari                        0x000166ad 0x1000 + 87725
    124 com.apple.AppKit                        0x9574df9f -[NSApplication run] + 795
    125 com.apple.AppKit                        0x9571b1d8 NSApplicationMain + 574
    126 com.apple.Safari                        0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x93556d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x93556d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x96db2587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                       0x96dafe19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x945eb18c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96dcb77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x9224a520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x921e6dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x921e69a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90ed660a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   libcooliris.dylib                       0x13d32f48 0x13d00000 + 208712
    3   libcooliris.dylib                       0x13d96257 CoolirisIsPrivilegedURL + 383555
    4   libcooliris.dylib                       0x13e72744 CoolirisIsPrivilegedURL + 1285936
    5   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 9 Crashed:
    0   com.apple.CoreFoundation                0x967b0e1c CFRunLoopRunSpecific + 1692
    1   com.apple.CoreFoundation                0x967b1b04 CFRunLoopRun + 84
    2   libcooliris.dylib                       0x13f34064 CoolirisIsPrivilegedURL + 2078800
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x935dfb32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x93d303c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x93d42d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                        0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                        0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x93f53a09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x90ebd1aa write + 10
    1   libSystem.B.dylib                       0x90f68913 _malloc_vprintf + 425
    2   libSystem.B.dylib                       0x90f6894b malloc_printf + 35
    3   libSystem.B.dylib                       0x90f63422 szone_error + 174
    4   libSystem.B.dylib                       0x90e90876 allocate_pages + 223
    5   libSystem.B.dylib                       0x90e906bc small_malloc_from_region_no_lock + 133
    6   libSystem.B.dylib                       0x90e8819a szone_malloc + 417
    7   libSystem.B.dylib                       0x90e87fb8 malloc_zone_malloc + 81
    8   com.apple.Foundation                    0x921e4fdc -[NSFileManager fileSystemRepresentationWithPath:] + 92
    9   com.apple.Foundation                    0x921e4eee -[NSString(NSPathUtilities) fileSystemRepresentation] + 62
    10  com.apple.WebKit                        0x95661dbf fileExists + 31
    11  com.apple.WebKit                        0x955f6957 -[NSFileManager(WebNSFileManagerExtras) _webkit_pathWithUniqueFilenameForPath:] + 231
    12  com.apple.Safari                        0x000d8a7f 0x1000 + 883327
    13  com.apple.Safari                        0x00088e3b 0x1000 + 556603
    14  com.apple.Safari                        0x000491f7 0x1000 + 295415
    15  com.apple.Safari                        0x00048f12 0x1000 + 294674
    16  com.apple.Safari                        0x00048a9b 0x1000 + 293531
    17  com.apple.Foundation                    0x921e6dfd -[NSThread main] + 45
    18  com.apple.Foundation                    0x921e69a4 __NSThread__main__ + 308
    19  libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    20  libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96dcb77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x94eb65f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x94eb6480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x90e871ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x90efe449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2506279f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x24c3a63f 0x24c21000 + 103999
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x90e871ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x90efe449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2506279f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x24c3a63f 0x24c21000 + 103999
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x90e871c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90ebaa33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x25062767 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x24e0248e 0x24c21000 + 1971342
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x90e871c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90ebaa33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x25062767 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x24f48958 0x24c21000 + 3307864
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x967b0797  ecx: 0xb041f6fc  edx: 0x00872000
      edi: 0x00000000  esi: 0x00000554  ebp: 0xb041fee8  esp: 0xb041f930
       ss: 0x0000001f  efl: 0x00010246  eip: 0x967b0e1c   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000004
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Pacifist/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x732fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
      0x7b6000 -   0x7b8ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
      0x7bf000 -   0x7cafff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x7d2000 -   0x7fcfe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x80d000 -   0x81cffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x82b000 -   0x861fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
      0x8dd000 -   0x8deffb +com.cooliris.safariplugin Cooliris Plugin (1.11) <439bb2f50ed42bb38af31bdff7d2a85f> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/Cooliris
      0xe25000 -   0xe41ff7  GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
      0xe57000 -   0xe58ffc +com.yourcompany.ct_loader 1.7.0.2 (1702) <86134afac7ff3505d2f5a6305d56dea5> /Library/InputManagers/CTLoader/ct_loader.bundle/Contents/MacOS/ct_loader
      0xe5e000 -   0xe5effd +com.sourcebits.FBPlugin 0.7 (7.0) <19f5cafed5b0cc682c1ec89fc3e69f9e> /Library/InputManagers/FBPlugin/FBPlugin.bundle/Contents/MacOS/FBPlugin
      0xfba000 -   0xfd1ff7 +com.conduit.ct_alerts 1000 (1.0.0.0) <5917af5ccfa75ea19fc21293246ddd65> /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/Resources/Services/ct_alerts. bundle/Contents/MacOS/ct_alerts
    0x121c6000 - 0x125fdfef  com.apple.RawCamera.bundle 3.6.0 (558) <ccf48b696b02b0a545df5c5327ad16f0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x129e3000 - 0x129e3ffe +com.conduit.ct_scripting.osax 1.2.1.9 (1219) <92d4792a5a53176845888eda0e7e714e> /Library/ScriptingAdditions/ct_scripting.osax/Contents/MacOS/ct_scripting
    0x1389e000 - 0x13a23fe3  GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13d00000 - 0x14215ffb +libcooliris.dylib ??? (???) <b6b7672a83c435ee9963610a55777ea0> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libcooliris.dyli b
    0x1671c000 - 0x16a85fe8  com.apple.GeForce8xxxGLDriver 1.5.48 (5.4.8) <880ed3155078052260ade6e705c9ca64> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x192d2000 - 0x192d3fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x19538000 - 0x1953cffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x1957a000 - 0x1966bfff +com.conduit.cttoolbar 1.7.0.2 (1702) <6dcd8bd26903e46f5113a9aaf2d0852c> /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x1cf0e000 - 0x1cf13ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1cfd3000 - 0x1cfdeff7 +com.evernote.EvernoteSafariClipperPlugin 1.0 (158341) <11a9999a93c0b1280f71908100d3e123> /Users/louisedel/Library/Internet Plug-Ins/EvernoteSafariClipperPlugin.webplugin/Contents/MacOS/EvernoteSafariCli pperPlugin
    0x1dad8000 - 0x1dadbff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1dd6b000 - 0x1dd9afe2  com.apple.QuickTime Plugin.plugin 7.7 (1680.28) /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x1efb8000 - 0x1efb9ff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1f046000 - 0x1f09efff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x2023f000 - 0x20242ff2 +com.macromedia.Flash Player.plugin 10.3.183.29 (10.3.183.29) <590415f9d1975e0549277b817bcdd879> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x20896000 - 0x20899fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x20e73000 - 0x20e79fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x24c21000 - 0x2566ffe3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.29 (10.3.183.29) <d429048099c924aa8b162158bbb5be64> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x2609d000 - 0x260abfeb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x26171000 - 0x26183fff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9000affe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x9000b000 - 0x90014fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90015000 - 0x9001cfff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9001d000 - 0x900aaff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x900ab000 - 0x900affff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x900b0000 - 0x901e9ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x902e4000 - 0x903ccff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x903cd000 - 0x906d5fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x906db000 - 0x906f9fff  libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x906fa000 - 0x9070fffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90710000 - 0x90894fef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90895000 - 0x908b4ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x908b5000 - 0x908d0ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x908d1000 - 0x9094bff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90964000 - 0x9099effe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x909cf000 - 0x90b21ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90b22000 - 0x90b2afff  com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90b2b000 - 0x90b3afff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x90b3b000 - 0x90bcefff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90bcf000 - 0x90bfcfeb  libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90bfd000 - 0x90bfdff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90bfe000 - 0x90cb0ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x90d03000 - 0x90d20ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90d4b000 - 0x90e12ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90e13000 - 0x90e85fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90e86000 - 0x90fedff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90fee000 - 0x9104aff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9104b000 - 0x9104bffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9104c000 - 0x9104cff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x911b1000 - 0x9148bff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9148c000 - 0x914a2fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x914a3000 - 0x9155efe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9155f000 - 0x915a1fef  com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x915a2000 - 0x915ebfef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x915ec000 - 0x9163bfff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9163c000 - 0x919f8ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x919f9000 - 0x91a00fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x91a01000 - 0x91a11fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a12000 - 0x91a50fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91a56000 - 0x91b9fff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91ba0000 - 0x91badfe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91bae000 - 0x91c8efff  libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x91c8f000 - 0x91cabff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91cac000 - 0x91d29fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f93000 - 0x92164fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92165000 - 0x921b3fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x921d1000 - 0x921d2ffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x921dc000 - 0x92458fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92459000 - 0x93359fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9339f000 - 0x9339fffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x933a0000 - 0x935b7ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x935b8000 - 0x93a89fbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93a8a000 - 0x93bd4feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93bd5000 - 0x93c15fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93c16000 - 0x93c50fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c51000 - 0x93c60ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93cd5000 - 0x93cedfff  com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93cee000 - 0x93cf1fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93cf2000 - 0x93cfcfeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93cfd000 - 0x93dc8fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93dc9000 - 0x93df2fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x93df3000 - 0x93e32fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93e33000 - 0x93e5efe7  libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x93e5f000 - 0x941fcfef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x941fd000 - 0x941fdffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x941fe000 - 0x94200fff  com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94201000 - 0x9424cfe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9424d000 - 0x942b3ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x942b4000 - 0x945dfff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x945e0000 - 0x945e0ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x945e1000 - 0x945e1ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x945e2000 - 0x945e7fff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x945e8000 - 0x9468ffec 

    You installed the Conduit spyware. To remove it, back up all data, then follow the instructions on this page:
    Help Center | Community Toolbar
    If those instructions don't work, proceed as follows.
    Triple-click the line below to select it:
    ~/Library/Application Support/Conduit
    Copy the selected text to the Clipboard (command-C). From the Finder menu bar, select
    Go ▹ Go to Folder…
    Paste (command-V) into the box that opens, then press return. A Finder window should open with a folder named "Conduit" selected. If it does, delete the selected item.
    Repeat with this line:
    /Applications/Toolbars
    Now you're deleting a folder named "Toolbars". You may be prompted for your login password. Next, copy this line:
    /Library
    Select Go to Folder… again and paste. Don't delete the Library folder. Delete only the following items inside it, if they exist.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the Finder windows you opened. Log out and log back in.
    I've seen a report that Conduit may be bundled with a scam "utility" called "MacKeeper." If you installed MacKeeper, you should remove it according to the developer's instructions. It's worthless and causes many problems reported on this site.
    While you're at it, also remove DivX, CoolIris, and "FBPlugin" (whatever that is) according to the respective developers' instructions.

Maybe you are looking for