.MessagingException - Missing start boundary when loading a mail twice

Hi!
I have found a very interesting behaviour. When parsing a multipart mail twice, there is an error "javax.mail.MessagingException: Missing start boundary". This happens for every multipart mail which is fetched via POP3 and seems to be independant of both POP3 Server and the mail client the message was built with.
Environment:
debian linux, amd64, java 1.6
latest javamail from https://hg.kenai.com/hg/javamail~mercurial
Test program:
import java.io.*;
import javax.mail.*;
public class Mailtest {
     private final static void loadMail(Part p) throws Exception{
          Object content = p.getContent();
          if (content instanceof Multipart) {
               Multipart mp = (Multipart) content;
               int cnt = mp.getCount();
               for (int u=0;u<cnt;u++) {
                    loadMail(mp.getBodyPart(u));
     public final static void main(String[] args) throws Exception {
          //System.setProperty("mail.mime.cachemultipart", "true");
          java.util.Properties props = new java.util.Properties();
          Session mailSession = Session.getInstance(props, null);
          Store store = mailSession.getStore("pop3");
          store.connect("pop3srv", 110, "username", "pwd");
          Folder folder = store.getFolder("INBOX");
          folder.open(Folder.READ_WRITE);
          Message[] msgs = folder.getMessages();
          for (int i=0;i<msgs.length;i++) {
               /*if (msgs[i] instanceof com.sun.mail.pop3.POP3Message) {
                    System.out.println("inputstream");
                    InputStream in = msgs.getDataHandler().getInputStream();
                    in.close();
               System.out.println("i=" + i + " try = 1");
               loadMail(msgs[i]);
               System.out.println("i=" + i + " try = 2");
               loadMail(msgs[i]);     
Output:
i=0 try = 1
i=0 try = 2
Exception in thread "main" javax.mail.MessagingException: Missing start boundary
at javax.mail.internet.MimeMultipart.parsebm(MimeMultipart.java:882)
at javax.mail.internet.MimeMultipart.parse(MimeMultipart.java:503)
at javax.mail.internet.MimeMultipart.getCount(MimeMultipart.java:244)
at testapp.Mailtest.loadMail(Mailtest.java:11)
at testapp.Mailtest.main(Mailtest.java:38)
Java Result: 1
I thought that the 2 code blocks which are commented might be a workaround, but nothing changed if both blocks are active.
BTW: What is "mail.mime.multipart.bmparse" supposed to do?

Yes, thank you, that's a bug introduced in the (not yet final) JavaMail 1.4.4 release.
I've fixed it. I'll push the fix soon.
mail.mime.multipart.bmparse is a property to control whether the old (slow) multipart parser
is used, or the new (fast) Boyer-Moore multipart parser is used.

Similar Messages

  • Javax.mail.MessagingException: Missing start boundary

    I use the following code creates a Mime file
    MimeMultipart mmp = new MimeMultipart();
                   MimeBodyPart mbp = null;
                   // add rootpart
                   mbp = new MimeBodyPart();
                   mbp.setContentID("[email protected]");
                   mbp.setDataHandler(new DataHandler(new FileDataSource(args[0])));
                   mmp.addBodyPart(mbp);
                   // add attachment info
                   for(int i = 1; i < args.length; i = i+2){
                        ByteArrayOutputStream baos = new ByteArrayOutputStream();
                        GZIPOutputStream gos = new GZIPOutputStream(baos);
                        FileInputStream fis = new FileInputStream(args[i+1]);
                        byte[] bytes = new byte[1024];
                        int len;
                        while((len = fis.read(bytes, 0, 1024)) > 0){
                             gos.write(bytes, 0, len);
                        fis.close();
                        gos.close();
                        baos.close();
                        InternetHeaders ih = new InternetHeaders();
                        ih.addHeader("Content-ID", args);
                        mbp = new MimeBodyPart(ih, baos.toByteArray());
                        mmp.addBodyPart(mbp);
                   String CarriageReturn = String.valueOf(CARRIAGE_RETURN);
                   String lineFeed = String.valueOf(LINE_FEED);
                   String horizontaltab = String.valueOf(HORIZONTAL_TAB);
                   FileOutputStream fos = new FileOutputStream(args[0] + ".mime");
                   StringBuffer msgParam = new StringBuffer();
                   msgParam.append("MIME-Version: 1.0");
                   msgParam.append(CarriageReturn);
                   msgParam.append(lineFeed);
                   msgParam.append("Content-Type: ");
                   msgParam.append(mmp.getContentType().replaceAll(CarriageReturn,"").replaceAll(lineFeed,"").replaceAll(horizontaltab,""));
                   msgParam.append("; start=\"<[email protected]>\"");
                   msgParam.append(CarriageReturn);
                   msgParam.append(lineFeed);
                   msgParam.append(CarriageReturn);
                   msgParam.append(lineFeed);
                   msgParam.append(CarriageReturn);
                   msgParam.append(lineFeed);
                   fos.write(msgParam.toString().getBytes());
                   mmp.writeTo(fos);
                   fos.close();
    I can correctly read the mime file at windows OS,but in linux OS i got the following error Message:
    2010/11/19 11:53:40     K101J2EED1     fatal     0041EBFC124735B5B67FFA9F4B3B09961KD1     例外=[javax.mail.MessagingException: Missing start boundary]     
    sun.reflect.GeneratedMethodAccessor303.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:301)
    org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
    org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    $Proxy28.execute(Unknown Source)
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    jp.terasoluna.fw.web.struts.action.RequestProcessorEx.process(RequestProcessorEx.java:149)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:675)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:324)
    jp.co.nttdata.erc.sys.app.extended.ExtendedFilter.doFilter(ExtendedFilter.java:163)
    org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:183)
    org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:138)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:424)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:324)
    jp.co.nttdata.erc.sys.app.extended.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:174)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:424)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:324)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:379)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.catalina.core.LinkedPipeline.invoke(LinkedPipeline.java:475)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:983)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:349)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.tcg.ThreadControlGroupValve.invoke(ThreadControlGroupValve.java:82)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.ejb.management.mbean.web.RequestStatisticsValve.invoke(RequestStatisticsValve.java:72)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:188)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.catalina.core.StandardSessionValve.invoke(StandardSessionValve.java:96)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.catalina.core.LinkedPipeline.invoke(LinkedPipeline.java:475)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:983)
    org.apache.catalina.core.StandardContext.invoke(StandardContext.java:3928)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:261)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:197)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.catalina.core.LinkedPipeline.invoke(LinkedPipeline.java:475)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:983)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    com.hitachi.software.web.catalina.core.ValveWrapper.invokeNext(LinkedPipeline.java:672)
    com.hitachi.software.web.catalina.core.LinkedPipeline.invoke(LinkedPipeline.java:475)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:983)
    org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:700)
    org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:959)
    java.lang.Thread.run(Thread.java:620)
    Edited by: chengen on Nov 24, 2010 8:26 PM
    Edited by: chengen on Nov 24, 2010 9:25 PM

    I can correctly read the mime file at windows OS,but in linux OS i got the following error Message:That would suggest one or more of the following.
    1. An end of line problem. Something is wrong with your use of CR/LF.
    2. A line length problem (brief look suggests a 998 limit.)
    3. One reader is more lenient than the other. This goes back to 1 and 2.

  • How can I solve a "org.jvnet.mimepull.MIMEParsingException: Missing start boundary" when using "Page Attachments to Disk"?

    I have built a streaming MTOM enabled web service for downloading large files. I also built a client that uses that service (with MTOM and streaming feature). Everything works, when the client calls the web service directly.
    Then I have set up the OSB, so that I can call the service through the OSB. I have build a Business Service and a Proxy Service. For the Business Service, I use "XOP/MTOM Enabled", "Include Binary Data By Reference" and "Page Attachments to Disk" to prevent the OSB from loading the whole data into memory.
    If I do not use the "Page Attachments to Disk" option, the download works, but I assume everything is loaded into the OSB memory.
    When I use the "Page Attachments to Disk" option, I receive the following error message
    Exception in thread "main" com.sun.xml.ws.fault.ServerSOAPFaultException: Client received SOAP Fault from server: Couldn't create SOAP message due to exception: org.jvnet.mimepull.MIMEParsingException: Missing start boundary Please see the server log to find more detail regarding exact cause of the failure.
        at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:193)
        at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:131)
        at com.sun.xml.ws.client.sei.StubHandler.readResponse(StubHandler.java:253)
        at com.sun.xml.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:203)
        at com.sun.xml.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:290)
        at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
        at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:92)
        at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:161)
        at com.sun.proxy.$Proxy38.fileDownload(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:87)
        at com.sun.proxy.$Proxy39.fileDownload(Unknown Source)
        at largefiletransfer_osb_client.MtomClientDownload.main(MtomClientDownload.java:59)
    Why do I get this exception and how can I solve the issue?
    Additional Infos:
    OS: Windows 7 64bit
    Tool: JDeveloper BPM Suite 12.1.3.0.0
    WebService: HTTP + SOAP + MTOM + Streaming

    I have built a streaming MTOM enabled web service for downloading large files. I also built a client that uses that service (with MTOM and streaming feature). Everything works, when the client calls the web service directly.
    Then I have set up the OSB, so that I can call the service through the OSB. I have build a Business Service and a Proxy Service. For the Business Service, I use "XOP/MTOM Enabled", "Include Binary Data By Reference" and "Page Attachments to Disk" to prevent the OSB from loading the whole data into memory.
    If I do not use the "Page Attachments to Disk" option, the download works, but I assume everything is loaded into the OSB memory.
    When I use the "Page Attachments to Disk" option, I receive the following error message
    Exception in thread "main" com.sun.xml.ws.fault.ServerSOAPFaultException: Client received SOAP Fault from server: Couldn't create SOAP message due to exception: org.jvnet.mimepull.MIMEParsingException: Missing start boundary Please see the server log to find more detail regarding exact cause of the failure.
        at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:193)
        at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:131)
        at com.sun.xml.ws.client.sei.StubHandler.readResponse(StubHandler.java:253)
        at com.sun.xml.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:203)
        at com.sun.xml.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:290)
        at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
        at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:92)
        at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:161)
        at com.sun.proxy.$Proxy38.fileDownload(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:87)
        at com.sun.proxy.$Proxy39.fileDownload(Unknown Source)
        at largefiletransfer_osb_client.MtomClientDownload.main(MtomClientDownload.java:59)
    Why do I get this exception and how can I solve the issue?
    Additional Infos:
    OS: Windows 7 64bit
    Tool: JDeveloper BPM Suite 12.1.3.0.0
    WebService: HTTP + SOAP + MTOM + Streaming

  • Missing start boundary exception, caused by an empty Part, how to handle?

    Hello,
    i wrote an application that automatically handles mails from laboratories. The only essential part of the mail is the attachment, where chemical analyses are submitted (from permitted addresses, recognized by whitelist and fileheader of the attachment). Other ways to submit data weren't allowed.
    Currently a mail was received that can't be parsed. It's from a laboratory, that
    use its provider's (a german internet suplier named Arcor) webmail, a browser-based mailing portal. It always worked fine, because they wrote some greetings. But this time they sent a blank message. The result is following structure of the mail:
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
    boundary="----=_Part_50112_10709369.1203586767396"
    //Some X-Flags
    ------=_Part_50112_10709369.1203586767396
    Content-Type: multipart/alternative;
         boundary="*----=_Part_50111_24141780.1203586767396*"
    ------=_Part_50111_24141780.1203586767396--
    ------=_Part_50112_10709369.1203586767396
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=somefile.bin
    ABCDEF.... //Some binary data
    ------=_Part_50112_10709369.1203586767396--
    It seems the webmailer creates an empty mailpart and only writes the end boundary (Line: ------=_Part_50111_24141780.1203586767396--).
    I know, the start boundary is really missing.
    I checked it out by getting a mailaccount from Arcor, and it always creates this structure when sending a message without a text. By the way, the Message-ID (header) generated from Arcor's server seems to be from javamail. (.....1234.567890.....JavaMail.ngmail@....).
    I don't know how many mailclients create "empty" parts, but impossible is nothing (e.g. other or future webmailer services).
    But how to handle?
    The error occures when calling MimeMultipart.getCount(), which causes to parse the mail if not parsed. All actions, which cause the mail to be parsed, will end in this exception (for this mail).
    I looked at the javamail source and found out, that the line of the empty part is not recognized as a boundary, because of its ending delimiters:
    if (line.equals(boundary))
    break;
    So the boundary is added to the preamble. It goes on with reading lines from the stream, until line == null.
    if (line == null)
    throw new MessagingException("Missing start boundary");
    Because there is no test, if the line matches the end boundary, it's not recognized. Wouldn't it be better in this case, to add an empty bodypart and set a variable to false (e.g. complete) instead of throwing an exception? Because MimeMultipart.parse() is called by other methods, like getCount, getBodyPart and writeTo, I can't nearly do anything automatically with the mail. How should i walk through the bodyparts and fetch the parts I'm interested in?
    Subclassing seems to be difficult to me:
    Object content = message.getContent();
    //javax.mail.Message, won't return a subclassed multipart
    if (content instanceof Multipart) {
    //recursive method!
    handleMultipart((Multipart) content); //collecting parts from multipart
    Of course, I could ask the laboratory: "please send me a greeting!" ;-)
    Greetings,
    cliff

    Interesting.
    Yes, it's probably a bug that JavaMail allows you to
    create a multipart with no body parts, since the
    MIME specification doesn't allow that. Still, the
    webmail application should be fixed so that it doesn't
    try to do that, at least including an empty plain text
    body part.
    Please contact the webmail provider and tell them of
    this bug in their application.
    I'll also look into making JavaMail cope with these
    broken messages more gracefully. Contact me
    at [email protected] and I'll let you know when
    I have a version ready to test.

  • Correct way to copy Multipart and prevent Missing start boundary Exception

    Hi there
    I've worked through the FAQ's and forum and based on the info available tried to construct code to deal with the whole "javax.mail.MessagingException: Missing start boundary" problem. I keep on getting a ClassCastException though and was hoping you could scan through the code and let me know if you see anything. I must be missing something ... simplified extract of code below:
    Multipart mp = (Multipart)part.getContent();
    try {
         for (int i = 0; i < mp.getCount(); i++) {
              processBodyPart(wrapper, mp.getBodyPart(i), i);
    } catch (MessagingException e) {
         // Converting Msg to a Copy (to fix boundary)
         ByteArrayOutputStream bos = new ByteArrayOutputStream();
         part.writeTo(bos);
         byte[] bytes = bos.toByteArray();
         MimeMessage newMsg = new MimeMessage(emailAccount.getSession(), new ByteArrayInputStream(bytes));
         String ct = newMsg.getContentType();
         newMsg.removeHeader("Content-Type");
         ct = ct.substring(0, ct.indexOf(";")); // Strip out the rest, only retain the content-type
         newMsg.setDataHandler(new DataHandler(newMsg.getContent(), ct));
         Multipart testMp = (Multipart)newMsg.getContent(); // <<-------- ClassCastException here!!
         for (int i = 0; i < testMp.getCount(); i++) {
              Part bp = testMp.getBodyPart(i);
              processBodyPart(bp);
    }Much appreciated.
    Marius

    I took out the truncating part to make the example shorter,
    but I did try both keeping it as it was, as well as truncating
    it (it is "multipart/mixed") with the same effect.
    I was able to save the entire message to file (thanks), attached
    below - maybe you can spot something that could be causing it?
    Thanks again.
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: from mail.adept.co.za (localhost [127.0.0.1])
         by mail.adept.co.za (Postfix) with ESMTP id E3074C03D9
         for <[email protected]>; Fri, 18 Jan 2008 14:35:29 +0200 (SAST)
    X-Greylist: from auto-whitelisted by SQLgrey-1.7.4
    Received: from mail-03.jhb.wbs.co.za (mail-03.jhb.wbs.co.za [196.2.97.2])
         by mail.adept.co.za (Postfix) with ESMTP id CA3AEC03D7
         for <[email protected]>; Fri, 18 Jan 2008 14:35:28 +0200 (SAST)
    Received: from localhost by mail-03.jhb.wbs.co.za;
      18 Jan 2008 14:35:28 +0200
    Date: 18 Jan 2008 14:35:28 +0200
    To: [email protected]
    From: "Mail Delivery System" <[email protected]>
    Subject: Delivery Status Notification (Failure)
    MIME-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status; boundary="9sdJO.4G/vWebcc.bcm9J.Ak/cwPA"
    Message-Id: <[email protected]>
    X-Virus-Scanned: ClamAV Passed
    X-Spam-Scanned: -1.4
    X-Scanned-By: proxfilter
    --9sdJO.4G/vWebcc.bcm9J.Ak/cwPA
    content-type: text/plain;
        charset="utf-8"
    Content-Transfer-Encoding: quoted-printable
    The following message to <[email protected]> was undeliverable.
    The reason for the problem:
    5.1.2 - Bad destination host 'DNS Hard Error looking up onyxit.co.za (MX): =
    NXDomain'
    --9sdJO.4G/vWebcc.bcm9J.Ak/cwPA
    content-type: message/delivery-status
    Reporting-MTA: dns; jnb-mailfw01.wbs.co.za
    Final-Recipient: rfc822;[email protected]
    Action: failed
    Status: 5.0.0 (permanent failure)
    Diagnostic-Code: smtp; 5.1.2 - Bad destination host 'DNS Hard Error looking up onyxit.co.za (MX):  NXDomain' (delivery attempts: 0)
    --9sdJO.4G/vWebcc.bcm9J.Ak/cwPA
    content-type: message/rfc822
    Received: from wbs-smtp-out-02.jhb.wbs.co.za (HELO wbs-smtp-out-02) ([196.2.97.197])
      by mail-03.jhb.wbs.co.za with ESMTP; 18 Jan 2008 14:35:28 +0200
    Received: from wbs-smtp-out-02.jhb.wbs.co.za (HELO wbs-smtp-out-02) ([196.2.97.197])
      by mail-03.jhb.wbs.co.za with ESMTP; 18 Jan 2008 14:35:28 +0200
    Received: from wbs-41-208-227-16.wbs.co.za ([41.208.227.16] helo=jnfsworkpool)
         by wbs-smtp-out-02 with esmtp (Exim 4.67)
         (envelope-from <[email protected]>)
         id 1JFqSK-0000qy-8m; Fri, 18 Jan 2008 14:36:30 +0200
    Date: Fri, 18 Jan 2008 14:35:10 +0200 (SAST)
    From: Ros Copeling <[email protected]>
    To: [email protected]
    Cc: [email protected]
    Message-ID: <[email protected]>
    Subject: FW: Fw: Message from ESKOM
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_16_32195616.1200659710788"
    X-Priority: 3
    Importance: normal
    Sensitivity: Normal
    workpool_message_id: 6879
    X-Original-Subject: FW: Fw: Message from ESKOM
    X-Spam-Ignored: [TOO LARGE] Message > 100K
    X-Scan-Signature: 66244f1a8ccb48c519852bcb33c1a261
    --9sdJO.4G/vWebcc.bcm9J.Ak/cwPA--

  • Multipart/report - Missing Start Boundary - MultiPart.getContent()

    I am writing to you in regard to an issue that I have been facing recently, and I wanted to see if the JavaMail developers / community could provide any answers.
    Does JavaMail support the multipart/report MIME specification (RFC 1892)?
    The reason I ask, is that I have seen a strong correlation between errors in JavaMail and this content....
    I am getting Missing Start Boundary exceptions when I execute this code on a message that has this Mime Type in it, (multipart/report)
    mp = (Multipart)part.getContent();
    count = mp.getCount(); // THIS IS WHAT THROWS THE ERROR
    An example of this message header, would be
    X-Atlas-MailScanner-From: [email protected]
    Content-Type: multipart/report; report-type=delivery-status;
    boundary="==IFJRGLKFGIR5607UHRUHIHD"
    ** NOTE HOW BOUNDARY IS SPECIFIED UNLIKE THE OTHER SECTIONS WHICH LEADS ME TO BELIEVE THE MISSING START BOUNDARY EXCEPTION **
    --==IFJRGLKFGIR5607UHRUHIHD
    Content-Type: text/plain; charset=UTF-8
    Content-Transfer-Encoding: base64
    --==IFJRGLKFGIR5607UHRUHIHD
    Content-Type: message/rfc822
    I have seen older posts that talk about other people's problem regarding this Exception; however, have not seen an abstract way for circumventing the issue.
    Any insight/future development intentions/experience in dealing with this issue would be greatly appreciated.
    RR

    I'm getting the same exception on several "bounce" messages I try to access with JavaMail. I believe that some of them are flat-out wrong in their MIME encoding, as there truly is no start boundary. However, some appear to be OK and causing JavaMail to give an exception. Should this be logged as a bug?
    Here's an example similar to yours (I didn't include all the received headers and several addresses are munged):
    <blockquote><i>{noformat}Date: Sat, 19 Apr 2008 06:57:46 -0400
    From: [email protected]
    Subject: Undelivered mail
    To: x
    Message-ID: <[email protected]>
    MIME-Version: 1.0
    Content-Type: multipart/report; report-type=delivery-status;
            boundary="--TKFLZMMSbcaBDNCJdCBMaXGSRbVIAF"
    --TKFLZMMSbcaBDNCJdCBMaXGSRbVIAF<br />
    --> Error description:
    Error-For: [email protected]
    Error-Code: 5.1.1
    Error-Text: No such list.
    Error-End: One error reported.
    --TKFLZMMSbcaBDNCJdCBMaXGSRbVIAF<br />
    Content-Type: message/delivery-status
    Reporting-MTA: dns; LISTS.NETSPACE.ORG
    Final-Recipient: RFC822; [email protected]
    Action: failed
    Status: 5.1.1 (No such list)
    --TKFLZMMSbcaBDNCJdCBMaXGSRbVIAF<br />
    Content-Type: message/rfc822
    Return-Path: <x>
    X-Original-To: [email protected]
    Received: from ppp91-122-170-233.pppoe.avangarddsl.ru (ppp91-122-170-233.pppoe.avangarddsl.ru [91.122.170.233]) by lists.netspace.org (Postfix) with ESMTP id 538527A53A for <[email protected]>; Sat, 19 Apr 2008 06:57:45 -0400 (EDT)
    Received: from [91.122.170.233] by mx1.bne.server-mail.com; Sat, 19 Apr 2008 14:06:15 +0300
    Message-ID: <01c8a226$87bfa580$e9aa7a5b@retentioncal53>
    From: "x" <x>
    To: <[email protected]>
    Subject: The extracts of VPXL are Pueraria tuberose 75 mg, Mucuna pruriens 75 mg, Asteracantha longifolia 75 mg.
    Date: Sat, 19 Apr 2008 14:06:15 +0300
    MIME-Version: 1.0
    Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original
    Content-Transfer-Encoding: 7bit
    X-Priority: 3
    X-MSMail-Priority: Normal
    X-Mailer: Microsoft Outlook Express 6.00.2741.2600
    X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2741.2600
    TKFLZMMSbcaBDNCJdCBMaXGSRbVIAF{noformat}
    </i></blockquote>

  • Missing start Boundary exception

    Hi all,
    I am evaluating an e-mal archiving software that utilizes javamail. I am getting a high number of messages that don't get archived, due to the Missing start Boundary exception.
    Now I know, that often times e-mail messages don't get correctly constructed, but the sheer number of rejected messages really struck me.
    So I gathered a message and loaded it into a text editor to check the boundary structure myself.
    I have stripped the message down to reflect the boundary structure and I would like to know, if I missed anything, but I can't find out why javamail complains about a missing start boundary.
    I could post the complete message as well, if my example should not be suitable for examining this issue.
    So, here we go:
    Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms020608030602020702090804"
         This is a cryptographically signed message in MIME format.
         --------------ms020608030602020702090804
         Content-Type: multipart/mixed; boundary="------------070406040008020802000107"
              This is a multi-part message in MIME format.
              --------------070406040008020802000107
              Content-Type: text/plain; charset=ISO-8859-1; format=flowed
              Content-Transfer-Encoding: quoted-printable
              Test f=FCr mailArchiva III
              --------------070406040008020802000107
              Content-Type: multipart/alternative; boundary="============_CoolerEmail_============"
                   Date: Wed, 23 Apr 2008 07:41:31 -0700
                   --============_CoolerEmail_============
                   Content-Transfer-Encoding: binary
                   --============_CoolerEmail_============
                   Content-Transfer-Encoding: binary
                   Content-Type: text/html; charset="iso-8859-1"
              --============_CoolerEmail_============--
         --------------070406040008020802000107--
         --------------ms020608030602020702090804
    --------------ms020608030602020702090804--
    Thanks,
    Stephan

    Hi Bill,
    well, yes. It's one of a huge amount of messages being rejected. Actually I am not a programmer, but I try to deal with an archiving solution called mailArchiva. This software uses javamail and the mails get into the software using a postfix milter.
    I wanted to make sure that my gateways don't mess up these messages, prior getting into negotiation with the developer about what could be wrong along the way.
    I will now contact him and see, if I can get any more logs from the software.
    Thanks,
    Stephan

  • Missing start boundary

    Hi ,
    i have Missing start boundary exception while reading message..
    Following is message information.Can any one let me know how i can fix this problem.
    Received: from backup1.texterity.com ([68.112.246.59]) by exchange2003.scientificmonitoring.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 8 Mar 2007 11:37:05 -0700
    Received: from backup1.texterity.com (localhost.localdomain [127.0.0.1]) by backup1.texterity.com (8.13.1/8.13.1) with ESMTP id l28IaTnQ023719 for <[email protected]>; Thu, 8 Mar 2007 13:36:29 -0500
    Received: (from textcafe@localhost) by backup1.texterity.com (8.13.1/8.13.1/Submit) id l28IaR1K023718; Thu, 8 Mar 2007 13:36:27 -0500
    Content-Transfer-Encoding: binary
    X-MimeOLE: Produced By Microsoft Exchange V6.5
    Content-Type: multipart/alternative;
         boundary="----=_NextPart_000_20F60_01C76D97.08C9D40D"
    MIME-Version: 1.0
    X-Mailer: MIME::Lite 3.01 (F2.73; A1.67; B3.05; Q3.03)
    Date: Thu, 8 Mar 2007 18:36:26 UT
    From: <[email protected]>
    Subject: Intech March 2007 Digital Edition
    To: <[email protected]>
    Message-ID: [email protected]
    Return-Path: <[email protected]>
    X-OriginalArrivalTime: 08 Mar 2007 18:37:05.0234 (UTC) FILETIME=[C51A9320:01C761B0]
    This is a multi-part message in MIME format.
    ------=_NextPart_000_20F63_01C76D97.08C9D40D
    Content-Disposition: inline
    Content-Length: 1066
    Content-Transfer-Encoding: quoted-printable
    Content-Type: text/plain;
         charset="iso-8859-1"
    You can now find your March issue of InTech at=20
    http://pubsrv.texterity.com/cgi-bin/pwf_gateway.cgi?d=3Dwww.isa-intech-di=
    gital.org&u=3D/intech/200703&s=3DCEGUsgx3DOlJm&e=3D3567746.=20
    Each month, we will e-mail you a link to the current issue of InTech.
    Your digital issue has the exact same content as a printed copy but with
    unique features, such as the ability to:
    *     Search and page through articles online=20
    *     Zoom, print, or e-mail pages to a colleague=20
    *     Archive your issues for convenient retrieval=20
    We hope you enjoy your digital issues of InTech magazine. Thank you for
    your readership.
    Sincerely,=20
    Gregory Hale
    InTech Editor=20
    Click here to convert to the print edition: =
    http://pubsrv.texterity.com/cgi-bin/pwf_optout.cgi?c=3Dintech&e=3Djim@sci=
    entificmonitoring.com&email_msgid=3D3567746
    This email was sent to: [email protected]
    Please do not reply to this mail.
    For technical questions regarding the digital edition, email =
    [email protected].
    From ISA, PO Box 12277, 67 Alexander Drive, Research Triangle Park, NC =
    27709
    ------=_NextPart_000_20F63_01C76D97.08C9D40D
    Content-Disposition: inline
    Content-Length: 4386
    Content-Transfer-Encoding: quoted-printable
    Content-Type: text/html;
         charset="iso-8859-1"
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Intech Digital Edition</title>
    <meta http-equiv=3D"Content-Type" content=3D"text/html; =
    charset=3Diso-8859-1">
    </head>
    <body>
    <IMG =
    SRC=3D"http://pubsrv.texterity.com/cgi-bin/pwf_eds.cgi?transaction_type=3D=
    datalog&[email protected]&publication=3Dintech=
    &id_stamp=3Dintech.20070308133626&user_action=3Dviewmail&email_msgid=3D35=
    67746" height=3D"0" width=3D"0" border=3D"0">
    <TABLE WIDTH=3D613 BORDER=3D0 CELLPADDING=3D0 CELLSPACING=3D0>
         <TR>
              <TD COLSPAN=3D2><A =
    HREF=3D"http://pubsrv.texterity.com/cgi-bin/pwf_gateway.cgi?d=3Dwww.isa-i=
    ntech-digital.org&u=3D/intech/200703&s=3DCEGUsgx3DOlJm&e=3D3567746" =
    TARGET=3D"_blank" TITLE=3D"Intech">
                   <IMG BORDER=3D0 =
    SRC=3D"http://www.texterity.com/images/intech/intech_header.gif" =
    WIDTH=3D613 HEIGHT=3D116></A></TD></TR>
         <TR>
              <TD VALIGN=3DTOP WIDTH=3D144>
              <TABLE BORDER=3D0 CELLPADDING=3D6 CELLSPACING=3D6><TR =
    ALIGN=3DCENTER><TD ALIGN=3DCENTER>
              <A =
    HREF=3D"http://pubsrv.texterity.com/cgi-bin/pwf_gateway.cgi?d=3Dwww.isa-i=
    ntech-digital.org&u=3D/intech/200703&s=3DCEGUsgx3DOlJm&e=3D3567746" =
    TARGET=3D"_blank" TITLE=3D"Click here to read Intech">
              <IMG style=3D"border: solid 1px; border-color: black" =
    SRC=3D"http://www.isa-intech-digital.org/tcprojects/isa/intech/inbox/3820=
    4/imgpages/tn/intech200703_0001.gif"
                   ALT=3D"Click here to read Intech"></A></TD></TR>
              <TR HEIGHT=3D109><TD> </TD></TR>
              <TR ALIGN=3DCENTER><TD ALIGN=3DCENTER><A =
    HREF=3D"http://www.texterity.com" TARGET=3D"_blank">
              <IMG BORDER=3D0 =
    SRC=3D"http://www.texterity.com/images/ViaTexterity.gif" width=3D132 =
    height=3D45 ALT=3D"Digital Delivery Via =
    Texterity"></A></TD></TR></TABLE></TD>
              <TD VALIGN=3DTOP><TABLE BORDER=3D0 CELLPADDING=3D6 =
    CELLSPACING=3D6><TR><TD>
              <P style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">
              You can now find your March issue of InTech at <br><a =
    href=3D"http://pubsrv.texterity.com/cgi-bin/pwf_gateway.cgi?d=3Dwww.isa-i=
    ntech-digital.org&u=3D/intech/200703&s=3DCEGUsgx3DOlJm&e=3D3567746" =
    target=3D"_blank">http://www.isa-intech-digital.org/intech/200703/</a>.
              </p>
              <P style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">Each month, we will e-mail you a link to the current =
    issue of InTech. Your digital issue has the exact same content as a =
    printed copy but with unique features, such as the ability to:</p>
              <ul><li style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">
              Search and page through articles online </li>
              <li style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">Zoom, print, or e-mail pages to a colleague</li>
              <li style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">Archive your issues for convenient retrieval</li></ul>
              <P style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">We hope you enjoy your digital issues of InTech =
    magazine. Thank you for your readership.</p>
              <P style=3D"font-family:verdana,arial,helvetica,sans-serif; =
    font-size:12px;">
              Sincerely,<br><br>
              Gregory Hale<br>
              InTech Editor
              </P>
         </TD></TR></TABLE>
    </TD></TR></TABLE>
    <TABLE WIDTH=3D613 BORDER=3D0 CELLPADDING=3D0 CELLSPACING=3D0><TR><TD>
         <table width=3D"100%" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" =
    bgcolor=3D"#FFFFEE">
              <tr><td>
              <IMG BORDER=3D0 =
    SRC=3D"http://www.texterity.com/images/recycling-footer.gif" WIDTH=3D613 =
    HEIGHT=3D11>
    <font face=3D"arial" size=3D"1" color=3Dblack>
      <a =
    href=3D"http://pubsrv.texterity.com/cgi-bin/pwf_optout.cgi?c=3Dintech&e=3D=
    [email protected]&email_msgid=3D3567746">Click here</a> to =
    Convert to the print edition.<BR>
      This email was sent to: [email protected]<BR>
      If you cannot click on the links above, please copy and paste =
    this url into your browser:<BR>
      <a =
    href=3D"http://pubsrv.texterity.com/cgi-bin/pwf_gateway.cgi?d=3Dwww.isa-i=
    ntech-digital.org&u=3D/intech/200703&s=3DCEGUsgx3DOlJm&e=3D3567746">http:=
    //www.isa-intech-digital.org/intech/200703/</A><BR>
      Please do not reply to this mail.<BR>
      For technical questions regarding the digital edition, email <a =
    href=3D"mailto:[email protected]?subject=3DIntech%20Support%2=
    0Request">[email protected]</a>.<BR>
      From From ISA, PO Box 12277, 67 Alexander Drive, Research =
    Triangle Park, NC 27709</font><br>
              </td></tr>
              <tr><td bgcolor=3D"#FFFFEE">
         </td></tr></table>
    </TD></TR></TABLE>
    </body>
    </html>
    ------=_NextPart_000_20F63_01C76D97.08C9D40D--
    can any one please help how i can fix this.

    Right on all counts. I have been able to resolve #1 and #2 using the prescribed workarounds.
    I'm still persuing #3 This seems to be the most common issue, as our application receives dozens of these each day. Our mail administrator gave the "it's working with everything else" response - of course everything else is probably not using the IMAP interface... If anyone has had a similar problem with Trend or Sophos specifically, let me know. I will need to output the raw IMAP stream, find the specific RFC 2822 violation and take it to the vendor. Any setting on the JavaMail side to compensate for the problem, would of course be helpful. I have to be careful not to break working messages that have file attachments, though. It's possible that my attempt of the workaround you described was incorrect - I'll go back and try it again with a simpler code example.
    #4 I've not had success with JTNEF yet, but I'm not sure if it's even still a problem after the workaround for #2. Anyway, that one seems to be infrequent so it's low priority for me.
    #5 As you mention in the other thread: this is a problem with a couple of email clients (Thunderbird and Apple Mail, possibly others) - maybe they are using a common library? Anyway, I'm going to try out the workaround posted in that thread if I can get more specifics.
    It would be nice if the various workarounds could be handled within JavaMail, a global LIBERAL=true setting : ) , although I understand that could be a never-ending project for JavaMail considering the number of vendor problems. Also such workarounds could certainly cause "code entropy" within JavaMail code. Getting the vendor to fix their product also kind of depends on whether or not I have 'business leverage' on the buggy software. In my case, for example, I can apply leverage on virus gateway vendors to fix their product, but not on customers who are sending me incorrectly formatted emails and have the option of going elsewhere for business.
    In any case, thanks for all the help - it has been greatly appreciated.

  • Check email when load up mail

    How do I set it so that when I load up mail, it automatically checks my email. I seem to have to manually check for new email when I load up mail. I mean, I can have it auto-check every 5 mins, etc - but how about when I initially load the program?

    When you set Mail to autocheck every so often, Mail will automatically check for new mail when it startsup if it's not been launched since it last checked and the time has passed.

  • Missing music files when loading iPod Classic.

    I just finished converting all our albums and 45's to MP3 files.  These all list and play fine in iTunes, but when I load the files on our iPod Classic, there are always about 50 songs missing.  I have done this 4 times, and it's not always the same files, but always about the same number of files.  The missing songs are about half missing at the beginning of the list, and half missing at the end of the list.  I have 7455 files in iTunes, but after loading the iPod, there are around 7400 files actually on the iPod. 
    There is plenty of free space left on the iPod,  The missing files are never the same songs as I try different times.  The files are not corrupted, as they list and play okay in iTunes.
    Any suggestions would be greatly appreciated.  Thanks in advance for any help you might give.

    "Other" means files that have become corrupt and the iPod no longer knows what to do with them.
    The usual procedure is to move (or copy) your iTunes Library from your old computer to the new one. If the computer (or its hard drive) is not available, the procedure is to use the backup of the Library.
    I'm guessing that you don't have a backup of your Library. Although your old computer has "died", do you still have the hard drive? If so, you could put the hard drive into a hard drive caddy, use it as an external device and copy the iTunes Library from that onto your new computer. A local computer repair shop should be able to help you with that.
    Failing that, you will have to re-build your Library again.
    If you purchased music from the iTunes Store, check in your store account to see if your country allows you to download the music (that you purchased) again.
    If you purchased digital music from other stores, check with them to see if you can download the songs again. In Amazon UK, you can.
    For music that you imported into your iTunes from CDs, you will have to import them again, from the CD.
    For the future, I suggest you maintain a backup of your iTunes Library. If you now have an external hard drive in a caddy, use that. Otherwise, buy one, the larger the better.
    Also, as you are now finding, an iPod cannot be put back into a new iTunes. Nor is it a backup of your Library. Everything should be in your iTunes Library - and backed up onto an external drive. The iPod is simply a portable "copy" of your Library, only for playing the music.
    Sorry to be the bearer of bad news.

  • Missing .pdf file when loading template

    Hey everybody,
    I just switched from a PC to a Mac and found Pages pretty cool. I'm running the trial and made a few templates based on the business letter template that was included with the pre-installed Pages 2 on my MacBook. When opening my template I end up with a window showing me an error message that the file "businesscircle_logosgray.pdf" is missing. My template then opens up correctly but the error message is showing up every time I open it. When I copy its contents into an empty document and save it to another template it works 2 - 3 times but then I get the same error. The business letter template opens perfectly without any errors.
    Is there any way to solve that problem?
    Thank you in advance
    Dominik
    MacBook 13" (black)   Mac OS X (10.4.8)  

    That sounds strange. businesscircle_logosgray.pdf is the spiral image above the word "Company" in the template. I assume you deleted it, when you made your own templates. It is supposed to be a place holder to replace with another image.
    I would probably try recreating your new template and keep the image just in case. You could also try creating a new blank template and paste everything from the business template except that image. Hope you manage to sort it out.

  • Safari crashing constantly in snow leopard, esp when loading yahoo mail

    Hey Everyone,
    Suddenly safari is crashing in snow leopard... here is my crash log please help! I love safari but i dunno how much more of this issue i can take. Thanks in advance!
    Process: Safari [806]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (6531.9)
    Build Info: WebBrowser-65310900~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [91]
    Date/Time: 2009-09-10 20:19:38.833 -0400
    OS Version: Mac OS X 10.6 (10A432)
    Report Version: 6
    Interval Since Last Report: 19364 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 12589 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 382FA0A0-EA46-41C3-94F0-1C303831AF82
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000020
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.WebCore 0x00007fff85d96a00 WebCore::RenderWidget::destroy() + 288
    1 com.apple.WebCore 0x00007fff85c01e96 WebCore::Node::detach() + 38
    2 com.apple.WebCore 0x00007fff85c01d4e WebCore::Element::detach() + 110
    3 com.apple.WebCore 0x00007fff85c01cbc WebCore::ContainerNode::detach() + 44
    4 com.apple.WebCore 0x00007fff85c01d4e WebCore::Element::detach() + 110
    5 com.apple.WebCore 0x00007fff85d4a490 WebCore::ContainerNode::removeChild(WebCore::Node*, int&) + 384
    6 com.apple.WebCore 0x00007fff85d5aa67 WebCore::JSNode::removeChild(JSC::ExecState*, JSC::ArgList const&) + 87
    7 com.apple.WebCore 0x00007fff85d5aa0e WebCore::jsNodePrototypeFunctionRemoveChild(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 110
    8 ??? 0x00002882aee002e4 0 + 44541744775908
    9 com.apple.JavaScriptCore 0x00007fff804bacf6 JSC::Interpreter::execute(JSC::FunctionBodyNode*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 630
    10 ??? 0x000000011820c580 0 + 4699768192
    11 ??? 0x000000011cd4b0c0 0 + 4778668224
    12 com.apple.WebCore 0x00007fff86228b80 WebCore::JSDOMWindowShell::~JSDOMWindowShell() + 0
    13 ??? 0x9090909090900000 0 + 10416984888683003904
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff83cbfc7e kevent + 10
    1 libSystem.B.dylib 0x00007fff83cc1b55 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff83cc1824 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff83cc134e dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff83cc0c80 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff83ce1ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83ce58c1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff85b78f89 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff85b74cea WebCore::IconDatabase::iconDatabaseSyncThread() + 170
    4 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x0000000100025673 0x100000000 + 153203
    5 com.apple.Safari 0x0000000100025603 0x100000000 + 153091
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 4: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff83ce1ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83ce58c1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff8039d750 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001213ef 0x100000000 + 1184751
    4 com.apple.Safari 0x000000010004441b 0x100000000 + 279579
    5 com.apple.Safari 0x00000001000442b7 0x100000000 + 279223
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff83ceaaae select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff85941252 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8859051f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff88510f65 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff82478296 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff824781d6 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff83cc0aa2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83cc0eb4 pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff83cc0aa2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83cc0eb4 pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 10:
    Thread 11: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8854ba94 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8854b973 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x0000000100035795 0x100000000 + 219029
    7 com.apple.Foundation 0x00007fff88510f65 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x00000001154ae198 rcx: 0x000000011aec1990 rdx: 0x000000010000000a
    rdi: 0x00000001154ae198 rsi: 0x0000000000000040 rbp: 0x00007fff5fbfe300 rsp: 0x00007fff5fbfe2c0
    r8: 0x000000009c352659 r9: 0x0000000000000000 r10: 0x000000000000003f r11: 0x00000001154ae198
    r12: 0x00000001209c25b8 r13: 0x00000001191afd20 r14: 0x0000000119468d20 r15: 0x0000000000000000
    rip: 0x00007fff85d96a00 rfl: 0x0000000000010202 cr2: 0x0000000000000020
    Binary Images:
    0x100000000 - 0x10024ffff com.apple.Safari 4.0.3 (6531.9) <85520F41-6D13-C548-9D3F-A3013EFB1D8D> /Applications/Safari.app/Contents/MacOS/Safari
    0x1005e0000 - 0x1005e4ff7 libFontRegistryUI.dylib ??? (???) <EB462473-8DC9-5F16-4592-8F1D743C779A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x1028b8000 - 0x1028b8fff com.apple.JavaPluginCocoa 13.0.0 (13.0.0) <02EA2DA9-59AB-9A18-EE03-6A7147EAE31D> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x114485000 - 0x114610ff7 GLEngine ??? (???) <3E2DEFB1-190A-FBAD-C48F-E90B45EED8A4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x114640000 - 0x114afdff7 com.apple.driver.AppleIntelGMAX3100GLDriver 1.6.0 (6.0.0) <ABC0A78A-DDAE-EAEB-BABA-C17FD2D479C9> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x114d4f000 - 0x114d56ff7 com.apple.JavaVM 13.0.0 (13.0.0) <D98F6BC3-5901-F2E4-BA32-054953E7E877> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x114db0000 - 0x114dcffff GLRendererFloat ??? (???) <C513339A-CBB3-9F17-1AE2-48083D79A507> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x114deb000 - 0x114decfff ATSHI.dylib ??? (???) <9BC80E39-A52B-D3C2-4C3C-3CA209BA35FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1152e2000 - 0x1152e8fff libgermantok.dylib ??? (???) <A87630B4-D01C-8724-54D2-5E8CC85FC07B> /usr/lib/libgermantok.dylib
    0x11a074000 - 0x11a184fef libmecab.1.0.0.dylib ??? (???) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.1.0.0.dylib
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80003ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff80004000 - 0x7fff80009ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff802d4000 - 0x7fff80312fe7 com.apple.MediaKit 10.0 (472) <5C9E6EAA-D074-96B8-81AC-F52D8B6D8AAC> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff80336000 - 0x7fff80393fef com.apple.framework.IOKit 2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff80394000 - 0x7fff80518fff com.apple.JavaScriptCore 6531 (6531.5) <8C470ACB-1A45-71FC-673D-34EA3F5EF0DC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff80519000 - 0x7fff80628ff7 libcrypto.0.9.8.dylib ??? (???) <A2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff80629000 - 0x7fff8065afff libGLImage.dylib ??? (???) <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8065b000 - 0x7fff8065dfff com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff806a9000 - 0x7fff8075efff com.apple.ink.framework 1.3 (104) <9B552E27-7E3F-6767-058A-C998E8F78692> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8075f000 - 0x7fff80c57ff7 com.apple.VideoToolbox 0.420.17 (420.17) <E034AA6E-A1E4-BB8F-5AFA-F5C354DDD889> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff80c58000 - 0x7fff80ca5ff7 libauto.dylib ??? (???) <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fff80ca6000 - 0x7fff814b0fe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff81753000 - 0x7fff8176eff7 com.apple.openscripting 1.3 (???) <DFBFBFD3-90C0-0710-300C-1A7210CB3713> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8176f000 - 0x7fff81886fef libxml2.2.dylib ??? (???) <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff818bc000 - 0x7fff81978ff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff81979000 - 0x7fff819d5fff libGLU.dylib ??? (???) <AA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff819d6000 - 0x7fff81a11fef com.apple.AE 496 (496) <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff81a12000 - 0x7fff81a61ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff81a62000 - 0x7fff81a6ffff libCSync.A.dylib ??? (???) <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff81a70000 - 0x7fff81c2dfff libicucore.A.dylib ??? (???) <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff81c2e000 - 0x7fff81d4cff7 com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff81d4d000 - 0x7fff81d8dfef com.apple.QD 3.31 (???) <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff81d8e000 - 0x7fff81d92ff7 libCGXType.A.dylib ??? (???) <50EB4AB0-0B25-E5DC-FC9E-12268B51F02F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff81d93000 - 0x7fff81dc8ff7 libcups.2.dylib ??? (???) <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff81f29000 - 0x7fff81f42fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff81f83000 - 0x7fff81f84fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff81f85000 - 0x7fff81f8bfff libCGXCoreImage.A.dylib ??? (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff81fe4000 - 0x7fff82098fef com.apple.ColorSync 4.6.0 (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff82099000 - 0x7fff820baff7 com.apple.opencl 11 (11) <A53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff820bb000 - 0x7fff8219ffe7 com.apple.DesktopServices 1.5.0 (1.5.0) <EA3CDFEC-713D-7291-4015-600336E83EDD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff821a0000 - 0x7fff822c2ff7 com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <3CA3B481-9627-6F36-F2B8-C2763DEEB128> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8233d000 - 0x7fff8239ffe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff823a0000 - 0x7fff823ddfff com.apple.LDAPFramework 2.0 (120.1) <0F7DF87D-6A08-02AF-790B-76294FCE8916> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff823de000 - 0x7fff82409ff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff8240a000 - 0x7fff82415fff com.apple.CrashReporterSupport 10.6 (237) <7B22FB86-33C7-A775-2F13-0D3356E2B971> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff82416000 - 0x7fff82425fef com.apple.opengl 1.6.3 (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82426000 - 0x7fff827baff7 com.apple.QuartzCore 1.6.0 (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff827bb000 - 0x7fff829c7ff7 com.apple.RawCamera.bundle 2.2.1 (477) <B4DD9D3B-CD05-5ACE-6808-BEC5660D805C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff829ce000 - 0x7fff82ad8ff7 com.apple.MeshKitIO 1.0 (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff82ad9000 - 0x7fff82bb3ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff82c69000 - 0x7fff82e23fef com.apple.ImageIO.framework 3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff82e24000 - 0x7fff82e35fff SyndicationUI ??? (???) <6B116A70-EA2D-1A61-2C27-35B1CFDFBBD6> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff82eb0000 - 0x7fff82ebdff7 com.apple.AppleFSCompression 1.0 (1.0) <597C8E16-90C0-A7AA-7236-5D1281F20AD0> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff82ebe000 - 0x7fff82ebfff7 com.apple.audio.units.AudioUnit 1.6 (1.6) <7A51FBCE-7907-28A0-B2D2-CAADA78F2913> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff82ec0000 - 0x7fff82f11fe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff82f12000 - 0x7fff82f55ff7 libRIP.A.dylib ??? (???) <8D7113D2-71A7-A205-D2D0-2DB0F37FFBB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff82f56000 - 0x7fff82f76fef com.apple.DirectoryService.Framework 3.6 (621) <925EE208-03B2-B24A-3686-57EAFBDA5ADF> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff82f77000 - 0x7fff83006fff com.apple.PDFKit 2.5 (2.5) <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8303d000 - 0x7fff830ddfff com.apple.LaunchServices 360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff830de000 - 0x7fff830f4fff com.apple.MultitouchSupport.framework 200.20 (200.20) <96B8C66E-D84D-863B-CB1D-F7E005569706> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff830f5000 - 0x7fff83172fef com.apple.backup.framework 1.1 (1.0) <35E2F1B1-C301-EFF7-F222-964D1A6ABE09> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8317f000 - 0x7fff83181fff libRadiance.dylib ??? (???) <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8318d000 - 0x7fff83243fe7 libobjc.A.dylib ??? (???) <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff83244000 - 0x7fff83262ff7 libPng.dylib ??? (???) <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83263000 - 0x7fff832aafef com.apple.QuickLookFramework 2.0 (327.0) <E15E267E-D462-2AD0-DB03-A54E0F94452F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff832e0000 - 0x7fff83306fe7 libJPEG.dylib ??? (???) <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff83307000 - 0x7fff8330afff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff83321000 - 0x7fff83328ff7 com.apple.DisplayServicesFW 2.1 (2.1) <2C039CF5-8AF8-6DA3-3C77-566B22EFB172> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff83329000 - 0x7fff83562fe7 com.apple.imageKit 2.0 (1.0) <F579694D-9FA0-6365-45CD-E380C2EB2573> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff83563000 - 0x7fff835e0fe7 com.apple.CoreText 3.0.0 (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff83642000 - 0x7fff836fbfff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff836fc000 - 0x7fff83703fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff83704000 - 0x7fff8383cff7 com.apple.CoreData 102 (246) <0502CBD8-513E-C19A-3562-20EC35535D71> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8383d000 - 0x7fff8384efff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff8384f000 - 0x7fff83852ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83853000 - 0x7fff8395cfff com.apple.MediaToolbox 0.420.17 (420.17) <31834AB2-1BFF-92D5-A8D2-21B0AE51FA98> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8395d000 - 0x7fff83960ff7 libCoreVMClient.dylib ??? (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff83961000 - 0x7fff839cdff7 com.apple.CorePDF 1.0 (1.0) <8D76B569-F938-6337-533A-5C8A69B005DA> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff839ce000 - 0x7fff839d4ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff839d5000 - 0x7fff83c59fff com.apple.security 6.0 (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff83c5a000 - 0x7fff83c5aff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff83c5b000 - 0x7fff83c71fff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff83c72000 - 0x7fff83c72ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff83c73000 - 0x7fff83ca3fef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff83ca6000 - 0x7fff83e65fe7 libSystem.B.dylib ??? (???) <1AABDC4B-CBAE-F40C-405C-DAE785959F57> /usr/lib/libSystem.B.dylib
    0x7fff83e66000 - 0x7fff83ed0fe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff83ee5000 - 0x7fff83f60ff7 com.apple.ISSupport 1.9.1 (49) <EF46DFEE-3B41-97C1-1BE6-A19A1786B85F> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff83f61000 - 0x7fff84038fef com.apple.DiscRecording 5.0 (5000.4.6) <34DF0AA3-916C-811D-A32E-0CD8D0C51FFC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff84039000 - 0x7fff8403aff7 com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-CA9A3802FAE2> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8403b000 - 0x7fff840a3ff7 com.apple.MeshKitRuntime 1.0 (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff840d0000 - 0x7fff840e5fff com.apple.LangAnalysis 1.6.5 (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff840f1000 - 0x7fff847e35d7 com.apple.CoreGraphics 1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff847e4000 - 0x7fff8484afe7 com.apple.AppleVAFramework 4.6.2 (4.6.2) <3DA57727-EAD1-A199-4093-54CC4698A109> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84b8a000 - 0x7fff84c56fff com.apple.CFNetwork 454.4 (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff84c57000 - 0x7fff84c6dfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff84c6e000 - 0x7fff84ea4fef com.apple.AddressBook.framework 5.0 (862) <06928F7A-AFEC-7C7F-E1EC-D99983588C00> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff84ea5000 - 0x7fff84ee0ff7 com.apple.CoreMediaIOServices 101.0 (715) <7B93206A-FEC5-FCC3-3587-91E3CEC61797> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff84ee1000 - 0x7fff84f09fff com.apple.DictionaryServices 1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84f0a000 - 0x7fff84f53ff7 com.apple.securityinterface 4.0 (36981) <F14235A2-8320-1A71-24FE-EB22008483E9> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff84f54000 - 0x7fff850c1fe7 com.apple.QTKit 7.6.3 (1584) <6D02A542-5202-4022-2050-5BE01F70D225> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff850c2000 - 0x7fff850ffff7 libFontRegistry.dylib ??? (???) <43ADB89E-036B-9D8F-CC4B-CE6B6BCC5AB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff85100000 - 0x7fff85139ff7 com.apple.MeshKit 1.0 (49.0) <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff8515b000 - 0x7fff8518aff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff8518b000 - 0x7fff8520ffff com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff85210000 - 0x7fff85210ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8525c000 - 0x7fff852dafef com.apple.audio.CoreAudio 3.2.0 (3.2) <51E4AA76-3A8A-2B78-95D2-582501421A4E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff852db000 - 0x7fff8538afef edu.mit.Kerberos 6.5.8 (6.5.8) <A9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8538b000 - 0x7fff855f5ff7 com.apple.QuartzComposer 4.0 (156.6) <4E43D357-4A18-5D16-02E8-14324A5B9302> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff855f6000 - 0x7fff8561aff7 com.apple.CoreVideo 1.6.0 (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8561b000 - 0x7fff85627fef libbz2.1.0.dylib ??? (???) <4AA81AA7-DF37-6430-07D1-F59F37AEC357> /usr/lib/libbz2.1.0.dylib
    0x7fff85628000 - 0x7fff8567dfef com.apple.framework.familycontrols 2.0 (2.0) <2520A455-5487-1964-C5D9-D284699D2537> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8567e000 - 0x7fff8568ffef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff85690000 - 0x7fff8572afe7 com.apple.ApplicationServices.ATS 4.0 (???) <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8572b000 - 0x7fff85736fff com.apple.HelpData 2.0.3 (33) <51BB9EFA-8C21-A7F9-09C7-E0DE1E5EC3B1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff85737000 - 0x7fff85778ff7 com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-F954-0D283DD0F714> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff85779000 - 0x7fff8587efe7 libGLProgrammability.dylib ??? (???) <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff8587f000 - 0x7fff858c2fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff858c3000 - 0x7fff858c3ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff858c4000 - 0x7fff858d3fff com.apple.NetFS 3.2 (3.2) <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff858d4000 - 0x7fff85a47fef com.apple.CoreFoundation 6.6 (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff85a48000 - 0x7fff85a4eff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff85a65000 - 0x7fff85a6afff libGIF.dylib ??? (???) <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff85a87000 - 0x7fff85a8cfff libGFXShared.dylib ??? (???) <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff85ae1000 - 0x7fff85b71fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff85b72000 - 0x7fff86595fe7 com.apple.WebCore 6531 (6531.9) <6DEBA397-4369-A8B1-1757-40FD454F6B51> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff86596000 - 0x7fff865cdff7 libssl.0.9.8.dylib ??? (???) <2D7FAEF9-A3CD-9F80-7CDE-852D3C93AEDB> /usr/lib/libssl.0.9.8.dylib
    0x7fff865ce000 - 0x7fff867b1ff7 libType1Scaler.dylib ??? (???) <A5EFDAB3-6293-8A83-532E-C71C58F6BD16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff86800000 - 0x7fff8684aff7 com.apple.Metadata 10.6.0 (507.1) <AA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8686f000 - 0x7fff8687aff7 com.apple.speech.recognition.framework 3.10.10 (3.10.10) <7E2A89FC-0F18-1CCC-472E-AD0E2BC2DD4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff86940000 - 0x7fff86984fef com.apple.ImageCaptureCore 1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff869b5000 - 0x7fff869c7fe7 libsasl2.2.dylib ??? (???) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff869f2000 - 0x7fff86e35fef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff86e36000 - 0x7fff86e3aff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86e3b000 - 0x7fff86ec7fef SecurityFoundation ??? (???) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff86ec8000 - 0x7fff86edbfff libGL.dylib ??? (???) <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86edc000 - 0x7fff86f22fe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86f23000 - 0x7fff86f31ff7 libkxld.dylib ??? (???) <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff86f41000 - 0x7fff86f64ff7 MetadataLib.dylib ??? (???) <FDA25269-7BE5-26AB-7813-CF93951C782D> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0x7fff86f68000 - 0x7fff86fe5fef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff86fe6000 - 0x7fff86fe6ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff86fe7000 - 0x7fff86ffbff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff87045000 - 0x7fff87080fff libcurl.4.dylib ??? (???) <383AC19D-AEED-9F53-DEA3-FF118BDD3735> /usr/lib/libcurl.4.dylib
    0x7fff870b8000 - 0x7fff870b8ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff870b9000 - 0x7fff871f6fef com.apple.WebKit 6531 (6531.9) <17A680A1-FE75-81E5-952A-047E5FA96F66> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87227000 - 0x7fff87228fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff87229000 - 0x7fff87329fef com.apple.DiskImagesFramework 10.6 (281) <8C1B230C-AE15-4F19-F5BB-ADCBFC136E08> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8732a000 - 0x7fff8734bfff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff873bf000 - 0x7fff87db1fef com.apple.AppKit 6.6 (1038) <D4AB61F8-371E-D197-6F3D-DE397D1A717C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff87db2000 - 0x7fff87df9ff7 com.apple.coreui 0.2 (112) <E64F7594-7829-575F-666A-0B16875FC644> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff87dfa000 - 0x7fff87eb5ff7 libFontParser.dylib ??? (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff87eb6000 - 0x7fff87faefe7 libiconv.2.dylib ??? (???) <ECEE3D93-B5E3-F0E0-803E-CA3DC3B33D57> /usr/lib/libiconv.2.dylib
    0x7fff87faf000 - 0x7fff87feafe7 com.apple.CoreMedia 0.420.17 (420.17) <E299556E-6930-DC30-DA23-88B812AF63CA> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff87feb000 - 0x7fff88025fff com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff88026000 - 0x7fff88026ff7 com.apple.vecLib 3.5 (vecLib 3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88027000 - 0x7fff88359fef com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8835a000 - 0x7fff883a9ff7 libTIFF.dylib ??? (???) <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff883b3000 - 0x7fff8847efe7 ColorSyncDeprecated.dylib ??? (???) <03DA3BF0-1293-8947-A8B6-5E599F5B5DC7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff88500000 - 0x7fff88781fe7 com.apple.Foundation 6.6 (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88782000 - 0x7fff88a7ffef com.apple.HIToolbox 1.6.0 (???) <870B39B2-55BD-9C82-72EB-2E3470BD0E14> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff88a80000 - 0x7fff88ab1fef libTrueTypeScaler.dylib ??? (???) <3F30259E-9EB0-18D2-B0F3-7B8A9625574E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff88ab2000 - 0x7fff88b34fef com.apple.QuickLookUIFramework 2.0 (327.0) <B9850E11-3F04-100F-0122-B4AD6222A43F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <1AABDC4B-CBAE-F40C-405C-DAE785959F57> /usr/lib/libSystem.B.dylib
    Model: MacBook3,1, BootROM MB31.008E.B02, 2 processors, Intel Core 2 Duo, 2.2 GHz, 4 GB, SMC 1.24f2
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.0f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST9120822AS, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0608, 0xfd100000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0608, 0xfd110000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: External HDD, 0x1058 (Western Digital Technologies, Inc.), 0x0704, 0xfa200000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0229, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000
    FireWire Device: Duet, Apogee Electronics, Up to 400 Mb/sec

    Process: Safari [319]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (6531.9)
    Build Info: WebBrowser-65310900~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [91]
    Date/Time: 2009-09-13 14:48:38.924 -0400
    OS Version: Mac OS X 10.6 (10A432)
    Report Version: 6
    Interval Since Last Report: 6162 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 6096 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 382FA0A0-EA46-41C3-94F0-1C303831AF82
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000020
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.WebCore 0x00007fff85d96a00 WebCore::RenderWidget::destroy() + 288
    1 com.apple.WebCore 0x00007fff85c01e96 WebCore::Node::detach() + 38
    2 com.apple.WebCore 0x00007fff85c01d4e WebCore::Element::detach() + 110
    3 com.apple.WebCore 0x00007fff85c01cbc WebCore::ContainerNode::detach() + 44
    4 com.apple.WebCore 0x00007fff85c01d4e WebCore::Element::detach() + 110
    5 com.apple.WebCore 0x00007fff85d4a490 WebCore::ContainerNode::removeChild(WebCore::Node*, int&) + 384
    6 com.apple.WebCore 0x00007fff85d5aa67 WebCore::JSNode::removeChild(JSC::ExecState*, JSC::ArgList const&) + 87
    7 com.apple.WebCore 0x00007fff85d5aa0e WebCore::jsNodePrototypeFunctionRemoveChild(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 110
    8 ??? 0x00002b1301a002e4 0 + 47360631636708
    9 com.apple.JavaScriptCore 0x00007fff804bacf6 JSC::Interpreter::execute(JSC::FunctionBodyNode*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 630
    10 ??? 0x000000011e2cc840 0 + 4801218624
    11 ??? 0x000000011d3d0a20 0 + 4785506848
    12 com.apple.WebCore 0x00007fff86228b80 WebCore::JSDOMWindowShell::~JSDOMWindowShell() + 0
    13 ??? 0x9090909090900000 0 + 10416984888683003904
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff83cbfc7e kevent + 10
    1 libSystem.B.dylib 0x00007fff83cc1b55 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff83cc1824 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff83cc134e dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff83cc0c80 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff83ce1ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83ce58c1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff85b78f89 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff85b74cea WebCore::IconDatabase::iconDatabaseSyncThread() + 170
    4 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x0000000100025673 0x100000000 + 153203
    5 com.apple.Safari 0x0000000100025603 0x100000000 + 153091
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 4: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff83ce1ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83ce58c1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff8039d750 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001213ef 0x100000000 + 1184751
    4 com.apple.Safari 0x000000010004441b 0x100000000 + 279579
    5 com.apple.Safari 0x00000001000442b7 0x100000000 + 279223
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8859051f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff88510f65 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff83ceaaae select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff85941252 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff82478296 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff824781d6 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 8: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff83ce1ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83ce58c1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff8039d750 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff85bdeb1f WebCore::LocalStorageThread::localStorageThread() + 351
    4 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff83cc0aa2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83cc0eb4 pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 10: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff83ca6efa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83ca756d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8591fce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff8591f03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8854ba94 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8854b973 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x0000000100035795 0x100000000 + 219029
    7 com.apple.Foundation 0x00007fff88510f65 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff83ce006e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff83cdff21 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff83cc0aa2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83cc0eb4 pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83cc0b1d start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x0000000117c32960 rcx: 0x0000000118c8ae00 rdx: 0x000000010000000a
    rdi: 0x0000000117c32960 rsi: 0x0000000000000040 rbp: 0x00007fff5fbfe300 rsp: 0x00007fff5fbfe2c0
    r8: 0x00000000f0142907 r9: 0x00000000f0142907 r10: 0x000000000000003f r11: 0x0000000117c32960
    r12: 0x000000011a49bd08 r13: 0x0000000118c59b60 r14: 0x000000011aed3690 r15: 0x0000000000000000
    rip: 0x00007fff85d96a00 rfl: 0x0000000000010202 cr2: 0x0000000000000020
    Binary Images:
    0x100000000 - 0x10024ffff com.apple.Safari 4.0.3 (6531.9) <85520F41-6D13-C548-9D3F-A3013EFB1D8D> /Applications/Safari.app/Contents/MacOS/Safari
    0x113bb3000 - 0x113bb3fff com.apple.JavaPluginCocoa 13.0.0 (13.0.0) <02EA2DA9-59AB-9A18-EE03-6A7147EAE31D> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x113bb7000 - 0x113bbeff7 com.apple.JavaVM 13.0.0 (13.0.0) <D98F6BC3-5901-F2E4-BA32-054953E7E877> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1142ac000 - 0x1142cbfff GLRendererFloat ??? (???) <C513339A-CBB3-9F17-1AE2-48083D79A507> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x114485000 - 0x114610ff7 GLEngine ??? (???) <3E2DEFB1-190A-FBAD-C48F-E90B45EED8A4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x114640000 - 0x114afdff7 com.apple.driver.AppleIntelGMAX3100GLDriver 1.6.0 (6.0.0) <ABC0A78A-DDAE-EAEB-BABA-C17FD2D479C9> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80003ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff80004000 - 0x7fff80009ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff80336000 - 0x7fff80393fef com.apple.framework.IOKit 2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff80394000 - 0x7fff80518fff com.apple.JavaScriptCore 6531 (6531.5) <8C470ACB-1A45-71FC-673D-34EA3F5EF0DC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff80519000 - 0x7fff80628ff7 libcrypto.0.9.8.dylib ??? (???) <A2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff80629000 - 0x7fff8065afff libGLImage.dylib ??? (???) <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8065b000 - 0x7fff8065dfff com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff806a9000 - 0x7fff8075efff com.apple.ink.framework 1.3 (104) <9B552E27-7E3F-6767-058A-C998E8F78692> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8075f000 - 0x7fff80c57ff7 com.apple.VideoToolbox 0.420.17 (420.17) <E034AA6E-A1E4-BB8F-5AFA-F5C354DDD889> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff80c58000 - 0x7fff80ca5ff7 libauto.dylib ??? (???) <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fff80ca6000 - 0x7fff814b0fe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff81753000 - 0x7fff8176eff7 com.apple.openscripting 1.3 (???) <DFBFBFD3-90C0-0710-300C-1A7210CB3713> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8176f000 - 0x7fff81886fef libxml2.2.dylib ??? (???) <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff818bc000 - 0x7fff81978ff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff81979000 - 0x7fff819d5fff libGLU.dylib ??? (???) <AA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff819d6000 - 0x7fff81a11fef com.apple.AE 496 (496) <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff81a12000 - 0x7fff81a61ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff81a62000 - 0x7fff81a6ffff libCSync.A.dylib ??? (???) <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff81a70000 - 0x7fff81c2dfff libicucore.A.dylib ??? (???) <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff81c2e000 - 0x7fff81d4cff7 com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff81d4d000 - 0x7fff81d8dfef com.apple.QD 3.31 (???) <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff81d8e000 - 0x7fff81d92ff7 libCGXType.A.dylib ??? (???) <50EB4AB0-0B25-E5DC-FC9E-12268B51F02F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff81d93000 - 0x7fff81dc8ff7 libcups.2.dylib ??? (???) <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff81f29000 - 0x7fff81f42fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff81f83000 - 0x7fff81f84fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff81f85000 - 0x7fff81f8bfff libCGXCoreImage.A.dylib ??? (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff81fe4000 - 0x7fff82098fef com.apple.ColorSync 4.6.0 (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff82099000 - 0x7fff820baff7 com.apple.opencl 11 (11) <A53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff820bb000 - 0x7fff8219ffe7 com.apple.DesktopServices 1.5.0 (1.5.0) <EA3CDFEC-713D-7291-4015-600336E83EDD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff821a0000 - 0x7fff822c2ff7 com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <3CA3B481-9627-6F36-F2B8-C2763DEEB128> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8233d000 - 0x7fff8239ffe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff823a0000 - 0x7fff823ddfff com.apple.LDAPFramework 2.0 (120.1) <0F7DF87D-6A08-02AF-790B-76294FCE8916> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff823de000 - 0x7fff82409ff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff8240a000 - 0x7fff82415fff com.apple.CrashReporterSupport 10.6 (237) <7B22FB86-33C7-A775-2F13-0D3356E2B971> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff82416000 - 0x7fff82425fef com.apple.opengl 1.6.3 (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82426000 - 0x7fff827baff7 com.apple.QuartzCore 1.6.0 (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff827bb000 - 0x7fff829c7ff7 com.apple.RawCamera.bundle 2.2.1 (477) <B4DD9D3B-CD05-5ACE-6808-BEC5660D805C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff829ce000 - 0x7fff82ad8ff7 com.apple.MeshKitIO 1.0 (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff82ad9000 - 0x7fff82bb3ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff82c69000 - 0x7fff82e23fef com.apple.ImageIO.framework 3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff82e24000 - 0x7fff82e35fff SyndicationUI ??? (???) <6B116A70-EA2D-1A61-2C27-35B1CFDFBBD6> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff82ebe000 - 0x7fff82ebfff7 com.apple.audio.units.AudioUnit 1.6 (1.6) <7A51FBCE-7907-28A0-B2D2-CAADA78F2913> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff82ec0000 - 0x7fff82f11fe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff82f12000 - 0x7fff82f55ff7 libRIP.A.dylib ??? (???) <8D7113D2-71A7-A205-D2D0-2DB0F37FFBB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff82f56000 - 0x7fff82f76fef com.apple.DirectoryService.Framework 3.6 (621) <925EE208-03B2-B24A-3686-57EAFBDA5ADF> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff82f77000 - 0x7fff83006fff com.apple.PDFKit 2.5 (2.5) <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8303d000 - 0x7fff830ddfff com.apple.LaunchServices 360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff830de000 - 0x7fff830f4fff com.apple.MultitouchSupport.framework 200.20 (200.20) <96B8C66E-D84D-863B-CB1D-F7E005569706> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff830f5000 - 0x7fff83172fef com.apple.backup.framework 1.1 (1.0) <35E2F1B1-C301-EFF7-F222-964D1A6ABE09> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8317f000 - 0x7fff83181fff libRadiance.dylib ??? (???) <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8318d000 - 0x7fff83243fe7 libobjc.A.dylib ??? (???) <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff83244000 - 0x7fff83262ff7 libPng.dylib ??? (???) <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83263000 - 0x7fff832aafef com.apple.QuickLookFramework 2.0 (327.0) <E15E267E-D462-2AD0-DB03-A54E0F94452F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff832e0000 - 0x7fff83306fe7 libJPEG.dylib ??? (???) <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff83307000 - 0x7fff8330afff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff83321000 - 0x7fff83328ff7 com.apple.DisplayServicesFW 2.1 (2.1) <2C039CF5-8AF8-6DA3-3C77-566B22EFB172> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff83329000 - 0x7fff83562fe7 com.apple.imageKit 2.0 (1.0) <F579694D-9FA0-6365-45CD-E380C2EB2573> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff83563000 - 0x7fff835e0fe7 com.apple.CoreText 3.0.0 (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff83642000 - 0x7fff836fbfff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff836fc000 - 0x7fff83703fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff83704000 - 0x7fff8383cff7 com.apple.CoreData 102 (246) <0502CBD8-513E-C19A-3562-20EC35535D71> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8383d000 - 0x7fff8384efff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff8384f000 - 0x7fff83852ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83853000 - 0x7fff8395cfff com.apple.MediaToolbox 0.420.17 (420.17) <31834AB2-1BFF-92D5-A8D2-21B0AE51FA98> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8395d000 - 0x7fff83960ff7 libCoreVMClient.dylib ??? (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff83961000 - 0x7fff839cdff7 com.apple.CorePDF 1.0 (1.0) <8D76B569-F938-6337-533A-5C8A69B005DA> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff839ce000 - 0x7fff839d4ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff839d5000 - 0x7fff83c59fff com.apple.security 6.0 (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff83c5a000 - 0x7fff83c5aff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff83c5b000 - 0x7fff83c71fff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff83c72000 - 0x7fff83c72ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff83ca6000 - 0x7fff83e65fe7 libSystem.B.dylib ??? (???) <1AABDC4B-CBAE-F40C-405C-DAE785959F57> /usr/lib/libSystem.B.dylib
    0x7fff83e66000 - 0x7fff83ed0fe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff83ee5000 - 0x7fff83f60ff7 com.apple.ISSupport 1.9.1 (49) <EF46DFEE-3B41-97C1-1BE6-A19A1786B85F> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff84039000 - 0x7fff8403aff7 com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-CA9A3802FAE2> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8403b000 - 0x7fff840a3ff7 com.apple.MeshKitRuntime 1.0 (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff840d0000 - 0x7fff840e5fff com.apple.LangAnalysis 1.6.5 (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff840f1000 - 0x7fff847e35d7 com.apple.CoreGraphics 1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff847e4000 - 0x7fff8484afe7 com.apple.AppleVAFramework 4.6.2 (4.6.2) <3DA57727-EAD1-A199-4093-54CC4698A109> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84b8a000 - 0x7fff84c56fff com.apple.CFNetwork 454.4 (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff84c57000 - 0x7fff84c6dfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff84c6e000 - 0x7fff84ea4fef com.apple.AddressBook.framework 5.0 (862) <06928F7A-AFEC-7C7F-E1EC-D99983588C00> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff84ea5000 - 0x7fff84ee0ff7 com.apple.CoreMediaIOServices 101.0 (715) <7B93206A-FEC5-FCC3-3587-91E3CEC61797> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff84ee1000 - 0x7fff84f09fff com.apple.DictionaryServices 1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84f0a000 - 0x7fff84f53ff7 com.apple.securityinterface 4.0 (36981) <F14235A2-8320-1A71-24FE-EB22008483E9> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff84f54000 - 0x7fff850c1fe7 com.apple.QTKit 7.6.3 (1584) <6D02A542-5202-4022-2050-5BE01F70D225> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff850c2000 - 0x7fff850ffff7 libFontRegistry.dylib ??? (???) <43ADB89E-036B-9D8F-CC4B-CE6B6BCC5AB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff85100000 - 0x7fff85139ff7 com.apple.MeshKit 1.0 (49.0) <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff8515b000 - 0x7fff8518aff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff8518b000 - 0x7fff8520ffff com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff85210000 - 0x7fff85210ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8525c000 - 0x7fff852dafef com.apple.audio.CoreAudio 3.2.0 (3.2) <51E4AA76-3A8A-2B78-95D2-582501421A4E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff852db000 - 0x7fff8538afef edu.mit.Kerberos 6.5.8 (6.5.8) <A9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8538b000 - 0x7fff855f5ff7 com.apple.QuartzComposer 4.0 (156.6) <4E43D357-4A18-5D16-02E8-14324A5B9302> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff855f6000 - 0x7fff8561aff7 com.apple.CoreVideo 1.6.0 (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff85628000 - 0x7fff8567dfef com.apple.framework.familycontrols 2.0 (2.0) <2520A455-5487-1964-C5D9-D284699D2537> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8567e000 - 0x7fff8568ffef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff85690000 - 0x7fff8572afe7 com.apple.ApplicationServices.ATS 4.0 (???) <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff85737000 - 0x7fff85778ff7 com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-F954-0D283DD0F714> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff85779000 - 0x7fff8587efe7 libGLProgrammability.dylib ??? (???) <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff8587f000 - 0x7fff858c2fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff858c3000 - 0x7fff858c3ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff858c4000 - 0x7fff858d3fff com.apple.NetFS 3.2 (3.2) <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff858d4000 - 0x7fff85a47fef com.apple.CoreFoundation 6.6 (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff85a48000 - 0x7fff85a4eff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff85a65000 - 0x7fff85a6afff libGIF.dylib ??? (???) <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff85a87000 - 0x7fff85a8cfff libGFXShared.dylib ??? (???) <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff85ae1000 - 0x7fff85b71fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff85b72000 - 0x7fff86595fe7 com.apple.WebCore 6531 (6531.9) <6DEBA397-4369-A8B1-1757-40FD454F6B51> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff86596000 - 0x7fff865cdff7 libssl.0.9.8.dylib ??? (???) <2D7FAEF9-A3CD-9F80-7CDE-852D3C93AEDB> /usr/lib/libssl.0.9.8.dylib
    0x7fff86800000 - 0x7fff8684aff7 com.apple.Metadata 10.6.0 (507.1) <AA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8686f000 - 0x7fff8687aff7 com.apple.speech.recognition.framework 3.10.10 (3.10.10) <7E2A89FC-0F18-1CCC-472E-AD0E2BC2DD4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff86940000 - 0x7fff86984fef com.apple.ImageCaptureCore 1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff869b5000 - 0x7fff869c7fe7 libsasl2.2.dylib ??? (???) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff869f2000 - 0x7fff86e35fef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff86e36000 - 0x7fff86e3aff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86e3b000 - 0x7fff86ec7fef SecurityFoundation ??? (???) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff86ec8000 - 0x7fff86edbfff libGL.dylib ??? (???) <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86edc000 - 0x7fff86f22fe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86f23000 - 0x7fff86f31ff7 libkxld.dylib ??? (???) <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff86f68000 - 0x7fff86fe5fef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff86fe6000 - 0x7fff86fe6ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff86fe7000 - 0x7fff86ffbff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff870b8000 - 0x7fff870b8ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff870b9000 - 0x7fff871f6fef com.apple.WebKit 6531 (6531.9) <17A680A1-FE75-81E5-952A-047E5FA96F66> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87227000 - 0x7fff87228fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff8732a000 - 0x7fff8734bfff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff873bf000 - 0x7fff87db1fef com.apple.AppKit 6.6 (1038) <D4AB61F8-371E-D197-6F3D-DE397D1A717C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff87db2000 - 0x7fff87df9ff7 com.apple.coreui 0.2 (112) <E64F7594-7829-575F-666A-0B16875FC644> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff87dfa000 - 0x7fff87eb5ff7 libFontParser.dylib ??? (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff87faf000 - 0x7fff87feafe7 com.apple.CoreMedia 0.420.17 (420.17) <E299556E-6930-DC30-DA23-88B812AF63CA> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff88026000 - 0x7fff88026ff7 com.apple.vecLib 3.5 (vecLib 3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88027000 - 0x7fff88359fef com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8835a000 - 0x7fff883a9ff7 libTIFF.dylib ??? (???) <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff883b3000 - 0x7fff8847efe7 ColorSyncDeprecated.dylib ??? (???) <03DA3BF0-1293-8947-A8B6-5E599F5B5DC7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff88500000 - 0x7fff88781fe7 com.apple.Foundation 6.6 (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88782000 - 0x7fff88a7ffef com.apple.HIToolbox 1.6.0 (???) <870B39B2-55BD-9C82-72EB-2E3470BD0E14> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff88a80000 - 0x7fff88ab1fef libTrueTypeScaler.dylib ??? (???) <3F30259E-9EB0-18D2-B0F3-7B8A9625574E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff88ab2000 - 0x7fff88b34fef com.apple.QuickLookUIFramework 2.0 (327.0) <B9850E11-3F04-100F-0122-B4AD6222A43F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <1AABDC4B-CBAE-F40C-405C-DAE785959F57> /usr/lib/libSystem.B.dylib
    Model: MacBook3,1, BootROM MB31.008E.B02, 2 processors, Intel Core 2 Duo, 2.2 GHz, 4 GB, SMC 1.24f2
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.0f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST9120822AS, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: External HDD, 0x1058 (Western Digital Technologies, Inc.), 0x0704, 0xfd100000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0608, 0xfa200000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0608, 0xfa210000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0229, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000
    FireWire Device: Duet, Apogee Electronics, Up to 400 Mb/sec

  • Error when loading a JSP twice

    Hello,
    I have a problem having JSP to work with iPlanet 4.1 : my JSPs just want to run once !
    When I stop and start iPlanet, all of my JSP pages work, but I get a "500 Server Error" if I try to reload one of these more than once.
    When I check the error log, I can see for the first call :
    - Internal Info: loading servlet /test.jsp
    And for each of the next calls :
    - trying to GET /test.jpg, process-uri-objects reports: cannot find template servlet
    iPlanet seems to serve the JSP correctly only if it's just compiled it...
    Has anyone seen this before?
    I am running iWS4.1 sp11

    My fix: add the following to the obj.conf file:
    <Object name="servlet">
    ObjectType fn="force-type" type="text/html"
    Service fn="NSServletService"
    </Object>

  • Logic crashes when loading preferences

    hi!
    can anyone please help? for some reason logic has started crashing when loading the preferences. i noticed for some reason it was playing through the built in audio rather than my motu interface, so i tried loading the preferences to change it and it just crashes every time. this has happened since i reinstalled logic studio 8, because it was giving me an error message on startup that caused it to crash. the error message i was getting was saying i have the wrong pro applications support installed (of which i could not alter or upgrade for some reason). so i went for a reinstall.. and now this other problem. any help would be greatly appreciated!
    i am running logic studio 8.0.2 on a powermac dual 2ghz G5
    with 3gb ram and osx 10.5.3

    Don't wipe your hard disk! (yet)
    It's probably that your preferences have become corrupted. Go to User/Library/Preferences and trash your Logic preferences (com.apple.logic.pro.cs & com.apple.logic.pro.plist).
    Reopen Logic and see what happens. The only problem is that you will lose all your keyboard commands etc., but they're a lot easier to recreate than reinstalling and authorising everything onto your hard drive.
    Also, make a copy of your preferences once you've set everything up so that if you need to trash your preferences again sometime in the future, you can just replace them with the copies you've made.
    I guess if none of this works then you may need reinstall Logic and, at worst everything else.

  • Receive error messaage when loading pogo fb connect library is missing (all.js) but will load fine on chrome

    the website loads fine, but when loading the message [ fb connect library is missing (all.js) ] appears and i cannot select a room for play. i downloaded chrome and I no longer received the message, which led me to believe that the firefox browser must have something to do with this problem. I have already cleared all browsing history and cache, including java cache, I have uninstalled Firefox and reinstalled it
    I prefer firefox over chrome but will have to have chrome just to play my games.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • How to hold the value of a prompted password in a variable while file is open?

    I have this little VBA macro that uses ADODB to execute a SQL Server Agent job remotely.  It is in an Excel file, and there will be several other similar macros in the same Excel file.  They will be used at least 10 times, each time the user opens th

  • 2 years of this fan noise....check my temperature?

    so i've been battling the dreaded imac g5 (first gen) fan noise for the entire 2 years I've had the computer now. one midplane (out of 3 now? 4?) almost fixed the problem, but it had other problems. For the past year I have just let it go as it was i

  • Unzipping a jar file

    how do Unzip a jar file?

  • Analytics login is erroring out

    Hi All, I am trying to loign to analytics using http://localhost:7001/analytics Login : weblogic I am sure the password is correct but its not loging me in. Error : Unable to Sign In An invalid User Name or Password was entered. Thanks.

  • Change multiprovider which is assigned to aggregation level

    Hi guys, is there a easy way to change multiprovider which is assigned to aggregation level? We have already some queries, filters and functions on the aggregation level. So we cant simply delete it and create another one. I just want to change multi