I have received a lot of advice, but no concrete help.

For the past two weeks I have received a lot of advice, but no one told me what to do in a concrete way or demonstrates on my example. Is there any one who can do this and help me ??????
I'm trying to write an application which has to show my image files (set of photos) with a text description. The list of image files placed into the JList. So, when I select a file from the JList it shows me an image (everything is OK).
But, every image has it's text description in MyText.text file. It's a file with each text line for every image. Actually, I am trying to connect two actions - showing my image and setting it's specified text line description (from MyText.txt) in a JTextArea. I thought that the best way to do this with my text it is like I did it with my images through Vector. But No Success.
Here is my application. I have indicated with ** in my code how I am trying to do it.
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import javax.swing.*;
import javax.swing.event.*;
public class UnitA extends JPanel implements ListSelectionListener {
BasicUnitA Myapplet;
JPanel listPanel, picturePanel;
Vector imageNames1;
JList list1;
JLabel picture1;
JScrollPane listScrollPane1, pictureScrollPane1, TSP1;
JTextArea TA1;
int index;
String str;
UnitA (BasicUnitA parent, boolean p1, boolean p2) {
Myapplet=parent;
//Read image names from a properties file
ResourceBundle imageResource1;
BufferedReader reader; //**
try{
reader=new BufferedReader(new FileReader("c:/java/MyText.txt")); //**
str = reader.readLine(); //**
Vector vr = new Vector(); //**
vr.addElement(str); //**
imageResource1 = ResourceBundle.getBundle("imagenames1");
String imageNamesString1 = imageResource1.getString("images");
imageNames1 = parseList(imageNamesString1);
} catch (MissingResourceException e) {
System.err.println("Please, add properties file with image names.");
System.exit(1);
} catch(IOException evt) {System.exit(1);} //**
//Create one list of images and put it in a scroll pane and panel
list1 = new JList(imageNames1);
list1.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
list1.setSelectedIndex(0);
list1.addListSelectionListener(this);
listScrollPane1 = new JScrollPane(list1);
listScrollPane1.setPreferredSize(new Dimension (120,120));
//Set up the picture label and put it in a scroll pane
ImageIcon firstImage1 = new ImageIcon("java/Applications/images/fotos/" +
(String)imageNames1.firstElement());
picture1 = new JLabel(firstImage1);
picture1.setPreferredSize(new Dimension (firstImage1.getIconWidth(),
firstImage1.getIconHeight()));
pictureScrollPane1 = new JScrollPane(picture1);
pictureScrollPane1.setPreferredSize(new Dimension (500,360));
pictureScrollPane1.setBorder(BorderFactory.createCompoundBorder(
BorderFactory.createCompoundBorder(
BorderFactory.createLoweredBevelBorder(),
BorderFactory.createEmptyBorder(5,5,5,5)),
BorderFactory.createLineBorder(Color.black)));
pictureScrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLL
BAR_ALWAYS);
TA1 = new JTextArea();
TA1.setLineWrap(true);
TA1.setWrapStyleWord(true);
TA1.setEditable(false);
TA1.setFont(new Font("Serif", Font.PLAIN, 16));
TSP1 = new JScrollPane(TA1);
TSP1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_
ALWAYS);
TSP1.setPreferredSize(new Dimension(500,40));
TSP1.setBorder(BorderFactory.createCompoundBorder(
BorderFactory.createCompoundBorder(
BorderFactory.createLoweredBevelBorder(),
BorderFactory.createEmptyBorder(5,5,5,5)),
BorderFactory.createLineBorder(Color.black)));
public void valueChanged(ListSelectionEvent e) {
if (e.getValueIsAdjusting()) return;
JList theList1 = (JList)e.getSource();
if (theList1.isSelectionEmpty()) {
picture1.setIcon(null);
TA1.setText(null);
} else {
index = theList1.getSelectedIndex();
ImageIcon newImage1 = new
ImageIcon("java/Applications/images/fotos/" +
(String)imageNames1.elementAt(index));
picture1.setIcon(newImage1);
picture1.setPreferredSize(new Dimension (newImage1.getIconWidth(),
newImage1.getIconHeight()));
picture1.revalidate();
TA1.setText(TA1.getText()+vr); //**
TA1.revalidate(); //**
protected static Vector parseList(String theStringList) {
Vector v = new Vector(10);
StringTokenizer tokenizer = new StringTokenizer (theStringList, " ");
while (tokenizer.hasMoreTokens()) {
String image = tokenizer.nextToken();
v.addElement(image);
return v;

Hi
Look at this program and i am sure it will give you some ideas, (actualy all you have to do is to add the images names in addPicList(), and to add the text in setText(s).
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.*;
import java.util.*;
import java.io.*;
public class PicText extends JFrame
     NwList picList;
     NwPict picImag;
     NwText txtImag;
public PicText()
     super ("My Pics");
     getContentPane().setLayout(null);
     setBounds(10,10,710,500);
     addPicList();
     picImag = new NwPict();
     getContentPane().add(picImag);
     txtImag = new NwText("");
     getContentPane().add(txtImag);
     addWindowListener(new WindowAdapter()
    {     public void windowClosing(WindowEvent ev)
          {     dispose();
               System.exit(0);}});
     setVisible(true);
private void addPicList()
     Vector v = new Vector(10,10);
     v.add("usa.gif");
     v.add("p.gif");
     v.add("img 3");
     picList  = new NwList(v);
     picList.setBounds(10,10,200,310);
     getContentPane().add(picList);
public class NwList extends JPanel
     JList       jl;
     JScrollPane sp;
     JLabel      jt;
public NwList(Vector v)
     setLayout(null);
     jl = new JList(v);
     sp = new JScrollPane(jl);
     jt = new JLabel();
     jt.setBackground(Color.white);
     jt.setForeground(Color.black);
     jt.setOpaque(true);
     jt.setBorder(new JTextField().getBorder());
     jt.setFont(getFont());
     jl.setBounds(0,0,100,1000);
     jl.setBackground(Color.white);
     jl.addListSelectionListener(new ListSelectionListener()
     {     public void valueChanged(ListSelectionEvent e)
                jt.setText((String)jl.getSelectedValue());
                String si = (String)jl.getSelectedValue();
               picImag.load(si);
               txtImag.setText(si);
     add(sp);
     add(jt);
public void setBounds(int x, int y, int w ,int h)
     super.setBounds(x,y,w,h);
     sp.setBounds(0,y+12,w,h-23);
     sp.revalidate();
     jt.setBounds(0,0,w,20);
public class NwPict extends JComponent
     Image pic = null;
public NwPict()
//     setLayout(null);
     setBounds(220,10,475,310);
     setBorder(new CompoundBorder(new MatteBorder(0,0,1,1,Color.gray),
                (new MatteBorder(1,1,0,0,Color.white))));
public void load(String s)
     pic = getToolkit().createImage(s);
     MediaTracker tracker = new MediaTracker(this);
     tracker.addImage(pic,0);
     try   {tracker.waitForID(0);}
     catch (InterruptedException e){}
     repaint();
public void paint(Graphics g)
     super.paint(g);
     if (pic != null) g.drawImage(pic,0,0,null);
public class NwText extends JTextArea
public NwText(String s)
     super(s);
     setLineWrap(true);
     setBounds(10,330,685,140);
     setBorder(new CompoundBorder(new MatteBorder(0,0,1,1,Color.darkGray),
                (new MatteBorder(1,1,0,0,Color.gray))));
public void setText(String s)
     if (s == "") return;
     BufferedReader in;
     char   cr = 0x0D; 
     char   lf = 0x0A;
     String so;
     super.setText("");
     try
          in = new BufferedReader(new FileReader("p.p"));
          while ((so = in.readLine()) != null) append(so+cr+lf);
     catch(FileNotFoundException e)
             System.out.println("File Not Found");
     catch(IOException e) 
          System.out.println(" io error");
public static void main (String[] args) 
     new PicText();
} Noah

Similar Messages

  • TS3694 Upgrading my iPad2 to iOS6 seems to have worked but now have a 3014 error message, have tried following the support advice but seem to be going round in circles.

    Upgrading my iPad2 to iOS6 seems to have worked but now have a 3014 error message, have tried following the support advice but seem to be going round in circles and can't see what is wrong.
    iPod linked to my MacBook which is upto date and running Mountain Lion
    Noted that my wi-fi here is very slow, could that be an issue?

    From 3rd link below.
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
        1.    Install the latest version of iTunes.
        2.    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
        3.    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
        4.    Try to restore from another known-good computer and network.
        5.    If the errors persist on another computer, the device may need service.
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • I should have received an iTunes Gift card , but there is no sign of it ?

    I should have received an iTunes Gift card , but there is no sign of it ?

    The gift would be sent via email to the address you gave when you set up the gift. Have you checked that email account? If so and nothing has appeared, make sure there aren't any anti-spam filters in place that might be blocking emails from Apple. Then if you still don't see the email, try resending the gift:
    http://support.apple.com/kb/HT1541
    i still have something like 15¢ From last year and it was by a gift card and because of that The iCloud won't let me to Put a new payment from Visa Account
    Having a credit balance won't prevent you from entering in a new payment method. A balance remaining would be an issue only if you're trying to change the country of your iTunes Store account. If your payment method is being rejected, then either it's invalid - a debit card which are in many countries not accepted, or a credit card from another country - or there's something amiss with your account. In the latter instance, or if the gift still doesn't come through, contact the iTunes Store and request assistance.
    Regards.

  • HT3775 I have received a .m4a audio file but can't open it  on my MAC or ipad . My get info suggests its MPEG-4 audo file .

    have received a .m4a audio file but can't open it  on my MAC or ipad . My get info suggests its MPEG-4 audo file .
    <E-mail Edited by Host>

    Try VLC media player it seems to play almost anything.
    http://www.videolan.org/vlc/

  • My iPhone 4s. Keeps coming up sim invalid, I have to keep restarting my phone but doesn't help, it's only 5 days old and I'm fed up now with it now! Any solutions please?

    My iPhone 4s. Keeps coming up sim invalid, I have to keep restarting my phone but doesn't help, it's only 5 days old and I'm fed up now with it now! Any solutions please?

    There is obviously something not right... But to determine what the issue is, it needs to be looked at...
    And the Apple Store would probably be the best place...
    Just my opinion...

  • I have received a spamming complaint from my email server - help?

    I have received a spamming complaint from my email server that I was not aware was happening.  They want me to clean my computer, what do I do first?

    There are a few trojan horse programs that can infect a Mac, but none found in the wild send out spam messages, so those aren't a concern for your current situation, and if you stay current with your updates to Mac OS X, Apple's blocked most of those trojans that do exist (there's a new update just today, I believe, for one discovered recently). Overall I don't see much need for antivirus utilities as long as you exercise common sense and caution in what you download from the web. Those trojans all depend on unsuspecting users downloading fake software from unsecure sites. Download only from sites you can trust - the software developer for applications - and don't open attachments you aren't expecting - and you should be fine. If you do feel the need for some sort of scanning, the freeware ClamXav should be sufficient.
    Regards.

  • TS3297 Unable to purchase on candy crush. I have purchased 5 lots at 69p but need another 5 extra moves or the money I've spent will be for nothing

    Please help. I have purchased exta moves on candy crush and now will not let me purchase more?

    Hi Ken,
    Wow, I've logged into adobe and never seen your response until now.
    I need to make the forums more of a daily stop I guess.
    Thank you for your response, When I go to the Archives, it states I have none. In addition, previously when I'd tried to move items to the archive, they just disappeared  
    Currently my desktop is not connecting at all, Everytime I connect, it's states "We have now logged you out" and requests I login again.
    I have of course rebooted,
    Gone into taskmanager, killed all the relevant threads,  tried again to login through the desktop, no luck, I'll have to uninstall it, make sure the threads are killed, then reboot it and then reinstall it, but I've not had the time to do that.
    On another note, and just as a point of reference, myself, personally, I hate these "cloud" file repositories (not to be confused with adobe cloud services which I love) but the file repositories themselves imho, are a blackhole of resource usage when one doesn't/isn't using them,
    Is there a way we can use it more of a "ftp" sort of thing, when I want to I can  put files there?  There is no way to "Download" the repository, no way to download the folders.. only individual files and then it takes I think three different steps before the download starts.. I find this very inhibiting.  Just an fyi. for what it's worth.
    Please, feel free to contact me,
    I'm on g+ chat [email protected]

  • Hello everyone i just upgraded my iPhoto to the latest version and now i cannot open iPhoto. I have checked for plist, preferences for 3ivx etc i have read a lot of info but i can't find any of those things on my mac and now i don't know what else to do?

    this is my error message:
    Iphoto cannot be opened because of a problem
    check with the developer to see if iphoto works with this version of Mac OS X. You may need to reinstall the application.....
    Process:         iPhoto [3858]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.3 (9.2.3)
    Build Info:      iPhotoProject-629052000000000~2
    App Item ID:     408981381
    App External ID: 7243044
    Code Type:       X86 (Native)
    Parent Process:  launchd [263]
    Date/Time:       2012-05-10 17:15:15.023 +0200
    OS Version:      Mac OS X 10.7.3 (11D50d)
    Report Version:  9
    Sleep/Wake UUID: 21C2B112-2C85-4553-B210-48667456CEC3
    Interval Since Last Report:          30117 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      592C054B-501B-488D-8469-34B95F94BABE
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
      Referenced from: /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/Frameworks/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
      Reason: no suitable image found.  Did find:
              /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis : open() failed with errno=1
              /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis : open() failed with errno=1
    Binary Images:
        0x1000 -   0xd29fe3  com.apple.iPhoto (9.2.3 - 9.2.3) <B79967AD-24B3-3FCB-9308-3258FD2CE470> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xe94000 -   0xf74fe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfbf000 -  0x115fffb  com.apple.geode (1.5.1 - 151.56) <96DB5B49-A0E9-31A6-B231-1342080D4982> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x1200000 -  0x1202fff  com.apple.iLifePhotoStreamConfiguration (2.2 - 2.2) <F5560FC9-1E0A-33E3-9BE0-439A30C5E0B4> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1208000 -  0x1217ff7  com.apple.iLifeAssetManagement (2.1 - 10.12) <76BFFB15-42B6-360B-8662-4A8C3CE5625A> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1224000 -  0x124cffb  com.apple.iPhoto.Tessera (1.1 - 60.11) <4436A07F-C1C2-35EC-AE4E-1C78D2E5DB17> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x125d000 -  0x1284ffb  com.apple.iPhoto.Tellus (1.3 - 60.11) <15666D46-40EA-3D08-A147-57353503CAAC> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1299000 -  0x12a3fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <D2B98DA9-300C-3436-BFC5-C461561F41D2> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x12ae000 -  0x12c4ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <F550DEBB-AB7D-3223-8197-CEE098850880> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x12d2000 -  0x12feffb  com.apple.DiscRecordingUI (6.0.3 - 6030.4.1) <A80992AB-240C-359B-80B7-773FF6040205> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1317000 -  0x1319fff  com.apple.ExceptionHandling (1.5 - 10) <7C514CC4-7951-31CA-AEB3-D4AF49F44AE7> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x131f000 -  0x132afff  com.apple.UpgradeChecker (9.2 - 9.2) <CD256BF5-BF97-3972-91DD-79024C4D4390> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x1332000 -  0x1332fff  com.apple.iLifeSlideshow (2.3.0 - 847) <C4B7D4F3-D687-3AF6-9561-FE4C66F05BE2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1335000 -  0x15abffb  com.apple.iLifePageLayout (1.3 - 150.41) <F2EF1F55-312B-3C5E-8FCA-F505B3801310> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1675000 -  0x1711ff7  com.apple.MobileMe (13 - 1.0.4) <A202411E-6B50-362B-9C0B-F374FDE2736C> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x176b000 -  0x17cbfff  com.apple.proxtcore (1.3 - 140.59) <6C899840-6789-3A2A-A090-BF368536C5EE> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x181d000 -  0x18fcff3  com.apple.iLifeSQLAccess (1.6 - 30.14) <2CBF1F57-610A-33B8-9607-30C38DF4155B> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x192a000 -  0x1956fef  com.apple.ProUtils (1.1 - 120.15) <0D7EBEA9-3863-3DED-B137-2E30FF863C8E> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1971000 -  0x19c4ff7  com.apple.iLifeKit (1.3 - 90.17) <2E7BE9FC-E564-305B-BB0C-9F27252CE5F2> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x19f5000 -  0x1c1bff7  com.apple.prokit (7.2.1 - 1710) <3791E1B1-DAB0-3989-BF09-4BE2EFC82B4F> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1d26000 -  0x216cfe3  com.apple.RedRock (1.8.2 - 233.29) <D15657D4-EA9C-381A-9E61-DF7FDD39B9A8> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2303000 -  0x2317ffb  com.apple.AOSAccounts (1.0.1 - 1.0.68) <91E44ECE-8E18-34E3-A836-2A2F2E7FE69C> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2329000 -  0x2363ff3  com.apple.Ubiquity (1.1 - 210) <42B6B1C0-C5A0-3145-97F0-B1F02C11E7BE> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x237d000 -  0x237dff6  com.apple.SafariDAVNotifier (1.1.1 - 1) <8D27CE22-ACA3-3F4D-A164-BF08F2E8D4D7> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2382000 -  0x23a3ff7  com.apple.ChunkingLibrary (1.0 - 127) <62C6ADB8-D9F5-373E-8187-658B3BEC5F88> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x23ae000 -  0x23b5ff7  com.apple.MediaSync (1.1 - 130.12) <9CAA779A-DF95-3523-8AE7-E049B4E143A7> /Applications/iPhoto.app/Contents/Frameworks/MediaSync.framework/Versions/A/Med iaSync
    0x23bd000 -  0x23befff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x23c2000 -  0x23e7ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x23ee000 -  0x2422fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x2428000 -  0x258ffff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x2593000 -  0x25bcff7  com.apple.iLifeSlideshowCore (2.3.0 - 233) <8C2DEBBB-645E-3E12-9312-098C749BED61> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/Frameworks/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x25cf000 -  0x26defef  com.apple.iLifeSlideshowProducer (2.3.0 - 613) <FA025182-CD9C-3B52-9FE5-6E755840F7A4> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/Frameworks/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x272c000 -  0x288afe3  com.apple.iLifeSlideshowRenderer (2.3.0 - 676) <3364E434-8E7D-39F7-8617-0D574FE0E7FC> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/Frameworks/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x28e8000 -  0x2901ff7  com.apple.iLifeSlideshowExporter (2.3.0 - 252) <74FD733C-A9AB-36BC-A4AA-1C98C9443512> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/Frameworks/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x290e000 -  0x293aff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x8fe9c000 - 0x8feceaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90045ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90046000 - 0x9007dfef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9007e000 - 0x903c2ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x903c3000 - 0x903cdff7  com.apple.dotMacLegacy (3.3 - 267) <64CB39B4-FF52-38FD-A45B-9CD3D54B3D6B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x903ce000 - 0x903edfff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x903ee000 - 0x903efff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x903f0000 - 0x90433ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x90563000 - 0x9057fffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90580000 - 0x907a9ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x907aa000 - 0x907bfff7  com.apple.ImageCapture (7.0 - 7.0) <E019C6BB-CCE9-3D8C-A131-909CE8853502> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x907c0000 - 0x907eefe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x907ef000 - 0x908d0ff3  com.apple.backup.framework (1.3.1 - 1.3.1) <2CFEC368-F3FA-33C2-A821-336ACBAB0D35> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x908d1000 - 0x90a32ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90a33000 - 0x90aa2ff3  com.apple.WhitePagesFramework (10.7.0 - 141.0) <140B2088-BEE5-389F-82E3-538BDFA40799> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x90aa3000 - 0x90ad2ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x90ad3000 - 0x90ad4fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x90b93000 - 0x90bdbff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90c7f000 - 0x9115bff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x911bf000 - 0x91218fff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91219000 - 0x91295ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91296000 - 0x91323ff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91324000 - 0x91370fff  com.apple.ExchangeWebServices (2.1 - 125) <B44845E8-694A-3117-9A6A-1417BAF2AA92> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x91382000 - 0x91607fe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91608000 - 0x91612ff0  com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91613000 - 0x9168effb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9168f000 - 0x917e1fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91808000 - 0x918d7fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x918d8000 - 0x918e8fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x918e9000 - 0x91b32ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91cc9000 - 0x91ccbffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ccc000 - 0x91ce9ff3  com.apple.openscripting (1.3.3 - ???) <8ABD04D6-7B7A-3C39-801E-1630098D5B42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91db3000 - 0x91db5ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91db6000 - 0x91db7ff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x92b21000 - 0x92b61ff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x92b62000 - 0x92b65ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x92b66000 - 0x92c4efff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <A1B07527-9C74-3107-A972-9795B817D683> /usr/lib/libxml2.2.dylib
    0x92c4f000 - 0x92c69fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92c6a000 - 0x92cadfff  com.apple.MediaKit (12 - 589) <C9B45C52-6AC0-3685-82E7-E65960D82F87> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x92cae000 - 0x92caefff  com.apple.Carbon (153 - 153) <F996332A-390E-3337-A09E-A1E54004B567> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92caf000 - 0x92cd1ffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9336d000 - 0x933a0fef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x933a1000 - 0x933acff4  com.apple.CrashReporterSupport (10.7.3 - 349) <AA8CA4B8-666D-3574-9D2E-F1A28111341F> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x933d7000 - 0x93434ffb  com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93435000 - 0x93451ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x93458000 - 0x93462ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93463000 - 0x93473ff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x93474000 - 0x93474fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93481000 - 0x9348affb  com.apple.DisplayServicesFW (2.5.2 - 317) <02BD6AF3-F355-3F68-9DC2-2DA28CE27682> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9348b000 - 0x9348cffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9348d000 - 0x9351afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9351b000 - 0x93544ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93545000 - 0x93545ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93546000 - 0x935bafff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x935bb000 - 0x93a30ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x93a31000 - 0x93a34ffb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93a44000 - 0x93a78ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x93a79000 - 0x93a80ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x93a81000 - 0x93ae5fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93ae6000 - 0x93af1ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x93af2000 - 0x93c10fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93c11000 - 0x93c22fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x942bd000 - 0x9431fff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x94320000 - 0x9437bff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9438e000 - 0x9438efff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <A870EB56-560C-3DA2-B189-6E0FD2D3B66D> /usr/lib/system/libdnsinfo.dylib
    0x94411000 - 0x94d395eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94d3a000 - 0x94d41ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94d47000 - 0x94d50fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x94d9e000 - 0x94da0ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <52F7B44C-1B43-3B7B-9C9E-6410D8682935> /usr/lib/system/libdyld.dylib
    0x94da1000 - 0x94dfbfff  com.apple.coredav (1.0.1 - 115.20) <8A7C6104-3D4B-364E-9AEA-927C5BC95FE3> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x94dfc000 - 0x94e6affc  com.apple.imcore (6.0 - 800) <6B99CCEA-36E1-3543-9F21-7E9040C06D7C> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x94e6b000 - 0x94e89ff7  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <124A6CE3-3934-3994-9D0A-E85A0C0BF082> /usr/lib/system/libsystem_kernel.dylib
    0x94e8a000 - 0x94f21ff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94f22000 - 0x94f2dfff  libkxld.dylib (??? - ???) <AD3C0B3E-EBA8-3A85-ADDB-F86613564E2D> /usr/lib/system/libkxld.dylib
    0x94f3a000 - 0x94ffcfff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95011000 - 0x95012ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x95054000 - 0x9514cff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95180000 - 0x95197ff8  com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x95198000 - 0x9527bff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x9527c000 - 0x95d0fff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95d38000 - 0x95e28ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x95e29000 - 0x9621cffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9621d000 - 0x965d7ffb  com.apple.SceneKit (2.2 - 125.3) <D4EAD83D-0E86-3159-80D6-C8B53B25B833> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x965d8000 - 0x96657ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <A6253E92-F339-306D-9AC0-3CFAB169E8D0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9665e000 - 0x96672fff  com.apple.CFOpenDirectory (10.7 - 146) <58050170-D74E-3670-945D-D8501F67835F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96673000 - 0x96676ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x96677000 - 0x9669fff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <5158C760-D168-3842-AAE0-3B146B3537A7> /usr/lib/libxslt.1.dylib
    0x966a0000 - 0x96760ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96761000 - 0x9678cfff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x968a2000 - 0x968a6ffb  libutil.dylib (??? - ???) <C808FFCE-3D43-3990-BFAD-9AA735F7EFA7> /usr/lib/libutil.dylib
    0x9693c000 - 0x9693cffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9693d000 - 0x96953ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x96954000 - 0x9695affd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9695b000 - 0x969aaffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x969ab000 - 0x969befff  com.apple.syncservices.syncservicesui (6.2 - 673.4) <BBDA48B2-15C9-35BC-A5EE-0D72E66773A5> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x969bf000 - 0x96a16ff3  libCoreStorage.dylib (??? - ???) <197358E1-D5C2-3157-AAA3-AB700795EEA7> /usr/lib/libCoreStorage.dylib
    0x96a1a000 - 0x96aa1fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96aa2000 - 0x96ab0fff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96ab1000 - 0x96db3fff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96db4000 - 0x96db8ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x96db9000 - 0x96dc2ff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x96dc3000 - 0x96dc9ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96dce000 - 0x96f30fff  com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96f31000 - 0x96f39ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x96f3a000 - 0x9701bff7  com.apple.DiscRecording (6.0.3 - 6030.4.1) <BB3FE6A8-B9EB-3CA2-B87E-70F7688527EA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97053000 - 0x9726eff7  com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x97272000 - 0x9727ffff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97280000 - 0x972d0ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x972d1000 - 0x972e4ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x972e5000 - 0x972f3fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x972f4000 - 0x972f7ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x972f8000 - 0x97359ffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9735a000 - 0x9760bff7  com.apple.AddressBook.framework (6.1 - 1083) <060E8C9F-FBF8-3394-8D63-D2DE0F428829> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9760c000 - 0x9760cfff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9760d000 - 0x9760dff9  com.apple.AOSMigrate (1.0 - 1) <C9887D33-BB04-36B1-AB02-713CF3168E44> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x97742000 - 0x97749ff9  libsystem_dnssd.dylib (??? - ???) <2FD48636-7CFA-32FA-A595-F12E4246E355> /usr/lib/system/libsystem_dnssd.dylib
    0x9774a000 - 0x97754ffc  com.apple.NSServerNotificationCenter (4.0 - 4.0) <027FD93B-7F9E-3853-843F-584759761970> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x97755000 - 0x97776fff  com.apple.framework.internetaccounts (1.2 - 3) <C54DD5C3-DF85-302D-9D4B-6C34C4B1A8A2> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x97777000 - 0x97787fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97788000 - 0x9781dff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9781e000 - 0x97883ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97884000 - 0x97892ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x97893000 - 0x978e3ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x978e4000 - 0x97912ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97913000 - 0x97928fff  com.apple.iChat.InstantMessage (6.0 - 835) <F80F4A61-5EDE-3995-9FFE-49A1AD1BC9D0> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x97929000 - 0x97998fff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x97a24000 - 0x97a24fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97a25000 - 0x97afcffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x97b22000 - 0x97c4eff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97c63000 - 0x97c64ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x97c65000 - 0x97d75fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x97d91000 - 0x97db3ff1  com.apple.PerformanceAnalysis (1.10 - 10) <FEB4AEF4-F8C0-3A20-A004-B236B2F0B02B> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x97db4000 - 0x987d4fff  com.apple.WebCore (7534.53 - 7534.53.11) <1A48798F-7E15-3792-9CA2-8661F49669AB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x98843000 - 0x988cdffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98903000 - 0x9893efff  com.apple.bom (11.0 - 183) <8E3F690E-4D23-3379-828C-5AB0453B9226> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9893f000 - 0x98944ffb  com.apple.phonenumbers (1.0 - 47) <1830301D-5409-3949-9614-C43C62B39DDA> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x98945000 - 0x98bb8ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x98bb9000 - 0x98bc7ff7  com.apple.AppleFSCompression (37 - 1.0) <E54AEE04-F1D2-3178-AF5B-5A2AED9CF884> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98bc8000 - 0x98bc9fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98bca000 - 0x98bcfff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x98bd0000 - 0x98bd8fff  com.apple.AOSNotification (1.4.0 - 504.1) <7C46FEED-AC63-3527-97BA-55FA497F1582> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x98bdb000 - 0x98db2fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x98db3000 - 0x98dbeffc  com.apple.NetAuth (3.1 - 3.1) <CD89526E-4FF6-3BB3-A94E-832D4504AB1C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x98dbf000 - 0x98de2fff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98e4f000 - 0x98e81fff  com.apple.CalDAV (1.0.1 - 51.3) <1B6C9B43-1D67-343A-A988-AAE688EF97AF> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x98eb1000 - 0x98ed6ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98ed7000 - 0x98f3fff3  com.apple.ISSupport (1.9.8 - 56) <59225A65-41C1-35CA-9F29-229AC427B728> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98f40000 - 0x98f41fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x98f42000 - 0x99285fff  com.apple.MediaToolbox (1.0 - 705.61) <FF915A3D-16F4-3191-A9B2-EF9270104786> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99286000 - 0x99542ff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x99543000 - 0x9956bffb  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <6EF55D8E-0B45-310D-8924-C9902986D221> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x9956c000 - 0x99596ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x99597000 - 0x995d3ff7  com.apple.imfoundation (6.0 - 800) <268EBDDA-7EA7-3626-BE16-413566376821> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/Frameworks/IMFoun dation.framework/Versions/A/IMFoundation
    0x995d4000 - 0x995d7ffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x995d8000 - 0x996afff6  com.apple.QuickLookUIFramework (3.1 - 500.10) <1E4CDD9B-BF13-375A-AC74-0943F9DA8648> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x996b0000 - 0x9977bfff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x99788000 - 0x99790ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x99791000 - 0x997dcfff  com.apple.iCalendar (5.0 - 104) <F1F1961A-7891-38AE-8FAF-EB97E6DFA469> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x997dd000 - 0x9981eff7  com.apple.CoreMedia (1.0 - 705.61) <75CC7ECC-8D62-3BA3-BD9B-D5E7FA82EC2D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9981f000 - 0x99b29ff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99b2a000 - 0x99c00aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x99c01000 - 0x99d48fff  com.apple.syncservices (6.2 - 673.4) <E08EBA13-4626-3801-91E6-A621BD3FD8D8> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x99db7000 - 0x99de4ff7  com.apple.securityinterface (5.0 - 55007) <E5139C3F-23D2-363D-A4A2-B491E55A5439> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x99de5000 - 0x99e36ff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x99e37000 - 0x99e99ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x99e9a000 - 0x99ea2fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99eae000 - 0x99ed9fff  com.apple.framework.Admin (11.0 - 11.0) <42828364-0645-3AF1-9FD3-BEF1E5D01C93> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x99eda000 - 0x99ee3ffb  com.apple.aps.framework (2.1 - 2.1) <49258A4E-8E2E-3B11-A7BC-C489D4439DF6> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x99ee4000 - 0x99ee7fff  com.apple.AppleSystemInfo (1.0 - 1) <0E02BA66-4EA6-3EA1-8D81-3D0DE36F1CE8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x99ee8000 - 0x99f1eff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x99f23000 - 0x99f23fff  libodfde.dylib (??? - ???) <145BCE52-E8B7-35E8-9145-7459E66F7502> /usr/lib/libodfde.dylib
    0x99f24000 - 0x99f75fff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x99f76000 - 0x99f7affa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x99f7b000 - 0x99ff1fff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9a50f000 - 0x9a52cfff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9a52d000 - 0x9a535ff3  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <5FF5F6DE-32EE-3DEC-9DC4-2BC1D5797C82> /usr/lib/system/liblaunch.dylib
    0x9a536000 - 0x9a536fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9a612000 - 0x9a721fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9a722000 - 0x9a723ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <8CADB97F-101D-34C3-82C2-569E801031E0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9a756000 - 0x9a77cffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9a77d000 - 0x9a77efff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9a77f000 - 0x9a77fff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9a780000 - 0x9a7dcfff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9ae88000 - 0x9b503fe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9b504000 - 0x9b615ff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9b70b000 - 0x9b748ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9b749000 - 0x9b74affc  com.apple.EFILogin (1.0 - 1) <A5CD828D-92D9-3866-ABF9-24551BD32301> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x9b74b000 - 0x9b7c3ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9b803000 - 0x9b810fff  com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9b811000 - 0x9bc13ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9bc14000 - 0x9bd0bff3  com.apple.PubSub (1.0.5 - 65.28) <B11697D0-A6A3-3BCF-83BC-8CBF52D4BB00> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9bd0c000 - 0x9bd0dffd  libwebsharing.dylib (??? - ???) <3660334A-2C29-3A39-9DB7-720090A0BB32> /usr/lib/libwebsharing.dylib
    0x9bd0e000 - 0x9bd4affa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9bd4d000 - 0x9bd51fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9bd52000 - 0x9bfb5ff7  com.apple.AOSKit (1.02 - 91) <F4D15600-7DD7-337F-B469-9F466D6E8962> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x9bfb6000 - 0x9c007ff3  com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9c008000 - 0x9c020ff3  com.apple.frameworks.preferencepanes (15.0 - 15.0) <9E5FE337-358F-3B10-955D-B2D2021F732B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x9c021000 - 0x9c025fff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9c026000 - 0x9c074ff3  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <2FBC3C23-B0DD-3F0B-8452-90954F9C7E13> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9c075000 - 0x9c0dcfff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x9c0dd000 - 0x9c0e8ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <DFF43AC6-7D21-36C6-97C9-F46411D18032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9c0e9000 - 0x9c0e9fff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9c0ea000 - 0x9c0f8fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x9c0f9000 - 0x9c0f9fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9c0fa000 - 0x9c0ffffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9c100000 - 0x9c149ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9c199000 - 0x9c1aefff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9c1af000 - 0x9c1e5ff4  com.apple.LDAPFramework (3.1 - 120.2) <A8601C27-6134-3AD1-A76C-F65D49183D9E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9c1e6000 - 0x9c3dbff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9c3dc000 - 0x9c3f9ff7  com.apple.DotMacSyncManager (6.1 - 488.5) <262B067E-2CF5-3DC7-900B-4B85324C3AFD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x9c3fa000 - 0x9c49efff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9c49f000 - 0x9c4a3ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9c4b2000 - 0x9c7bffff  com.apple.MessageFramework (5.2 - 1257) <C2D813FA-0063-3EC5-9300-1F4896EEFE93> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x9c7c0000 - 0x9c7c4ffd  IOSurface (??? - ???) <CAF0B3F2-1589-3139-8A59-E54797C02EA0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9c7c5000 - 0x9c8dcfe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9c8dd000 - 0x9c8e8ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <92C8B5DE-ACAB-36DF-9CA8-F113A28C4B20> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9c8e9000 - 0x9c8f3fff  libcsfde.dylib (??? - ???) <1EB83BCA-0A96-3A52-B99B-AD9B9E2A7568> /usr/lib/libcsfde.dylib
    0x9c8f4000 - 0x9caf5fff  com.apple.CalendarStore (5.0.2 - 1166) <702F484F-6CBF-345D-9AA3-DB992CABDE7E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9caf6000 - 0x9cb91ff3  com.apple.ink.framework (1.3.2 - 110) <F0E9C225-0D20-31D2-AB14-2299CFAE6C2E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9cb92000 - 0x9cd46ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9cd47000 - 0x9ce46ffb  com.apple.DiskImagesFramework (10.7.3 - 331.3) <92112BAD-4A81-32C0-BB4F-3A92DBFF829F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9ce47000 - 0x9ce88ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    Model: MacBook5,1, BootROM MB51.007D.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.32f8
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463132383634485A2D314731443120
    Memory Module: BANK 0/DIMM1, 1 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463132383634485A2D314731443120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD5000BEVT-00A0RT0, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0304, 0x06200000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06110000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2

    What a waste of space to paste the code.
    Why not ask in the iLife > iPhoto forum where your question belongs.

  • I have received a document with comments but my reader does not recognize them.  I am told there are no comments in the document

    I cannot open the annotations

    It's possible the file has been flattened, which leaves the sticky note indicator, but removes its actual contents...

  • Firefox 4 opens multiple windows. Have tried every suggestion to fix but does not help. Does anyone know how to fix this?

    I am a developer. Not sure if it was a programming thing or not but now FF 4.0.1 constantly opens up multiple windows each time I open it. Sometime around 3-4 and other times about 15 to 20 windows. I have searched your KB and Google and have tried every recommended fix but nothing helps. I am not infected, no malware and everything else is fine. I will provide remote access to my system via TeamViewer (or your option) if someone can please identify the problem or provide new details on how to troubleshoot this. I will have to find a new browser soon if this is not resolved. Many folks are suffering due to this...not just me.

    This shit remains in Firefox 5. Nothing's changed.
    Mozilla began to venture releasing a defective commodity.

  • I have my page set in percentages, but i need help....

    I figured to set my page in percentages so it can conform to any size screen or resolution. but the thing i dislike about it is that when you minimize the browser window, the text on the page shifts in order to fit the screen, but the images remain the same and what not. how can I make my page viewable in most, if not all, screens and resolutions without using percentages. another things about using percentages is that I cant use a fixed banner (that is in pixels). please let me know what is the best solution. hope this made sense lol
    thanks,
    and my under construction webpage is www.ees-energy.com
    Obaid

    Hyperlinks, Edit Link Styles, and while being in [Default Link Style] you have below Language setting. You set any language in the world that fits your site.

  • Apple have agreed to replace my iphone, BUT I NEED HELP!

    They said they would because it was the touch screen that stopped working, not because of any drops or damage or anything like that. They're going to bring me a new one next week, but i'm slightly worried about the condition of my phone.
    A couple of months ago i smashed the screen and made the decision to repair it myself (which was very sucessful) i am aware that this breaks my warranty, but can they tell if the phone has been opened? surely if they had done the repair it would have had the the same effect on the insides?
    As well as this, the little water damage detector on the bottom has turned red (but the one in the headphone jack is still clear) even though my phone has not experienced any water damage as far as i know, and if it has then that's certainly not what broke the phone.
    Will they still replace my phone?
    PLEASE HELP!!!

    confusedddd wrote:
    The thing is that they're delivering it to my house on monday, my sister will be here to exchange the phones, and if there's a problem i won't be there to explain etc.
    There will not be anyone to explain it to.  Apple does not personally deliver the device to your home, it is shipped via one of many carriers (depending on where in the world you are).
    You've voided the warranty, you freely admit that.
    You might get lucky and they simply over look it.
    You might not get lucky and be charged the out of warranty price.
    Only APPLE can make that decision.

  • My iPod classic wont connect to the computer. The light comes on but it doesn't even come up with 'connected' screen. Have tried everything on apple troubleshoot but hasn't helped. Still works in Logitech iPod player. Any suggestions please???

    My iPod classic wont connect to the computer. The light comes on but it doesn't even come up with 'connected' screen on the ipod. Have tried different computers, usb cables and ports, as well as restarting computer, updating itunes, and rebooting ipod. Still works in Logitech iPod player, however it has just wiped itself of all songs so at the moment I'm stuck with a useless iPod. Any suggestions please???

    If you happen to have a USB docking cable that is new (or close to being new), try using that one.  If the cause is the dock connector on the iPod becoming worn, if you try it with a cable that is not worn, it's possible that it may connect for data.
    I believe the dock connector is internally part of the logic board, so it may not be economical to have a repair shop (including Apple Store Genius Bar) do the repair.  You'll need to ask for pricing. 
    If you are good at such things, this web site has DIY repair guides
    http://www.ifixit.com/Device/iPod_Original
    If it's the most recent iPod classic, it appears to be quite difficult to pry open.  I have an older 4th gen (and 3rd gen) "classic" iPod, and those are fairly eash to pry open, using the plastic tools.

  • Hello! i can't access both hotmail an facebook. I have cleared my cookies and caches but it didnt help! what should i do?

    This problem is only with secure site with https

    Do you get an error message page about the secure certificate, or a more general message that the page couldn't be loaded? Or does the page load but not work correctly?
    Not sure this is relevant, but just in case: Firefox 23 has a new feature to block "mixed content" in a page. This article describes how to spot that condition and address it: [[How does content that isn't secure affect my safety?]]

  • Have tried to reset password but have not received reset email after 2 days. Please help!

    Hi there fellow Apple-ites.
    Hoping you can help with this.
    After using my current Apple ID (new email address) for about a year for app store and iTunes, find my friends, iPhone (etc) and being able to log into iCloud, my new (this year) MBP has somehow reverted to my old ID (old email address, still same account). I just upgraded to Lion and now iCal tells me it can't connect to iCloud because of a problem with Apple ID, which is my old email address.
    I want to be able to log in under my old Apple ID to change it over to my current Apple ID, or somehow unlink from my old Apple ID.
    I can't remember the password because it's been ages since I've used it. I have tried to reset but I haven't received the reset emails in the last 2 days. I have checked spam and trash in all email addresses in case it is a different address to the one I thought. I have also checked that I don't have any filters that could delete the email.
    I tried the secret questions but I can't get past the birthdate page - says my info is incorrect! I have followed the links from the general support area and checked iCloud system status and everything is normal. I have noticed a lot of people have this problem but that it appears unresolved or they haven't written back on how it has been resolved.
    This problem seems too common to warrant a phone call or visit to an Apple store (there is no Apple store in my town either). Anyone have any ideas? I promise I'll respond when/if it resolves! By the way, I'm in Australia.
    Thanks in advance

    Thanks for that advice @randers4.
    I linked through and submitted my info as a "topic not covered" in the iCloud section. After entering the serial number of my MBP it turns out I wasn't eligible for technical support (though I don't think this is hardware related support) and the final suggestion was to take my computer into an Apple store. I called my local Apple reseller and asked for assistance. The customer service rep was very nice but unable to help, so suggested I call Apple Support on 1300 321 456. I did so and, again, spoke to two very polite and helpful customer service people (I was transferred to security services). I didn't have to be on hold to speak to either rep for more than a few seconds! After trying a few different things, he worked out what was happening...
    So, to cut a long story short, to solve the problem in my OP, all I had to do was log out of iCloud in my System Preferences and log back in using my current Apple ID. [Edited to add that I had to sign out of everything I was currently signed in to with my Apple ID before logging out and in again.]
    Problem solved!
    Message was edited by: NotBaconBits

Maybe you are looking for

  • Creating animated GIF using Photoshop Scripting

    Hi, I am trying to mimic the action "Save for Web & Devices" of a PSD file, having 4 frames in an animation, into an animated GIF file. I was suggested to use "ScriptingListener", but I did the copy/paste of the code, it did not work. Is there a way

  • Item category RENN is not defined for this item

    Hey SD experts, I've created a sales order with free of charge and standard items. Now, I'm trying to create a return order with reference to this sales order. I got this error message: Item category RENN is not defined for this item. I've checked in

  • Trouble opening files

    I have Adobe CS3. I've had it for two months, and just yesterday, it started freezing should I attempt to open files with the program. Should I right-click on an appropriate file and open it that way, it opens fine. I have attempted reinstalling phot

  • Accessing / communication between VM1 and VM2 both within a CS and within a VNET

    Hi, I have been trying to access one VM from another VM both within a CS and within a VNET.  Let me summarise all that I have done in the last couple of days. I have VM1 and VM2 in the same CS and same VNET. I have disabled windows firewall in both t

  • Missing fonts auto replacement

    Hi, Please help me with my font issue. When I open *.psd file in Photoshop Elements 10 it gives me warning message about font Helvetica I have used. I know that the Helvetica fonts have already been added to the Photoshop font list. Here is a warning