Pop3 message numbers

Hi
I am writing an email client using javamail and POP3 server. But the problem is if I delete any mail then the messages are reordered but when a new mail arrives it is given a message number in the middle .
Can any one tell what exact algorithm is used for givimg the message number. Or any other way for tracking new messages.
Any Help will be welcome.

hi,
Try this....... It will show you the listing of ur messages......
=================================
import java.util.*;
import java.io.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
import com.sun.mail.pop3.* ;
import com.sun.mail.imap.* ;
public class SunMsgShow
static String protocol =null ;
static String host = null ;
static String user = null;
static String password = null;
static String mbox = "INBOX";
static int port = -1;
     public static void main(String s[])
          protocol = "pop3" ;
          host = "pop.mail.yahoo.com" ;
          user = "shahnazali_99" ;
          password = "ur Password here";
     try
                         Properties props = System.getProperties();
                         Session session = Session.getDefaultInstance(props, null);
                         session.setDebug(false );
                         // Get a Store object
                         Store store = null;
                              if (protocol != null)
                                   store = session.getStore(protocol);
                              else
                                   store = session.getStore();
                              // Connect
                              if (host != null || user != null || password != null)
                                   store.connect(host, port, user, password);
                              else
                                   store.connect();
                         // Open the Folder
                         Folder folder = store.getDefaultFolder();
                         if (folder == null)
                              System.exit(0) ;
                         folder = folder.getFolder(mbox);
                         if (folder == null)
                              System.exit(0) ;
                         try
                              folder.open(Folder.READ_WRITE);
                         catch (MessagingException ex)
                              folder.open(Folder.READ_ONLY);
                              // Attributes & Flags for all messages ..
                              Message[] msgs = folder.getMessages();
                              // Use a suitable FetchProfile
                              FetchProfile fp = new FetchProfile();
                              fp.add(FetchProfile.Item.ENVELOPE);
                              folder.fetch(msgs, fp);
                              for (int i = 0; i < msgs.length; i++)
                                   dumpMessageHeader(msgs);
                                   if (folder instanceof com.sun.mail.pop3.POP3Folder)
                                        com.sun.mail.pop3.POP3Folder pf = (com.sun.mail.pop3.POP3Folder)folder;
                                   String uid = pf.getUID(msgs[i]);
                                   if (uid != null)
                                             System.out.println ( "UID:" + uid );
                                   else
                                        if (folder instanceof com.sun.mail.imap.IMAPFolder)
                                             com.sun.mail.imap.IMAPFolder pf = (com.sun.mail.imap.IMAPFolder)folder;
                                             long uid = pf.getUID(msgs[i]);
                                             System.out.println ( "UID:" + uid );
                         folder.close(false);
                         store.close();
          catch (AuthenticationFailedException ex)
          catch (MessagingException ex)
public static void dumpMessageHeader(Message m) throws MessagingException
               Address[] a;
               String from = "";
               String subject ="";
          // FROM
               if ((a = m.getFrom()) != null)
               for (int j = 0; j < a.length; j++)
                         from = from + " " + a[j];
          // SUBJECT
               subject = m.getSubject() ;
               String aboutMessage = "From " + from + " Subject: " + subject ;
               System.out.println ( aboutMessage);
=================================
Bye,
Shaan

Similar Messages

  • How can we view the error message numbers in the web ui?

    Dear all,
    How can we view the error message numbers in the web ui? It gives the error but no number.  It is possible to debug in web UI so how can we accomplish this?
    Thanks,
    FK

    Hi  Fakhan,
    You can absolutely do that.
    Check the class: CL_BSP_MESSAGES
    Also if you want to find out the exact Message Class and Message Number, go to table T100, type text in field TEXT, you will get Message Class and Message number in fields ARBGB and MSGNR respectively.
    I hope this helps.
    THanks
    Vishal

  • CCMS monitoring for SAPconnect based on Error Message Numbers

    Hi,
    We are trying to use the CCMS monitoring to produce alerts for SAPconnect based specific Error Message Numbers for emails for example, however the monitoring function or data collection method for SAPconnect (BCOMAL_SXDS) does not provide that level of granularity.  Has anybody faced this same problem and can provide a recommendation for this?
    Thanks,
    Javier

    Hello,
    You can see the message details in SE91.
    In FI, you can control the message number in OBA5. Normally message numbers are issued like this
    AA165
    First two digits (alpha) is called application area next digits are called message number.
    Sometimes, you may not be able to see the messages in OBA5, in such case you need to go to OBMSG transaction code and include the message number to your application area, then you need to come to back to OBA5 to make it information / warning / switch off / error (as the case may be)
    Regards,
    Ravi

  • Regarding message numbers

    What are the message numbers available in ABAP. How can we use that in our code. Can anyone explain me with sample codes, it will be a great help for me.
    Thanks.

    Hi,
    Look at the table T100 for massages Numbers and Message texts, and alos look at the transaction code SE91 for the Numbers
    Look at the sample code for message numbers
         SELECT SINGLE * FROM t100 WHERE sprsl = it_messtab-msgspra
                                            AND   arbgb = it_messtab-msgid
                                            AND   msgnr = it_messtab-msgnr.
          IF sy-subrc = 0.
            g_l_mstring = t100-text.
            IF g_l_mstring CS c_val35.                          " '&1'.
              REPLACE c_val35 WITH it_messtab-msgv1 INTO g_l_mstring.
              REPLACE c_val36 WITH it_messtab-msgv2 INTO g_l_mstring.
              REPLACE c_val37 WITH it_messtab-msgv3 INTO g_l_mstring.
              REPLACE c_val38 WITH it_messtab-msgv4 INTO g_l_mstring.
            ELSE.
              REPLACE c_val39 WITH it_messtab-msgv1 INTO g_l_mstring.
              REPLACE c_val39 WITH it_messtab-msgv2 INTO g_l_mstring.
              REPLACE c_val39 WITH it_messtab-msgv3 INTO g_l_mstring.
              REPLACE c_val39 WITH it_messtab-msgv4 INTO g_l_mstring.
            ENDIF.
            CONDENSE g_l_mstring.
            IF NOT g_l_mstring+0(8) = c_val40.     " 'No batch'.
              g_cnt = g_cnt + 1.
              WRITE: /1 g_cnt,5 g_l_mstring(100).
            ENDIF.
    Regards
    Sudheer

  • Where can I see SAP Message numbers for Errors.

    Dear all,
    Where can I Message No's in SAP.
    for Some error messages, when I click F1 help, system is showing nothing but one message numbers.
    Could you tell me whre can I see all these messages.
    Your advice will be highly rewarded.
    Thank you,
    Raghu ram.

    Hi,
    F1 is just a help to tell u abt the field u r pressing F1 of.
    When u get the error mess. click on that error mess.(Red Line)
    it will tel u abt the error in brief and sometimes will help u with the customization key too.(u can click on the key button of the "Performance Assistant" if thre)
    By the way tell abt the error u r gettin now.
    Hope this helps
    Rgds

  • If I send any message from my iPhone 5 but it keep store number into message contacts is there any way to delete recent sent message numbers ??

    I m getting Problem if I send any Text or Mms from my iPhone 5 it keep stre number in recent sent message list , I don't want to save these number in my recent list , is there any option so that I can delete my sent item message numbers from revord??

    The only way to remove them is to restore the phone as new.

  • Way to know Error Message Numbers.

    Dear Folks,
    Ive a few error messages with me& I need to know Error message numbers for this.
    please provide a suitable way for this.
    Thanks in Adv.
    Regards,
    Varma

    Hello
    Pls check TCode OBA5. choose the application class and you can display system created message numbers.
    You can create your own messages here also.
    Also, the same path can be accessed from Controlling >General Controllin>Change Message control
    Reg
    assign points if useful

  • I received the message, Numbers cannot open - 1712. Can you help?

    I received the message, Numbers cannot open - 1712. Can you help?

    Hi Momperi,
    Error - 1712 could mean a time-out. Reason not clear.
    Hold down the shift key when launching Numbers. That will stop it trying to launch a corrupted document that was not closed when you last quit.
    Try launching Numbers in another user space.
    Try deleting the .plist file (call back for help with this).
    You may have to delete Numbers and reinstall from App Store. (call back for help with this).
    Regards,
    Ian.

  • I got the message "Numbers quit unexpectedly" along with the following:

    Process:         Numbers [1412]
    Path:            /Applications/iWork '09/Numbers.app/Contents/MacOS/Numbers
    Identifier:      com.apple.iWork.Numbers
    Version:         2.1 (436)
    Build Info:      Numbers-4360000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [89]
    Date/Time:       2011-11-22 15:01:37.422 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          105895 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  19771 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      FBC47B5D-2890-481B-AD79-7624FDBCC2EF
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc[1412]: FREED(id): message nextResponder sent to freed object=0x1cf66890
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                   0x933a04fd _objc_error + 116
    1   libobjc.A.dylib                   0x933a0533 __objc_error + 52
    2   libobjc.A.dylib                   0x9339e83a _freedHandler + 58
    3   com.apple.Keynote.sfdrawables     0x015008a4 -[SFDConnectionController teardown] + 212
    4   com.apple.iWork.Numbers           0x00076f1c 0x1000 + 483100
    5   com.apple.Keynote.sfutility       0x01783ee4 -[SFUPair p_SetFirst:] + 52
    6   com.apple.Keynote.sfutility       0x0178e37f -[SFUPair dealloc] + 47
    7   com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    8   com.apple.CoreFoundation          0x98ae45f2 __CFArrayReleaseValues + 434
    9   com.apple.CoreFoundation          0x98abd53d _CFArrayReplaceValues + 237
    10  com.apple.Foundation              0x9980c5fb -[NSCFArray removeObjectAtIndex:] + 178
    11  com.apple.SFTabular               0x01963fb9 -[SFTTableLayoutManager repDisposed:] + 117
    12  com.apple.SFTabular               0x01963e14 -[SFTTableRep dealloc] + 88
    13  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    14  com.apple.CoreFoundation          0x98ae4512 __CFArrayReleaseValues + 210
    15  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    16  com.apple.Keynote.sfdrawables     0x013f8390 -[SFDSelectionController dealloc] + 208
    17  com.apple.Keynote.sfdrawables     0x013f8189 -[SFDCanvas dealloc] + 249
    18  com.apple.iWork.Numbers           0x0004fbab 0x1000 + 322475
    19  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    20  com.apple.CoreFoundation          0x98ae4512 __CFArrayReleaseValues + 210
    21  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    22  com.apple.CoreFoundation          0x98ad23c0 __CFBasicHashStandardCallback + 384
    23  com.apple.CoreFoundation          0x98ad1fce __CFBasicHashDrain + 478
    24  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    25  com.apple.AppKit                  0x9369a404 NSAccessibilityRemoveOverriddenAttributesFromUIElement + 195
    26  com.apple.AppKit                  0x936f3b9a -[NSResponder dealloc] + 89
    27  com.apple.AppKit                  0x936f276f -[NSView dealloc] + 82
    28  com.apple.AppKit                  0x937dcaf3 -[NSControl dealloc] + 163
    29  com.apple.AppKit                  0x937e8a7d -[NSScroller dealloc] + 52
    30  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    31  com.apple.CoreFoundation          0x98ae6bcd _CFAutoreleasePoolPop + 253
    32  com.apple.Foundation              0x997f8976 NSPopAutoreleasePool + 76
    33  com.apple.CoreFoundation          0x98b311f2 CFRunLoopTimerInvalidate + 786
    34  com.apple.CoreFoundation          0x98aebdeb __CFRunLoopRun + 9003
    35  com.apple.CoreFoundation          0x98ae93c4 CFRunLoopRunSpecific + 452
    36  com.apple.CoreFoundation          0x98ae91f1 CFRunLoopRunInMode + 97
    37  com.apple.HIToolbox               0x90955d60 RunCurrentEventLoopInMode + 392
    38  com.apple.HIToolbox               0x90955b17 ReceiveNextEventCommon + 354
    39  com.apple.HIToolbox               0x9095599c BlockUntilNextEventMatchingListInMode + 81
    40  com.apple.AppKit                  0x936ca595 _DPSNextEvent + 847
    41  com.apple.AppKit                  0x936c9dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    42  com.apple.AppKit                  0x9368c1f3 -[NSApplication run] + 821
    43  com.apple.iWork.Numbers           0x0000c8af 0x1000 + 47279
    44  com.apple.iWork.Numbers           0x0000c82c 0x1000 + 47148
    45  com.apple.iWork.Numbers           0x0004fafa 0x1000 + 322298
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x916dd382 kevent + 10
    1   libSystem.B.dylib                 0x916dda9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x916dcf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x916dccfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x916dc781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x916dc5c6 start_wqthread + 30
    Thread 2:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x916d5ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x98b29c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    3   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x916b6b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x916bc646 pthread_mutex_lock + 490
    2   com.apple.Foundation              0x9980101b -[NSLock lock] + 201
    3   SFWordProcessing                  0x024fb129 -[SFWPSpellThread pRun:] + 289
    4   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    7   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x916b6b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x916e46e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x917135a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x998478e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x998003b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x99800294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.SFTabular               0x0194fd21 -[SFTFormulaInitThreadManager formulaWorkerThread] + 91
    7   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    10  libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x916b6afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x916b7267 mach_msg + 68
    2   com.apple.CoreFoundation          0x98aea2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x98ae93c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x98ae91f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x99844224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    7   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    9   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 6:  WebCore: LocalStorage
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore          0x93f71bf1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    5   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 7:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e42b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore          0x93f71c3c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 8:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x916dc412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x916dc9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x916dc5c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x1d95da00  ebx: 0x933a049d  ecx: 0x1d95da00  edx: 0x1d95da40
      edi: 0x1ec0b000  esi: 0x933aa7b7  ebp: 0xbfffdb48  esp: 0xbfffdb00
       ss: 0x00000023  efl: 0x00010286  eip: 0x933a04fd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x025f9076
    Binary Images:
        0x1000 -   0x161ffc  com.apple.iWork.Numbers 2.1 (436) <3D71BA2D-914E-7545-1F26-C2701CDD976F> /Applications/iWork '09/Numbers.app/Contents/MacOS/Numbers
      0x19c000 -   0xc86fe6 +SFCompatibility ??? (???) <EB5B1E17-8037-6AA9-F2C9-FBBE7E937C77> /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
    0x13ac000 -  0x13b7ff2  com.apple.sfwebview 1.0 (1.0) <ACAFB42B-3E88-9A7D-6186-E466FD491DAE> /Library/Application Support/iWork '09/Frameworks/SFWebView.framework/Versions/A/SFWebView
    0x13be000 -  0x154eff2  com.apple.Keynote.sfdrawables 2.0 (2.0) <2FC7BAFF-5247-C3D5-2228-4253A0E2393A> /Library/Application Support/iWork '09/Frameworks/SFDrawables.framework/Versions/A/SFDrawables
    0x160c000 -  0x1719feb  com.apple.Keynote.sfrendering 1.0 (1.0) <38739A0B-606A-DBEE-839E-2046C04AA4D3> /Library/Application Support/iWork '09/Frameworks/SFRendering.framework/Versions/A/SFRendering
    0x177c000 -  0x1830ff7  com.apple.Keynote.sfutility 1.0 (0.0.1d1) <E50E9C04-742E-62AC-C9D5-54E4B36F3FFF> /Library/Application Support/iWork '09/Frameworks/SFUtility.framework/Versions/A/SFUtility
    0x18a1000 -  0x18baffe  com.apple.Keynote.sfstyles 1.0 (1.0) <04155064-D014-1931-ABFA-DF59242DA6AD> /Library/Application Support/iWork '09/Frameworks/SFStyles.framework/Versions/A/SFStyles
    0x18cb000 -  0x1d7bff5  com.apple.SFTabular 1.0 (1.0) <F9702F15-C061-C11B-9394-4248E8D036F8> /Library/Application Support/iWork '09/Frameworks/SFTabular.framework/Versions/A/SFTabular
    0x1f45000 -  0x22a8ffa  com.apple.Keynote.sfcharts 2.0 (2.0) <9B912294-3C25-064B-F3A7-12A10830CC3B> /Library/Application Support/iWork '09/Frameworks/SFCharts.framework/Versions/A/SFCharts
    0x24da000 -  0x2747fef +SFWordProcessing ??? (???) <9DC85FBF-7E60-8310-5DD3-2F2E606C342D> /Library/Application Support/iWork '09/Frameworks/SFWordProcessing.framework/Versions/A/SFWordProcessing
    0x286b000 -  0x28b5ff4  com.apple.Keynote.SFControls 1.0 (20030306_1) <EB3E250D-AFC4-BD31-282D-0FA34045CC77> /Library/Application Support/iWork '09/Frameworks/SFControls.framework/Versions/A/SFControls
    0x28e2000 -  0x293afef  com.apple.Keynote.sfarchiving 1.0 (0.0.1d1) <B95B1C43-A55C-8101-E314-3AF962899CBD> /Library/Application Support/iWork '09/Frameworks/SFArchiving.framework/Versions/A/SFArchiving
    0x296c000 -  0x29b1feb  com.apple.Keynote.SFAnimation 1.0 (0.0.1d1) <D56A94CC-C5F8-399F-5FA9-B9F1AA6A08B3> /Library/Application Support/iWork '09/Frameworks/SFAnimation.framework/Versions/A/SFAnimation
    0x29de000 -  0x2a66ff9  com.apple.Keynote.proofreader 0 (1) <F57878B8-7670-F608-394E-6B59C3E930A3> /Library/Application Support/iWork '09/Frameworks/SFProofReader.framework/Versions/A/SFProofReader
    0x2a74000 -  0x2a9effb  com.apple.Keynote.sflicense 1.0 (0.0.1d1) <02E0BCE8-2712-549D-8C11-BFCC1C369D71> /Library/Application Support/iWork '09/Frameworks/SFLicense.framework/Versions/A/SFLicense
    0x2aba000 -  0x2b72ffe  com.apple.Keynote.sfinspectors 1.0 (1.0) <35D792D0-BCD4-D335-6C11-A21A74AB4F6F> /Library/Application Support/iWork '09/Frameworks/SFInspectors.framework/Versions/A/SFInspectors
    0x2bcf000 -  0x2c80ff8  com.apple.sf.sfapplication 1.0 (1.0) <F02A8B95-CBE3-BE65-9CF3-9EE59A47C068> /Library/Application Support/iWork '09/Frameworks/SFApplication.framework/Versions/A/SFApplication
    0x2ce6000 -  0x2d9bfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D> /usr/lib/libcrypto.0.9.7.dylib
    0x2de1000 -  0x2e1dff7  com.apple.OSAKit 1.2.1 (76) <6BED915A-3D3D-7435-A862-B6B778DAE90B> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x2e41000 -  0x2eddffc  com.apple.MobileMe 8 (1.0) <1C97CCA6-57E8-D0F5-20DE-32DAD3D17C1C> /Library/Application Support/iWork '09/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2f3c000 -  0x2f48fe7  libexslt.0.dylib 9.13.0 (compatibility 9.0.0) <AC82059F-7F88-6399-9323-57553E2ECDA9> /usr/lib/libexslt.0.dylib
    0x18a8b000 - 0x18c04ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x18c36000 - 0x19013fff  com.apple.ATIRadeonX3000GLDriver 1.6.42 (6.4.2) <019C8FD3-2824-C6F1-0FC3-B2A339B4309D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
    0x190a8000 - 0x190ccfe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x19762000 - 0x19767ff7  libgermantok.dylib ??? (???) <4A6E7900-F607-0E79-DC7F-4F1FE2A1A440> /usr/lib/libgermantok.dylib
    0x19fc4000 - 0x19fe1ff7  libPDFRIP.A.dylib 545.0.0 (compatibility 64.0.0) <9AD51723-AE24-5C9F-FBD4-3621D1B40A87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x1c668000 - 0x1c67aff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <61FC56C4-BC94-A7A3-58EB-0D77C66849EB> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1c67e000 - 0x1c68cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <C3A4C0E4-092F-4363-7858-86E92D98BE73> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1d4a0000 - 0x1d524fe7  com.apple.xquery 1.3 (29) <E48EF997-7C96-F063-23D7-91B9D4D2A875> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x3e000000 - 0x3e046ff7  com.apple.glut 3.4.4 (GLUT-3.4.4) <9FF25BE2-FAD9-EEDE-DBC6-3EC538D896CB> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x3f000000 - 0x3f425fee +org.coin3d.Coin.framework 3.0.0a (3.0.0a) /Library/Application Support/iWork '09/Frameworks/Inventor.framework/Versions/C/Inventor
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld
    0x9022f000 - 0x9026dff7  com.apple.QuickLookFramework 2.3 (327.6) <FCA83173-6DBF-615C-699A-529A7FD821ED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9026e000 - 0x90316ffb  com.apple.QD 3.36 (???) <5A93B258-3853-636F-DB26-223642DA2779> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90339000 - 0x903adfef  com.apple.CoreSymbolication 2.0 (23) <D9B42341-A0B6-A1C7-29FF-3B18F82ECBA1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x903ae000 - 0x90613feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x906b5000 - 0x90735feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x907e7000 - 0x908e9fef  com.apple.MeshKitIO 1.1 (49.2) <EC52D0C5-5291-441D-F137-8E4DD60F0E25> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x908ea000 - 0x90907fe7  com.apple.DotMacSyncManager 2.0.3 (446.9) <BCD117E8-E1E6-7CC0-CF08-974C41F278C6> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x90921000 - 0x90c45fef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90c46000 - 0x90c49ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90c54000 - 0x90c97ff7  com.apple.NavigationServices 3.5.4 (182) <FE19D51B-233A-69EC-9E36-B89D0EA438C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90cee000 - 0x91104ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91105000 - 0x9110cff7  com.apple.KerberosHelper 2.1 (1.0) <903C196E-B253-14A9-6C62-4D9E8E9F8507> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9110d000 - 0x91148feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91149000 - 0x91191fff  com.apple.iCalendar 1.0.3 (54) <3808B2A8-A03C-81CE-5B79-EA8A353A804C> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x91192000 - 0x9119cff7  com.apple.dotMacLegacy 3.2 (266) <26A61064-7F8D-78A2-F780-7F4A70DCA774> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9119d000 - 0x912dfff7  com.apple.syncservices 5.2 (578.3) <B3FD8C83-1CFB-553E-ADD5-F69674797321> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x912e0000 - 0x91300fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <584B2B30-DC65-6930-F59F-C49FD5604B67> /usr/lib/libresolv.9.dylib
    0x91301000 - 0x91304ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91305000 - 0x9132fff7  com.apple.shortcut 1.1 (1.1) <08A1868D-FEF4-8FB3-D814-79385DCBEC7D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91330000 - 0x91342ff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <F6B7538F-4BF8-7E54-A555-30BA7F9F76A6> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x91343000 - 0x91505feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91506000 - 0x9153eff7  com.apple.LDAPFramework 2.0 (120.1) <FDBA63D6-E765-407A-AD1F-858116AECE8C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9153f000 - 0x9156fff7  com.apple.MeshKit 1.1 (49.2) <464BD81C-9970-FBF5-507F-3EEBD020A967> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91570000 - 0x916adfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x916b6000 - 0x9185dff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9185e000 - 0x918a7fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x918a8000 - 0x91923fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91924000 - 0x9193fff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91940000 - 0x91952ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91994000 - 0x91a8ffff  com.apple.PubSub 1.0.5 (65.28) <9B97DE47-66EC-9F6C-3A32-0EBBE7925CCE> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91a90000 - 0x91ec5ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91ec6000 - 0x91f3dff3  com.apple.backup.framework 1.2.2 (1.2.2) <EAD97F26-D3B1-F618-A84C-CF689860C2AF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91f3e000 - 0x91f98fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91f99000 - 0x92012ff7  com.apple.PDFKit 2.5.1 (2.5.1) <4C374867-71B8-B202-ADDA-9985B4379470> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92013000 - 0x92095ffb  SecurityFoundation ??? (???) <5AF077A1-B3E8-F188-5D97-48E8B8F084B8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92096000 - 0x92febffb  com.apple.QuickTimeComponents.component 7.6.6 (1787) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92fec000 - 0x9300dfe7  com.apple.opencl 12.3.6 (12.3.6) <6BD7A385-02BC-AAC9-D654-93BD1805EA23> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9300e000 - 0x9313bffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9313c000 - 0x93179ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x931cc000 - 0x931d6ff7  com.apple.HelpData 2.0.5 (34.1.1) <FF39B4DF-9DAF-1387-2284-A822D55D7789> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x931d7000 - 0x932b1fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x932b2000 - 0x932d9ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x932da000 - 0x93349ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <B3DEACA1-9375-CF8F-0898-AA2C5F8159DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9334a000 - 0x9334aff7  com.apple.Carbon 150 (152) <8B6F936F-0399-FC1F-F039-789CFFBAC097> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9334b000 - 0x9338bfe7  com.apple.DAVKit 4.0.3 (732.2) <08B0F54D-3DA3-2E3A-B73B-0E96C5E9C761> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x9338c000 - 0x93390ff7  IOSurface ??? (???) <C7C7280B-1408-1CEB-8EDF-AF8ADABB602E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93391000 - 0x9343efe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9343f000 - 0x93481ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93482000 - 0x9349efe3  com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9349f000 - 0x934f7fe7  com.apple.datadetectorscore 2.0 (80.7) <463C62DE-2664-E186-915A-0772C6AC0664> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x934f8000 - 0x934feff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x93662000 - 0x93668fff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93682000 - 0x93f65ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93f66000 - 0x941afffb  com.apple.JavaScriptCore 6534.51 (6534.51.21) <EA8C05E3-4719-B3FA-E17E-EC9BBC09F5B2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x941b0000 - 0x941e9fe7  com.apple.bom 10.0 (164) <3BD198F4-56AD-EE1B-2EBD-C7E6868A0D3C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x941ea000 - 0x9424bfe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9424c000 - 0x9424cff7  com.apple.CoreServices 44 (44) <B9461120-F72A-D28F-D0CF-5647958BD3F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94286000 - 0x94287ff7  com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94288000 - 0x942acff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x942ad000 - 0x9448ffff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94490000 - 0x944b2fef  com.apple.DirectoryService.Framework 3.6 (621.11) <E71F5EA4-A5C4-EDE7-EF52-69135D7DD798> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x944b3000 - 0x944beff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x944bf000 - 0x944c0ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x944c1000 - 0x947e1ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x947e2000 - 0x94910fe7  com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94946000 - 0x94946ff7  com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9494a000 - 0x94955ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94958000 - 0x94989ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9498a000 - 0x94a46fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94a4c000 - 0x94a99feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <70E88670-86AC-8B94-2EED-4D945DC6398F> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94a9a000 - 0x94b46fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94b47000 - 0x94babfff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94bac000 - 0x94bb7ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94bb8000 - 0x94c0bff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c0c000 - 0x94cd7fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94cd8000 - 0x94cdfff3  com.apple.print.framework.Print 6.1 (237.1) <726A7F31-8C27-8403-0016-71E022EDC14C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94ce0000 - 0x94ce0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94ce1000 - 0x94ce3ff7  com.apple.securityhi 4.0 (36638) <61F5EA83-0645-3771-8C26-AEA9C3775AF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94ce4000 - 0x94ceafe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94ceb000 - 0x94cebff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94cec000 - 0x94ec8fe7  com.apple.CalendarStore 4.0.4 (997.7) <255A708D-D135-409F-4B48-F87D0326C543> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x94ec9000 - 0x94ec9ff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94eca000 - 0x94f62fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <49579559-BD62-A988-81DD-7E87D6A82C11> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94f63000 - 0x95752557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95753000 - 0x95794ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95795000 - 0x95a8ffef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95a90000 - 0x95a9dff7  com.apple.NetFS 3.2.2 (3.2.2) <12E7F3CD-F898-0FF6-A5DC-A70A8EF6B0E8> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95a9e000 - 0x95a9fff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95aa0000 - 0x95ae4ff3  com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95b18000 - 0x96193ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96194000 - 0x9624cfeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9624d000 - 0x962bcff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x962bd000 - 0x962f0ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x962f1000 - 0x962f5ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x962f6000 - 0x96339fe7  com.apple.MediaKit 10.5.1 (490) <4CF33D3A-ABA4-5AD8-2BCB-19FADF4347DB> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9633a000 - 0x96341ff7  com.apple.aps.framework 1.2 (1.2) <68417FFF-FEFF-0A2D-501D-EE31F211F47D> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x96349000 - 0x9634cffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9634d000 - 0x9635dff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x9635e000 - 0x96819ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9681a000 - 0x96824ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96825000 - 0x96833fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x96834000 - 0x96cd2ff7  com.apple.RawCamera.bundle 3.9.0 (584) <5CC4C59B-5ECF-9767-2BB1-493AB505F433> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x96cd3000 - 0x96ce7ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96ce8000 - 0x96d52fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x96d53000 - 0x96d97fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96d98000 - 0x96ddbff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96ddc000 - 0x96e32ff7  com.apple.MeshKitRuntime 1.1 (49.2) <4B41E225-69AC-6EFA-190E-DC6A4BD8109E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96e33000 - 0x96e33ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x96e34000 - 0x96e7aff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x96e7b000 - 0x96e7fff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x96ebd000 - 0x97228ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97229000 - 0x97232ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <AAE0185D-4A47-1833-27A3-03FDF734A3BA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97233000 - 0x97335fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x97362000 - 0x97377fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97378000 - 0x97415fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97427000 - 0x974a4ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x974a5000 - 0x974b1ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x974c2000 - 0x975c8ff3  com.apple.DiskImagesFramework 10.6.8 (289.1) <49B23766-6397-6F59-E287-3B2535FBD79B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x975c9000 - 0x975d4ff7  com.apple.NSServerNotificationCenter 3.0 (3.0) <A3E774C1-27F3-57C6-C2E5-A8C875C3B29B> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x975d5000 - 0x97643ff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <EC319E7E-6035-CAAE-8135-C3FCFA4CD4A0> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97644000 - 0x976fdfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <03186216-0A12-4AA9-D7BA-3E3551A1195C> /usr/lib/libsqlite3.dylib
    0x976fe000 - 0x9773bff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <5C0F72C2-177E-675A-8677-9BC4205B4A98> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9773c000 - 0x9773eff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9773f000 - 0x97810fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97811000 - 0x9784bfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x9784c000 - 0x985b0fe7  com.apple.WebCore 6534.51 (6534.51.22) <1E9475BF-87F2-A81F-E096-BBB126BCDF30> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x985b1000 - 0x986d7fe7  com.apple.WebKit 6534.51 (6534.51.22) <8E713C26-E90D-0E4B-5FE1-7AFFA8DF2935> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x986d8000 - 0x986e5fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <10941589-34FC-3BB5-FB7E-2B2F1F14A8AD> /usr/lib/libbz2.1.0.dylib
    0x986e6000 - 0x986fafe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x986fb000 - 0x98775fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98776000 - 0x98811fe7  com.apple.ApplicationServices.ATS 275.19 (???) <9FA31967-CF14-B033-EB8D-570561D12A13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98812000 - 0x9881fff7  com.apple.AppleFSCompression 24.4 (1.0) <70C30E16-C683-F4E8-877F-F616254863A2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98820000 - 0x98858fe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <242954AD-3BE1-29E8-E2E0-08063201F105> /usr/lib/libcurl.4.dylib
    0x98859000 - 0x988a0ffb  com.apple.CoreMediaIOServices 142.0 (1497) <8F7F6CD1-A531-8A6D-77BE-7FD392A7FD32> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x988a1000 - 0x988acff7  com.apple.bsd.ServiceManagement 1.3 (1.3) <F7834005-22A8-1F43-8BBB-18C7EBC85C17> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x988ad000 - 0x988edff3  com.apple.securityinterface 4.0.1 (40418) <A57E6534-6731-864D-114C-78BF958F6F4D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x98932000 - 0x98a3eff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98a3f000 - 0x98a65fe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <6D930D3F-3262-E937-0829-8C97748A527A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x98a66000 - 0x98a8cffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <5A8D5D84-06EB-F9B5-BA0A-A87A0A2C0035> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98a8d000 - 0x98aacff7  com.apple.CoreVideo 1.6.2 (45.6) <F9E52A13-E181-D302-3B0E-0799ED6D6130> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98aad000 - 0x98c28fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x98c29000 - 0x98c86ff7  com.apple.framework.IOKit 2.0 (???) <482CF2CC-DF02-2B5B-2133-18F5EA0052A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98c87000 - 0x98c95ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98c96000 - 0x98ce6ff7  com.apple.Symbolication 1.1 (67) <FF4A09A2-DFA7-95C6-4589-9724CA141478> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98ce7000 - 0x98cecff7  com.apple.AOSNotification 1.2.0 (124) <DBC4EB0A-6EC2-BA10-C202-5609AE679425> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x98ced000 - 0x98d20fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98d21000 - 0x98d24fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98d3b000 - 0x98d53ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F11D1CCA-0921-0BBA-C0D3-95BF21483E95> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98d54000 - 0x98d99ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x98d9a000 - 0x98dd5fe7  com.apple.DebugSymbols 1.1 (70) <84F54FE1-A0E8-9A5B-DC47-21999D6F5EF5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x98dd6000 - 0x99001ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x99002000 - 0x99052ff7  com.apple.framework.familycontrols 2.0.2 (2020) <9062C95B-EE1C-977C-9D74-EF96CE888160> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x99053000 - 0x99053ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x99054000 - 0x9908eff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x9908f000 - 0x990b9ff7  com.apple.framework.Admin 4.6 (4.6) <F73FAC12-AD67-BD32-DDCD-9600BCAE6CC5> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x990ce000 - 0x9917cff3  com.apple.ink.framework 1.3.3 (107) <E215794C-F3E9-C067-8882-9054796DDA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9917d000 - 0x99476fe7  com.apple.MessageFramework 4.5 (1084) <F10E75E5-E641-9123-B963-2DBB94910731> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x99477000 - 0x994e5ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <0A8CF0E7-9ED7-31F2-B6CC-7EE5A5F2EEC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x994e6000 - 0x996c4feb  libType1Scaler.dylib ??? (???) <59FE1036-1BC2-1A8E-F7C6-E0CC15A4D6D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x996c5000 - 0x997c6fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <E1A44C67-FA6C-0188-F46F-EA14CEE557BB> /usr/lib/libxml2.2.dylib
    0x997c7000 - 0x997cfff7  com.apple.DisplayServicesFW 2.3.5 (290) <016AD044-6046-D328-F6B5-85D55B839D28> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x997d0000 - 0x997d2fe7  com.apple.ExceptionHandling 1.5 (10) <03218275-EBEC-39AA-895A-BA72A5FDBB7A> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x997f5000 - 0x99a66fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99b46000 - 0x99cc8fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x99d11000 - 0x99d22ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <B59157A1-8796-CE8F-2508-EB96F093F6A7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99d23000 - 0x99e00fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x99e01000 - 0x99e08ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <02A61741-B21F-2478-63B7-C15A0EE9B05B> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99eb3000 - 0x99ee9fff  libtidy.A.dylib ??? (???) <849A1FFD-3AF5-AFF7-74C7-5C46A8417429> /usr/lib/libtidy.A.dylib
    0x9a54c000 - 0x9a55cff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a614000 - 0x9a619ff7  com.apple.OpenDirectory 10.6 (10.6) <48487E27-1AC5-8F8D-9A7D-AA41866A9BFF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9a61a000 - 0x9a6acfe7  com.apple.print.framework.PrintCore 6.3 (312.7) <EE9ED7BE-7D97-B759-C063-1E4B7DBD3775> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9a6ad000 - 0x9a8b4feb  com.apple.AddressBook.framework 5.0.4 (883) <70961C7A-5E80-089E-76D0-EE03B64322A8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9a8d4000 - 0x9a921ff7  com.apple.ExchangeWebServices 1.3 (61) <31E51CEB-194D-EC0B-F06C-D9593DEA7D07> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x9a922000 - 0x9aa02fe7  com.apple.vImage 4.1 (4.1) <AEF800AE-65DA-5E79-5B01-165AF51BAAF6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9aa03000 - 0x9aa03ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9aa04000 - 0x9aa0efe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9aa0f000 - 0x9ab52fef  com.apple.QTKit 7.7 (1787) <3B47A1A0-7AB5-C1C9-42DE-5993D1012D47> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9ab73000 - 0x9ab9bff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0xba300000 - 0xba301fe7  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <675280F1-3D6A-DACE-F9BE-0E2EA52DF811> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <EE047DB8-6489-917F-33F1-93759BDCBC7D> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <E4A7AD53-A359-BBEA-53F3-6D6E919581E0> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <641C7EEA-E033-6677-66E7-443D4E5F1586> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500ff7  libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <EF2FFCBD-8C3D-785D-6938-63FC886550D3> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: iMac12,2, BootROM IM121.0047.B1D, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.72f1
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa132000 / 7
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 6
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3

    Process:         Numbers [1412]
    Path:            /Applications/iWork '09/Numbers.app/Contents/MacOS/Numbers
    Identifier:      com.apple.iWork.Numbers
    Version:         2.1 (436)
    Build Info:      Numbers-4360000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [89]
    Date/Time:       2011-11-22 15:01:37.422 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          105895 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  19771 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      FBC47B5D-2890-481B-AD79-7624FDBCC2EF
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc[1412]: FREED(id): message nextResponder sent to freed object=0x1cf66890
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                   0x933a04fd _objc_error + 116
    1   libobjc.A.dylib                   0x933a0533 __objc_error + 52
    2   libobjc.A.dylib                   0x9339e83a _freedHandler + 58
    3   com.apple.Keynote.sfdrawables     0x015008a4 -[SFDConnectionController teardown] + 212
    4   com.apple.iWork.Numbers           0x00076f1c 0x1000 + 483100
    5   com.apple.Keynote.sfutility       0x01783ee4 -[SFUPair p_SetFirst:] + 52
    6   com.apple.Keynote.sfutility       0x0178e37f -[SFUPair dealloc] + 47
    7   com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    8   com.apple.CoreFoundation          0x98ae45f2 __CFArrayReleaseValues + 434
    9   com.apple.CoreFoundation          0x98abd53d _CFArrayReplaceValues + 237
    10  com.apple.Foundation              0x9980c5fb -[NSCFArray removeObjectAtIndex:] + 178
    11  com.apple.SFTabular               0x01963fb9 -[SFTTableLayoutManager repDisposed:] + 117
    12  com.apple.SFTabular               0x01963e14 -[SFTTableRep dealloc] + 88
    13  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    14  com.apple.CoreFoundation          0x98ae4512 __CFArrayReleaseValues + 210
    15  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    16  com.apple.Keynote.sfdrawables     0x013f8390 -[SFDSelectionController dealloc] + 208
    17  com.apple.Keynote.sfdrawables     0x013f8189 -[SFDCanvas dealloc] + 249
    18  com.apple.iWork.Numbers           0x0004fbab 0x1000 + 322475
    19  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    20  com.apple.CoreFoundation          0x98ae4512 __CFArrayReleaseValues + 210
    21  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    22  com.apple.CoreFoundation          0x98ad23c0 __CFBasicHashStandardCallback + 384
    23  com.apple.CoreFoundation          0x98ad1fce __CFBasicHashDrain + 478
    24  com.apple.CoreFoundation          0x98aba081 _CFRelease + 353
    25  com.apple.AppKit                  0x9369a404 NSAccessibilityRemoveOverriddenAttributesFromUIElement + 195
    26  com.apple.AppKit                  0x936f3b9a -[NSResponder dealloc] + 89
    27  com.apple.AppKit                  0x936f276f -[NSView dealloc] + 82
    28  com.apple.AppKit                  0x937dcaf3 -[NSControl dealloc] + 163
    29  com.apple.AppKit                  0x937e8a7d -[NSScroller dealloc] + 52
    30  com.apple.CoreFoundation          0x98ab9eb8 CFRelease + 152
    31  com.apple.CoreFoundation          0x98ae6bcd _CFAutoreleasePoolPop + 253
    32  com.apple.Foundation              0x997f8976 NSPopAutoreleasePool + 76
    33  com.apple.CoreFoundation          0x98b311f2 CFRunLoopTimerInvalidate + 786
    34  com.apple.CoreFoundation          0x98aebdeb __CFRunLoopRun + 9003
    35  com.apple.CoreFoundation          0x98ae93c4 CFRunLoopRunSpecific + 452
    36  com.apple.CoreFoundation          0x98ae91f1 CFRunLoopRunInMode + 97
    37  com.apple.HIToolbox               0x90955d60 RunCurrentEventLoopInMode + 392
    38  com.apple.HIToolbox               0x90955b17 ReceiveNextEventCommon + 354
    39  com.apple.HIToolbox               0x9095599c BlockUntilNextEventMatchingListInMode + 81
    40  com.apple.AppKit                  0x936ca595 _DPSNextEvent + 847
    41  com.apple.AppKit                  0x936c9dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    42  com.apple.AppKit                  0x9368c1f3 -[NSApplication run] + 821
    43  com.apple.iWork.Numbers           0x0000c8af 0x1000 + 47279
    44  com.apple.iWork.Numbers           0x0000c82c 0x1000 + 47148
    45  com.apple.iWork.Numbers           0x0004fafa 0x1000 + 322298
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x916dd382 kevent + 10
    1   libSystem.B.dylib                 0x916dda9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x916dcf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x916dccfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x916dc781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x916dc5c6 start_wqthread + 30
    Thread 2:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x916d5ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x98b29c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    3   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x916b6b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x916bc646 pthread_mutex_lock + 490
    2   com.apple.Foundation              0x9980101b -[NSLock lock] + 201
    3   SFWordProcessing                  0x024fb129 -[SFWPSpellThread pRun:] + 289
    4   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    7   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x916b6b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x916e46e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x917135a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x998478e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x998003b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x99800294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.SFTabular               0x0194fd21 -[SFTFormulaInitThreadManager formulaWorkerThread] + 91
    7   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    10  libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x916b6afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x916b7267 mach_msg + 68
    2   com.apple.CoreFoundation          0x98aea2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x98ae93c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x98ae91f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x99844224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation              0x9980b4c4 -[NSThread main] + 45
    7   com.apple.Foundation              0x9980b474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    9   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 6:  WebCore: LocalStorage
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore          0x93f71bf1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    5   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 7:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e42b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore          0x93f71c3c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 8:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x916e4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x916e475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x916e63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                  0x9a9e96ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                  0x9a9e97ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                 0x916e4259 _pthread_start + 345
    6   libSystem.B.dylib                 0x916e40de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x916dc412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x916dc9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x916dc5c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x1d95da00  ebx: 0x933a049d  ecx: 0x1d95da00  edx: 0x1d95da40
      edi: 0x1ec0b000  esi: 0x933aa7b7  ebp: 0xbfffdb48  esp: 0xbfffdb00
       ss: 0x00000023  efl: 0x00010286  eip: 0x933a04fd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x025f9076
    Binary Images:
        0x1000 -   0x161ffc  com.apple.iWork.Numbers 2.1 (436) <3D71BA2D-914E-7545-1F26-C2701CDD976F> /Applications/iWork '09/Numbers.app/Contents/MacOS/Numbers
      0x19c000 -   0xc86fe6 +SFCompatibility ??? (???) <EB5B1E17-8037-6AA9-F2C9-FBBE7E937C77> /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
    0x13ac000 -  0x13b7ff2  com.apple.sfwebview 1.0 (1.0) <ACAFB42B-3E88-9A7D-6186-E466FD491DAE> /Library/Application Support/iWork '09/Frameworks/SFWebView.framework/Versions/A/SFWebView
    0x13be000 -  0x154eff2  com.apple.Keynote.sfdrawables 2.0 (2.0) <2FC7BAFF-5247-C3D5-2228-4253A0E2393A> /Library/Application Support/iWork '09/Frameworks/SFDrawables.framework/Versions/A/SFDrawables
    0x160c000 -  0x1719feb  com.apple.Keynote.sfrendering 1.0 (1.0) <38739A0B-606A-DBEE-839E-2046C04AA4D3> /Library/Application Support/iWork '09/Frameworks/SFRendering.framework/Versions/A/SFRendering
    0x177c000 -  0x1830ff7  com.apple.Keynote.sfutility 1.0 (0.0.1d1) <E50E9C04-742E-62AC-C9D5-54E4B36F3FFF> /Library/Application Support/iWork '09/Frameworks/SFUtility.framework/Versions/A/SFUtility
    0x18a1000 -  0x18baffe  com.apple.Keynote.sfstyles 1.0 (1.0) <04155064-D014-1931-ABFA-DF59242DA6AD> /Library/Application Support/iWork '09/Frameworks/SFStyles.framework/Versions/A/SFStyles
    0x18cb000 -  0x1d7bff5  com.apple.SFTabular 1.0 (1.0) <F9702F15-C061-C11B-9394-4248E8D036F8> /Library/Application Support/iWork '09/Frameworks/SFTabular.framework/Versions/A/SFTabular
    0x1f45000 -  0x22a8ffa  com.apple.Keynote.sfcharts 2.0 (2.0) <9B912294-3C25-064B-F3A7-12A10830CC3B> /Library/Application Support/iWork '09/Frameworks/SFCharts.framework/Versions/A/SFCharts
    0x24da000 -  0x2747fef +SFWordProcessing ??? (???) <9DC85FBF-7E60-8310-5DD3-2F2E606C342D> /Library/Application Support/iWork '09/Frameworks/SFWordProcessing.framework/Versions/A/SFWordProcessing
    0x286b000 -  0x28b5ff4  com.apple.Keynote.SFControls 1.0 (20030306_1) <EB3E250D-AFC4-BD31-282D-0FA34045CC77> /Library/Application Support/iWork '09/Frameworks/SFControls.framework/Versions/A/SFControls
    0x28e2000 -  0x293afef  com.apple.Keynote.sfarchiving 1.0 (0.0.1d1) <B95B1C43-A55C-8101-E314-3AF962899CBD> /Library/Application Support/iWork '09/Frameworks/SFArchiving.framework/Versions/A/SFArchiving
    0x296c000 -  0x29b1feb  com.apple.Keynote.SFAnimation 1.0 (0.0.1d1) <D56A94CC-C5F8-399F-5FA9-B9F1AA6A08B3> /Library/Application Support/iWork '09/Frameworks/SFAnimation.framework/Versions/A/SFAnimation
    0x29de000 -  0x2a66ff9  com.apple.Keynote.proofreader 0 (1) <F57878B8-7670-F608-394E-6B59C3E930A3> /Library/Application Support/iWork '09/Frameworks/SFProofReader.framework/Versions/A/SFProofReader
    0x2a74000 -  0x2a9effb  com.apple.Keynote.sflicense 1.0 (0.0.1d1) <02E0BCE8-2712-549D-8C11-BFCC1C369D71> /Library/Application Support/iWork '09/Frameworks/SFLicense.framework/Versions/A/SFLicense
    0x2aba000 -  0x2b72ffe  com.apple.Keynote.sfinspectors 1.0 (1.0) <35D792D0-BCD4-D335-6C11-A21A74AB4F6F> /Library/Application Support/iWork '09/Frameworks/SFInspectors.framework/Versions/A/SFInspectors
    0x2bcf000 -  0x2c80ff8  com.apple.sf.sfapplication 1.0 (1.0) <F02A8B95-CBE3-BE65-9CF3-9EE59A47C068> /Library/Application Support/iWork '09/Frameworks/SFApplication.framework/Versions/A/SFApplication
    0x2ce6000 -  0x2d9bfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D> /usr/lib/libcrypto.0.9.7.dylib
    0x2de1000 -  0x2e1dff7  com.apple.OSAKit 1.2.1 (76) <6BED915A-3D3D-7435-A862-B6B778DAE90B> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x2e41000 -  0x2eddffc  com.apple.MobileMe 8 (1.0) <1C97CCA6-57E8-D0F5-20DE-32DAD3D17C1C> /Library/Application Support/iWork '09/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2f3c000 -  0x2f48fe7  libexslt.0.dylib 9.13.0 (compatibility 9.0.0) <AC82059F-7F88-6399-9323-57553E2ECDA9> /usr/lib/libexslt.0.dylib
    0x18a8b000 - 0x18c04ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x18c36000 - 0x19013fff  com.apple.ATIRadeonX3000GLDriver 1.6.42 (6.4.2) <019C8FD3-2824-C6F1-0FC3-B2A339B4309D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
    0x190a8000 - 0x190ccfe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x19762000 - 0x19767ff7  libgermantok.dylib ??? (???) <4A6E7900-F607-0E79-DC7F-4F1FE2A1A440> /usr/lib/libgermantok.dylib
    0x19fc4000 - 0x19fe1ff7  libPDFRIP.A.dylib 545.0.0 (compatibility 64.0.0) <9AD51723-AE24-5C9F-FBD4-3621D1B40A87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x1c668000 - 0x1c67aff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <61FC56C4-BC94-A7A3-58EB-0D77C66849EB> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1c67e000 - 0x1c68cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <C3A4C0E4-092F-4363-7858-86E92D98BE73> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1d4a0000 - 0x1d524fe7  com.apple.xquery 1.3 (29) <E48EF997-7C96-F063-23D7-91B9D4D2A875> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x3e000000 - 0x3e046ff7  com.apple.glut 3.4.4 (GLUT-3.4.4) <9FF25BE2-FAD9-EEDE-DBC6-3EC538D896CB> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x3f000000 - 0x3f425fee +org.coin3d.Coin.framework 3.0.0a (3.0.0a) /Library/Application Support/iWork '09/Frameworks/Inventor.framework/Versions/C/Inventor
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld
    0x9022f000 - 0x9026dff7  com.apple.QuickLookFramework 2.3 (327.6) <FCA83173-6DBF-615C-699A-529A7FD821ED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9026e000 - 0x90316ffb  com.apple.QD 3.36 (???) <5A93B258-3853-636F-DB26-223642DA2779> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90339000 - 0x903adfef  com.apple.CoreSymbolication 2.0 (23) <D9B42341-A0B6-A1C7-29FF-3B18F82ECBA1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x903ae000 - 0x90613feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x906b5000 - 0x90735feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x907e7000 - 0x908e9fef  com.apple.MeshKitIO 1.1 (49.2) <EC52D0C5-5291-441D-F137-8E4DD60F0E25> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x908ea000 - 0x90907fe7  com.apple.DotMacSyncManager 2.0.3 (446.9) <BCD117E8-E1E6-7CC0-CF08-974C41F278C6> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x90921000 - 0x90c45fef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90c46000 - 0x90c49ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90c54000 - 0x90c97ff7  com.apple.NavigationServices 3.5.4 (182) <FE19D51B-233A-69EC-9E36-B89D0EA438C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90cee000 - 0x91104ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91105000 - 0x9110cff7  com.apple.KerberosHelper 2.1 (1.0) <903C196E-B253-14A9-6C62-4D9E8E9F8507> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9110d000 - 0x91148feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91149000 - 0x91191fff  com.apple.iCalendar 1.0.3 (54) <3808B2A8-A03C-81CE-5B79-EA8A353A804C> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x91192000 - 0x9119cff7  com.apple.dotMacLegacy 3.2 (266) <26A61064-7F8D-78A2-F780-7F4A70DCA774> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9119d000 - 0x912dfff7  com.apple.syncservices 5.2 (578.3) <B3FD8C83-1CFB-553E-ADD5-F69674797321> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x912e0000 - 0x91300fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <584B2B30-DC65-6930-F59F-C49FD5604B67> /usr/lib/libresolv.9.dylib
    0x91301000 - 0x91304ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91305000 - 0x9132fff7  com.apple.shortcut 1.1 (1.1) <08A1868D-FEF4-8FB3-D814-79385DCBEC7D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91330000 - 0x91342ff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <F6B7538F-4BF8-7E54-A555-30BA7F9F76A6> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x91343000 - 0x91505feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91506000 - 0x9153eff7  com.apple.LDAPFramework 2.0 (120.1) <FDBA63D6-E765-407A-AD1F-858116AECE8C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9153f000 - 0x9156fff7  com.apple.MeshKit 1.1 (49.2) <464BD81C-9970-FBF5-507F-3EEBD020A967> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91570000 - 0x916adfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x916b6000 - 0x9185dff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9185e000 - 0x918a7fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x918a8000 - 0x91923fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91924000 - 0x9193fff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91940000 - 0x91952ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91994000 - 0x91a8ffff  com.apple.PubSub 1.0.5 (65.28) <9B97DE47-66EC-9F6C-3A32-0EBBE7925CCE> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91a90000 - 0x91ec5ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91ec6000 - 0x91f3dff3  com.apple.backup.framework 1.2.2 (1.2.2) <EAD97F26-D3B1-F618-A84C-CF689860C2AF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91f3e000 - 0x91f98fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91f99000 - 0x92012ff7  com.apple.PDFKit 2.5.1 (2.5.1) <4C374867-71B8-B202-ADDA-9985B4379470> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92013000 - 0x92095ffb  SecurityFoundation ??? (???) <5AF077A1-B3E8-F188-5D97-48E8B8F084B8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92096000 - 0x92febffb  com.apple.QuickTimeComponents.component 7.6.6 (1787) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92fec000 - 0x9300dfe7  com.apple.opencl 12.3.6 (12.3.6) <6BD7A385-02BC-AAC9-D654-93BD1805EA23> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9300e000 - 0x9313bffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9313c000 - 0x93179ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x931cc000 - 0x931d6ff7  com.apple.HelpData 2.0.5 (34.1.1) <FF39B4DF-9DAF-1387-2284-A822D55D7789> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x931d7000 - 0x932b1fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x932b2000 - 0x932d9ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x932da000 - 0x93349ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <B3DEACA1-9375-CF8F-0898-AA2C5F8159DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9334a000 - 0x9334aff7  com.apple.Carbon 150 (152) <8B6F936F-0399-FC1F-F039-789CFFBAC097> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9334b000 - 0x9338bfe7  com.apple.DAVKit 4.0.3 (732.2) <08B0F54D-3DA3-2E3A-B73B-0E96C5E9C761> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x9338c000 - 0x93390ff7  IOSurface ??? (???) <C7C7280B-1408-1CEB-8EDF-AF8ADABB602E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93391000 - 0x9343efe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9343f000 - 0x93481ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93482000 - 0x9349efe3  com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9349f000 - 0x934f7fe7  com.apple.datadetectorscore 2.0 (80.7) <463C62DE-2664-E186-915A-0772C6AC0664> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x934f8000 - 0x934feff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x93662000 - 0x93668fff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93682000 - 0x93f65ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93f66000 - 0x941afffb  com.apple.JavaScriptCore 6534.51 (6534.51.21) <EA8C05E3-4719-B3FA-E17E-EC9BBC09F5B2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x941b0000 - 0x941e9fe7  com.apple.bom 10.0 (164) <3BD198F4-56AD-EE1B-2EBD-C7E6868A0D3C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x941ea000 - 0x9424bfe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9424c000 - 0x9424cff7  com.apple.CoreServices 44 (44) <B9461120-F72A-D28F-D0CF-5647958BD3F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94286000 - 0x94287ff7  com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94288000 - 0x942acff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x942ad000 - 0x9448ffff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94490000 - 0x944b2fef  com.apple.DirectoryService.Framework 3.6 (621.11) <E71F5EA4-A5C4-EDE7-EF52-69135D7DD798> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x944b3000 - 0x944beff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x944bf000 - 0x944c0ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x944c1000 - 0x947e1ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x947e2000 - 0x94910fe7  com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94946000 - 0x94946ff7  com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9494a000 - 0x94955ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94958000 - 0x94989ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9498a000 - 0x94a46fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94a4c000 - 0x94a99feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <70E88670-86AC-8B94-2EED-4D945DC6398F> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94a9a000 - 0x94b46fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94b47000 - 0x94babfff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94bac000 - 0x94bb7ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94bb8000 - 0x94c0bff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c0c000 - 0x94cd7fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94cd8000 - 0x94cdfff3  com.apple.print.framework.Print 6.1 (237.1) <726A7F31-8C27-8403-0016-71E022EDC14C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94ce0000 - 0x94ce0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94ce1000 - 0x94ce3ff7  com.apple.securityhi 4.0 (36638) <61F5EA83-0645-3771-8C26-AEA9C3775AF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94ce4000 - 0x94ceafe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94ceb000 - 0x94cebff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94cec000 - 0x94ec8fe7  com.apple.CalendarStore 4.0.4 (997.7) <255A708D-D135-409F-4B48-F87D0326C543> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x94ec9000 - 0x94ec9ff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94eca000 - 0x94f62fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <49579559-BD62-A988-81DD-7E87D6A82C11> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94f63000 - 0x95752557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95753000 - 0x95794ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95795000 - 0x95a8ffef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95a90000 - 0x95a9dff7  com.apple.NetFS 3.2.2 (3.2.2) <12E7F3CD-F898-0FF6-A5DC-A70A8EF6B0E8> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95a9e000 - 0x95a9fff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95aa0000 - 0x95ae4ff3  com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95b18000 - 0x96193ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96194000 - 0x9624cfeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9624d000 - 0x962bcff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x962bd000 - 0x962f0ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x962f1000 - 0x962f5ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x962f6000 - 0x96339fe7  com.apple.MediaKit 10.5.1 (490) <4CF33D3A-ABA4-5AD8-2BCB-19FADF4347DB> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9633a000 - 0x96341ff7  com.apple.aps.framework 1.2 (1.2) <68417FFF-FEFF-0A2D-501D-EE31F211F47D> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x96349000 - 0x9634cffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9634d000 - 0x9635dff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x9635e000 - 0x96819ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9681a000 - 0x96824ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96825000 - 0x96833fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x96834000 - 0x96cd2ff7  com.apple.RawCamera.bundle 3.9.0 (584) <5CC4C59B-5ECF-9767-2BB1-493AB505F433> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x96cd3000 - 0x96ce7ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96ce8000 - 0x96d52fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x96d53000 - 0x96d97fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96d98000 - 0x96ddbff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96ddc000 - 0x96e32ff7  com.apple.MeshKitRuntime 1.1 (49.2) <4B41E225-69AC-6EFA-190E-DC6A4BD8109E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96e33000 - 0x96e33ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x96e34000 - 0x96e7aff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x96e7b000 - 0x96e7fff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x96ebd000 - 0x97228ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97229000 - 0x97232ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <AAE0185D-4A47-1833-27A3-03FDF734A3BA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97233000 - 0x97335fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x97362000 - 0x97377fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97378000 - 0x97415fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97427000 - 0x974a4ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x974a5000 - 0x974b1ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x974c2000 - 0x975c8ff3  com.apple.DiskImagesFramework 10.6.8 (289.1) <49B23766-6397-6F59-E287-3B2535FBD79B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x975c9000 - 0x975d4ff7  com.apple.NSServerNotificationCenter 3.0 (3.0) <A3E774C1-27F3-57C6-C2E5-A8C875C3B29B> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x975d5000 - 0x97643ff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <EC319E7E-6035-CAAE-8135-C3FCFA4CD4A0> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97644000 - 0x976fdfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <03186216-0A12-4AA9-D7BA-3E3551A1195C> /usr/lib/libsqlite3.dylib
    0x976fe000 - 0x9773bff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <5C0F72C2-177E-675A-8677-9BC4205B4A98> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9773c000 - 0x9773eff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9773f000 - 0x97810fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97811000 - 0x9784bfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x9784c000 - 0x985b0fe7  com.apple.WebCore 6534.51 (6534.51.22) <1E9475BF-87F2-A81F-E096-BBB126BCDF30> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x985b1000 - 0x986d7fe7  com.apple.WebKit 6534.51 (6534.51.22) <8E713C26-E90D-0E4B-5FE1-7AFFA8DF2935> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x986d8000 - 0x986e5fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <10941589-34FC-3BB5-FB7E-2B2F1F14A8AD> /usr/lib/libbz2.1.0.dylib
    0x986e6000 - 0x986fafe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x986fb000 - 0x98775fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98776000 - 0x98811fe7  com.apple.ApplicationServices.ATS 275.19 (???) <9FA31967-CF14-B033-EB8D-570561D12A13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98812000 - 0x9881fff7  com.apple.AppleFSCompression 24.4 (1.0) <70C30E16-C683-F4E8-877F-F616254863A2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98820000 - 0x98858fe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <242954AD-3BE1-29E8-E2E0-08063201F105> /usr/lib/libcurl.4.dylib
    0x98859000 - 0x988a0ffb  com.apple.CoreMediaIOServices 142.0 (1497) <8F7F6CD1-A531-8A6D-77BE-7FD392A7FD32> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x988a1000 - 0x988acff7  com.apple.bsd.ServiceManagement 1.3 (1.3) <F7834005-22A8-1F43-8BBB-18C7EBC85C17> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x988ad000 - 0x988edff3  com.apple.securityinterface 4.0.1 (40418) <A57E6534-6731-864D-114C-78BF958F6F4D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x98932000 - 0x98a3eff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98a3f000 - 0x98a65fe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <6D930D3F-3262-E937-0829-8C97748A527A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x98a66000 - 0x98a8cffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <5A8D5D84-06EB-F9B5-BA0A-A87A0A2C0035> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98a8d000 - 0x98aacff7  com.apple.CoreVideo 1.6.2 (45.6) <F9E52A13-E181-D302-3B0E-0799ED6D6130> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98aad000 - 0x98c28fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x98c29000 - 0x98c86ff7  com.apple.framework.IOKit 2.0 (???) <482CF2CC-DF02-2B5B-2133-18F5EA0052A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98c87000 - 0x98c95ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98c96000 - 0x98ce6ff7  com.apple.Symbolication 1.1 (67) <FF4A09A2-DFA7-95C6-4589-9724CA141478> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98ce7000 - 0x98cecff7  com.apple.AOSNotification 1.2.0 (124) <DBC4EB0A-6EC2-BA10-C202-5609AE679425> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x98ced000 - 0x98d20fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98d21000 - 0x98d24fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98d3b000 - 0x98d53ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F11D1CCA-0921-0BBA-C0D3-95BF21483E95> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98d54000 - 0x98d99ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x98d9a000 - 0x98dd5fe7  com.apple.DebugSymbols 1.1 (70) <84F54FE1-A0E8-9A5B-DC47-21999D6F5EF5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x98dd6000 - 0x99001ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x99002000 - 0x99052ff7  com.apple.framework.familycontrols 2.0.2 (2020) <9062C95B-EE1C-977C-9D74-EF96CE888160> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x99053000 - 0x99053ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x99054000 - 0x9908eff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x9908f000 - 0x990b9ff7  com.apple.framework.Admin 4.6 (4.6) <F73FAC12-AD67-BD32-DDCD-9600BCAE6CC5> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x990ce000 - 0x9917cff3  com.apple.ink.framework 1.3.3 (107) <E215794C-F3E9-C067-8882-9054796DDA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9917d000 - 0x99476fe7  com.apple.MessageFramework 4.5 (1084) <F10E75E5-E641-9123-B963-2DBB94910731> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x99477000 - 0x994e5ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <0A8CF0E7-9ED7-31F2-B6CC-7EE5A5F2EEC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x994e6000 - 0x996c4feb  libType1Scaler.dylib ??? (???) <59FE1036-1BC2-1A8E-F7C6-E0CC15A4D6D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x996c5000 - 0x997c6fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <E1A44C67-FA6C-0188-F46F-EA14CEE557BB> /usr/lib/libxml2.2.dylib
    0x997c7000 - 0x997cfff7  com.apple.DisplayServicesFW 2.3.5 (290) <016AD044-6046-D328-F6B5-85D55B839D28> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x997d0000 - 0x997d2fe7  com.apple.ExceptionHandling 1.5 (10) <03218275-EBEC-39AA-895A-BA72A5FDBB7A> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x997f5000 - 0x99a66fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99b46000 - 0x99cc8fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x99d11000 - 0x99d22ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <B59157A1-8796-CE8F-2508-EB96F093F6A7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99d23000 - 0x99e00fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x99e01000 - 0x99e08ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <02A61741-B21F-2478-63B7-C15A0EE9B05B> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99eb3000 - 0x99ee9fff  libtidy.A.dylib ??? (???) <849A1FFD-3AF5-AFF7-74C7-5C46A8417429> /usr/lib/libtidy.A.dylib
    0x9a54c000 - 0x9a55cff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a614000 - 0x9a619ff7  com.apple.OpenDirectory 10.6 (10.6) <48487E27-1AC5-8F8D-9A7D-AA41866A9BFF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9a61a000 - 0x9a6acfe7  com.apple.print.framework.PrintCore 6.3 (312.7) <EE9ED7BE-7D97-B759-C063-1E4B7DBD3775> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9a6ad000 - 0x9a8b4feb  com.apple.AddressBook.framework 5.0.4 (883) <70961C7A-5E80-089E-76D0-EE03B64322A8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9a8d4000 - 0x9a921ff7  com.apple.ExchangeWebServices 1.3 (61) <31E51CEB-194D-EC0B-F06C-D9593DEA7D07> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x9a922000 - 0x9aa02fe7  com.apple.vImage 4.1 (4.1) <AEF800AE-65DA-5E79-5B01-165AF51BAAF6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9aa03000 - 0x9aa03ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9aa04000 - 0x9aa0efe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9aa0f000 - 0x9ab52fef  com.apple.QTKit 7.7 (1787) <3B47A1A0-7AB5-C1C9-42DE-5993D1012D47> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9ab73000 - 0x9ab9bff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0xba300000 - 0xba301fe7  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <675280F1-3D6A-DACE-F9BE-0E2EA52DF811> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <EE047DB8-6489-917F-33F1-93759BDCBC7D> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <E4A7AD53-A359-BBEA-53F3-6D6E919581E0> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <641C7EEA-E033-6677-66E7-443D4E5F1586> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500ff7  libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <EF2FFCBD-8C3D-785D-6938-63FC886550D3> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: iMac12,2, BootROM IM121.0047.B1D, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 1.72f1
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa132000 / 7
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 6
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3

  • How to view text message numbers online?

    Hey, I recently deleted all my messages by accident and I know I deleted some new ones, so I am just trying to find out who actually texted me.  Where can I find it online?  I looked on MyVerizon but I can only see my usage, but not the actual numbers...where can I find the numbers?
    Some variables are that my I just made a MyVerizon account and my brother is an employee for Verizon Wireless.  Any help is greatly appreciated.  Thanks.

    You do need to log into the account holders name to view that kind of usage.
    Go to myverizon
    Log into the account holder
    Under current usage click the messaging tab
    Click "view usage"
    Next scroll down to "view messaging details""
    Go to the desired date/time you want and get the number

  • Message numbering error

    http://forums.ni.com/ni/board/message?board.id=170&message.id=362878#M362878
    This thread shows strange numbering of messages.
    Message Edited by andre.buurman@carya on 10-20-2008 04:14 PM
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)
    Attachments:
    Forum error.png ‏36 KB

    I confirm this behavior. Am using Internet Explorer 8
    Message Edited by mathan on 10-22-2008 03:49 AM
    Attachments:
    untitled.PNG ‏40 KB

  • Yosemite Mail - What happned to the mail message numbers???

    I just upgraded to Yosemite.  I noticed in the mail pane that I can no longer customize mail to list numbers next to the mail messages.  I like to know how many I have in my mailbox.  Any workarounds?
    Thanks -

    To explain further, I right clicked on the message bar and these are the options I get for my messages.  Notice there is not an option for "number"

  • Old text messages numbers

    I know it is not possible to retrieve old messages without a court order but i was wondering how you can get the numbers from the old messages? Is there a way to do it without being the account owner?

    You need to be logged in to the account as the account owner; then you can view the texting details (numbers, dates, times) for the past 3 months only. Further back than that you'll need to call customer service.

  • Oracle 8i message numbers

    Hi,
    Is there a logical order of severity regarding Oracle messages? I am writing scripts that will send me an email when new Oracle messages are found in the alert log, but I would like to only include messages that are real errors and not just informational (like ORA-1589 ... alter database open). So is there a range of messages that I can exclude or has anyone compiled their own list (for 8i) that can be excluded?
    Thanks.

    As far as I know the range well know is the range of errors for networking issues.
    If you are a DBA I recommend you to look for the more important messages in the alert like:
    ORA-0600 , corruption of blocks and so on.
    Joel Pérez
    http://www.oracle.com/technology/experts

  • Need help with error message "Numbers can't be diided by 0"

    I'm trying to do a calculation where there may or may not be data provided by the spreadsheet user. In other words, If there is data, I want this function to preform on it and if there is no user-generated data, I need the cell to display as "0". I'm nowhere near a power user in numbers so if anyone out there can help, I would be really grateful. As you can see, I have a lot of questions tonight that I am stuck on and I can't go to bed until I figure them out
    Thanks!

    Assuming that you wish to divide by the contents of a cell in column B
    Here are two formulas which may help.
    =IF(ISBLANK(B),"",12/B)
    =IF(ISERROR(1/B),"",12/B)
    My best choice is the second one which works well with blank cells, cells containing a true zero, cells containing a string or a date.
    Yvan KOENIG (from FRANCE mardi 18 novembre 2008 12:00:06)

Maybe you are looking for

  • I can't clear single item in Location Bar History

    I can't clear single item in Location Bar History. I use Firefox 3.6.13 on Mac 10.6.5. I do select the item in location bar, press Shift and delete keys, but it delete the item only temporary... My Firefox Privacy pref indicate: - Use custom settings

  • Itunes will not run unless I disable bonjour

    itunes only runs when I disable the "bonjour" service and thus cannot sync with my itouch, as, from what I learnt it's the bonjour service that allows the sync to happen. If I disable it itunes will not launch, I enable it, I cannot sync my ipod touc

  • How to determine which column is currently sorted on?

    When my application closes down I grab all important state information from the various views in my application and persist the state information to a db. On application startup I retrieve the state information and reload all my views with their prev

  • DEV and QAS copy from PRD

    Hi, We have ERP 2004 on Windows 2003 with SQL 2005. Due to some corrections(config changes and abap corrections) were made directly made in our PRD System, we now need to completely refresh our DEV and QAS system with PRD. As we do not have enough sp

  • Old game on new mac

    Is there any way to play an old game (Traitors Gate) on my MacBook Pro. It's written for Mac OS 7.5. Are there any emulators out there? Or can I install OS 9 as a virtual machine (via Parallels or similar)? I have so many good adventure games that th