Missing photos after importing from iPhoto

I have a big iPhoto library that span from 2002 until today.
Launching Photo for the first time started the import of the default iPhoto library, when finished the problem is not everything has been imported.
I have not done photo by photo check, but for instance all 2014 photos are missing and since I see less photo in previous years and in 2015 also photos from other years are missing.
I can't reimport the iPhoto library (I have not been able to find how), so my question is how can I import the whole iPhoto library to Photos?

First off that is a bad practice - never have any computer program delete things - import photos and keep them - after at least one successful backup cycle has taken place and you are sure your photos are safely on the Mac and backed up then use the camera's format command to erase and reformat the card
You can try to backup your iPhoto library and hold down the option and command keys while launching iPhoto - repair permissions and rebuild the database form the resulting first aid window - that may recover your photos - if it does not then photo recover software like media recover is the next step
LN

Similar Messages

  • Unlogged Missing Photos After Import From Aperture

    Hi!
    I have just made the switch from Aperture to Lightroom, and have use the 1.1 version of the Aperture import plugin.
    In my Aperture Library I have, according to the Library -> Photos: 11105 Photos, however after importing to Lightroom, I have only 10967 photos. I have checked the import log, and there were 4 items which failed to import - 3 were .mpo files (panoramas from an xPeria) and 1 was a .gif file. This leaves a deficit of 133 photos that I can't account for.
    Is there any way to compare the aperture library to the lightroom library to see what is missing?

    *WARNING* Once agin, this is a VERY long post! And this contains not only SQL, but heaps of command line fun!
    TLDR Summary: Aperture is storing duplicates on disk (and referencing them in the DB) but hiding them in the GUI. Exactly how it does this, I'm not sure yet. And how to clean it up, I'm not sure either. But if you would like to know how I proved it, read on!
    An update on handling metadata exported from Aperture. Once you have a file, if you try to view it in the terminal, perhaps like this:
    $ less ApertureMetadataExtendedExport.txt
    "ApertureMetadataExtendedExport.txt" may be a binary file.  See it anyway?
    you will get that error. Turns out I was wrong, it's not (only?) due to the size of the file / line length; it's actually the file type Aperture creates:
    $ file ApertureMetadataExtendedExport.txt
    ApertureMetadataExtendedExport.txt: Little-endian UTF-16 Unicode text, with very long lines
    The key bit being "Little-endian UTF-16", that is what is causing the shell to think it's binary. The little endian is not surprising, after all it's an X86_64 platform. The UTF-16 though is not able to be handled by the shell. So it has to be converted. There are command line utils, but Text Wrangler does the job nicely.
    After conversion (to Unicode UTF-8):
    $ file ApertureMetadataExtendedExport.txt
    ApertureMetadataExtendedExport.txt: ASCII text, with very long lines
    and
    $ less ApertureMetadataExtendedExport.txt
    Version Name    Title   Urgency Categories      Suppl. Categories       Keywords        Instructions    Date Created    Contact Creator Contact Job Title       City    State/Province  Country Job Identifier  Headline        Provider        Source  Copyright Notice        Caption Caption Writer  Rating  IPTC Subject Code       Usage Terms     Intellectual Genre      IPTC Scene      Location        ISO Country Code        Contact Address Contact City    Contact State/Providence        Contact Postal Code     Contact Country Contact Phone   Contact Email   Contact Website Label   Latitude        Longitude       Altitude        AltitudeRef
    So, there you have it! That's what you have access to when exporting the metadata. Helpful? Well, at first glance I didn't think so - as the "Version Name" field is just "IMG_2104", no extension, no path etc. So if we have multiple images called "IMG_2104" we can't tell them apart (unless you have a few other fields to look at - and even then just comparing to the File System entries wouldn't be possible). But! In my last post, I mentioned that the Aperture SQLite DB (Library.apdb, the RKMasters table in particular) contained 11130 entries, and if you looked at the Schema, you would have noticed that there was a column called "originalVersionName" which should match! So, in theory, I can now create a small script to compare metadata with database and find my missing 25 files!
    First of all, I need to add that, when exporting metadata in Aperture, you need to select all the photos! ... and it will take some time! In my case TextWrangler managed to handle the 11108 line file without any problems. And even better, after converting, I was able to view the file with less. This is a BIG step on my last attempt.
    At this point it is worth pointing out that the file is tab-delimited (csv would be easier, of course) but we should be able to work with it anyway.
    To extract the version name (first column) we can use awk:
    $ cat ApertureMetadataExtendedExport.txt | awk -F'\t' '{print $1}' > ApertureMetadataVersionNames.txt
    and we can compare the line counts of both input and output to ensure we got everything:
    $ wc -l ApertureMetadataExtendedExport.txt
       11106 ApertureMetadataExtendedExport.txt
    $ wc -l ApertureMetadataVersionNames.txt
       11106 ApertureMetadataVersionNames.txt
    So far, so good! You might have noticed that the line count is 11106, not 11105, the input file has the header as I printed earlier. So we need to remove the first line. I just use vi for that.
    Lastly, the file needs to be sorted, so we can ensure we are looking in the same order when comparing the metadata version names with the DB version names.
    $ cat ApertureMetadataVersionNames.txt | sort > ApertureMetadataVersionNamesSorted.txt
    To get the Version Names from the DB, fire up sqlite3:
    $ sqlite3 Library.apdb
    sqlite> .output ApertureDBMasterVersionNames.txt
    sqlite> select originalVersionName from RKMaster;
    sqlite> .exit
    Checking the line count in the DB Output:
    $ wc -l ApertureDBMasterVersionNames.txt
       11130 ApertureDBMasterVersionNames.txt
    Brilliant! 11130 lines as expected. Then sort as we did before:
    $ cat ApertureDBMasterVersionNames.txt | sort > ApertureDBMasterVersionNamesSorted.txt
    So, now, in theory, running a diff on both files, should reveal the 25 missing files.... I must admit, I'm rather excited at this point!
    $ diff ApertureDBMasterVersionNamesSorted.txt ApertureMetadataVersionNamesSorted.txt
    IT WORKED! The output is a list of changes you need to make to the second input file to make it look the same as the first. Essentially, this will (in my case) show the Version Names that are missing in Aperture that are present on the File System.
    So, a line like this:
    1280,1281d1279
    < IMG_0144
    < IMG_0144
    basically just means, that there are IMG_0144 appears twice more in the DB than in the Metadata. Note: this is specific for the way I ordered the input files to diff; although you will get the same basic output if you reversed the input files to diff, the interpretation is obviously reversed) as shown here: (note in the first output, we have 'd' for deleted, and in the second output it's 'a' for added)
    1279a1280,1281
    > IMG_0144
    > IMG_0144
    In anycase, looking through my output and counting, I indeed have 25 images to investigate. The problem here is we just have a version name, fortunately in my output, most are unique with just a couple of duplicates. This leads me to believe that my "missing" files are actually Aperture handling duplicates (though why it's hiding them I'm not sure). I could, in my DB dump look at the path etc as well and that might help, but as it's just 25 cases, I will instead get a FS dump, and grep for the version name. This will give me all the files on the FS that match. I can then look at each and see what's happening.
    Dumping a list of master files from the FS: (execute from within the Masters directory of your Aperture library)
    $ find . -type f > ApertureFSMasters.txt
    This will be a list including path (relative to Master) which is exactly what we want. Then grep for each version name. For example:
    $ grep IMG_0144 ApertureFSMasters.txt
    ./2014/04/11/20140411-222634/IMG_0144.JPG
    ./2014/04/23/20140423-070845/IMG_0144 (1).jpg
    ./2014/04/23/20140423-070845/IMG_0144.jpg
    ./2014/06/28/20140628-215220/IMG_0144.JPG
    Here is a solid bit of information! On the FS i have 4 files called IMG_0144, yet if I look in the GUI (or metadata dump) I only have 2.
    $ grep IMG_0144 ApertureMetadataVersionNamesSorted.txt
    IMG_0144
    IMG_0144
    So, there is two files already!
    The path preceding the image in the FS dump, is the date of import. So I can see that two were imported at the same time, and two separately. The two that show up in the GUI have import sessions of 2014-06-28 @ 09:52:20 PM and 2014-04-11 @ 10:26:34 PM. That means that the first and last are the two files that show in the GUI, the middle two do not.... Why are they not in the GUI (yet are in the DB) and why do they have the exact same import date/time? I have no answer to that yet!
    I used open <filename> from the terminal prompt to view each file, and 3 out of my 4 are identical, and the fourth different.
    So, lastly, with a little command line fu, we can make a useful script to tell us what we want to know:
    #! /bin/bash
    grep $1 ApertureFSMasters.txt | sed 's|\.|Masters|' | awk '{print "<full path to Aperture Library folder>"$0}' | \
    while read line; do
      openssl sha1 "$line"
    done
    replace the <full path to Aperture Library folder> with the full path to you Aperture Library Folder, perhaps /volumes/some_disk_name/some_username/Pictures/.... etc. Then chmod 755 the script, and execute ./<scriptname> <version name> so something like
    $ ./calculateSHA.sh IMG_0144
    What we're doing here is taking in the version name we want to find (for example IMG_0144), and we are looking for it in the FS dump list. Remember that file contains image files relative to the Aperture Library Master path, which look something like "./YYYY/MM/DD/YYYYMMDD-HHMMSS/<FILENAME>" - we use sed to replace the "./" part with "Masters". Then we pipe it to awk, and insert the full path to aperture before the file name, the end result is a line which contains the absolute path to an image. There are several other ways to solve this, such as generating the FS dump from the root dir. You could also combine the awk into the sed (or the sed into the awk).. but this works. Each line is then passed, one at a time, to the openssl program to calculate the sha-1 checksum for that image. If a SHA-1 matches, then those files are identical (yes, there is a small chance of a collision in SHA-1, but it's unlikely!).
    So, at the end of all this, you can see exactly whats going on. And in my case, Aperture is storing duplicates on disk, and not showing them in the GUI. To be honest, I don't actually know how to clean this up now! So if anyone has any ideas. Please let me know I can't just delete the files on disk, as they are referenced in the DB. I guess it doesn't make too much difference, but my personality requires me to clean this up (at the very least to provide closure on this thread).
    The final point to make here is that, since Lightroom also has 11126 images (11130 less 4 non-compatible files). Then it has taken all the duplicates in the import.
    Well, that was a fun journey, and I learned a lot about Aperture in the process. And yes, I know this is a Lightroom forum and maybe this info would be better on the Aperture forum, I will probably update it there too. But there is some tie back to the Lightroom importer to let people know whats happening internally. (I guess I should update my earlier post, where I assumed the Lightroom Aperture import plugin was using the FS only, it *could* be using the DB as well (and probably is, so it can get more metadata))
    UPDATE: I jumped the gun a bit here, and based my conclusion on limited data. I have finished calculating the SHA-1 for all my missing versions. As well as comparing the counts in the GUI, to the counts in the FS. For the most part, where the GUI count is lower than the FS count, there is a clear duplicate (two files with the same SHA-1). However I have a few cases, where the FS count is higher, and all the images on disk have different SHA-1's! Picking one at random from my list; I have 3 images in the GUI called IMG_0843. On disk I have 4 files all with different SHA-1's. Viewing the actual images, 2 look the same, and the other 2 are different. So that matches 3 "unique" images.
    Using Preview to inspect the exif data for the images which look the same:
    image 1:
    Pixel X Dimension: 1 536
    Pixel Y Dimension: 2 048
    image 2:
    Pixel X Dimension: 3 264
    Pixel Y Dimension: 2 448
    (image 2 also has an extra Regions dictionary in the exit)
    So! These two images are not identical (we knew that from the SHA-1), but they are similar (content is the same - resolution is the same) yet Aperture is treating these as duplicates it seems.. that's not good! does this mean that if I resize an image for the web, and keep both, that Aperture won't show me both? (at least it keeps both on disk though, I guess...)
    The resolution of image 1, is suspiciously like the resolutions that were uploaded to (the original version of) iCloud Photos on the iPhone (one of the reasons I never used it). And indeed, the photo I chose at random here, is one that I have in an iCloud stored album (I have created a screensaver synced to iCloud, to use on my various Mac's and AppleTVs). Examining the data for the cloud version of the image, shows the resolution to be 1536x2048. The screensaver contains 22 images - I theorised earlier that these might be the missing images, perhaps I was right after all? Yet another avenue to explore.
    Ok. I dumped the screensaver metadata, converted it to UTF-8, grabbed the version names, and sorted them (just like before). Then compared them to the output of the diff command. Yep! the 22 screensaver images match to 22 / 25 missing images. The other 3, appear to be exact duplicates (same SHA-1) of images already in the library. That almost solves it! So then, can I conclude that Lightroom has imported my iCloud Screensaver as normal photos of lower res? In which case, it would likely do it for any shared photo source in Aperture, and perhaps it would be wise to turn that feature off before importing to Lightroom?

  • Missing photos after migration from iPhoto to Photos

    Last week I upgraded my desktop MacPro from OS 10.9.latest to OS 10.10.3. When I first opened Photos, it did the migration from iPhotos without apparent problem. But I have noticed that many (hundreds at least) of the photos from my pre-migration iPhoto library are now not in Photos. I mounted my pre-upgrade backup drive on a laptop running OS 10.9.latest, and can find specific missing photos OK on the backup. But if I search the main drive on my desktop Mac, for example for "P1440608", I get no results. I have tried rebuilding the Photos library with no change - the missing photos are still missing.
    One option is to erase my MacPro main drive and restore from the backup drive to OS 10.9.latest. This should put me back to where I was. Is there a viable alternative? Please note that my iPhoto version was 8.1.2. It will not open in OS 10.10.3, and the App Store will not let me upgrade to the most recent version. I do have Time Machine plus external bootable (SuperDuper) backup of the desktop MacPro, plus that laptop running OS 10.9.latest as resources available.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Missing photos after upgrade from iPhoto 08 to 11

    I just updated iPhoto from '08 (v7.1.5) to '11 (v9.5) and I opened a copy of my old '08 library.  Unfortunately iPhoto '11 does not show any events or photos from this library.  If I view the contents of the library in Finder I see that it still contains a 40 GB 'Originals' folder, but the 'Masters' folder is empty.  Is there a more involved upgrade procedure - that is, instead of simply choosing the old '08 library upon start up?
    I saw this earlier question https://discussions.apple.com/message/23844703#23844703. Though the problem sounds similar the solutions was to give up on importing and adding the photos manually.  There must be a way to preserve my albums, no?
    Thanks.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Merge JPEG and RAW after import from iPhoto

    Hi,
    camera is set to shoot JPEG + RAW, iPhoto manages after import from camera as two separate files.
    I want to transition from iPhoto to Aperture.
    After importing from iPhoto into Aperture, is there any chance to merge the files in a way similar to how Aperture merges jpeg + raw when importing directly from camera?
    Thx
    Axel

    When I click on Faces, it's empty, the import from iPhoto forget to import faces?
    Hello Kris,
    How did you imort from iPhoto? If you import using the Aperture Apllication menu
         File -> Import -> iPh.oto Library
    then all your Faces should be transferred from iPhoto.
    Which of the two buttons in Aperture do you use to show your "Faces"? There is the "Faces" button in the Library panel and the "Faces" Button in the Toolbar. Both behave differently. The "Faces" button in the Library panel  will reveal all faces, whereas the "Faces" Button in the Toolbar will only show the faces detected in the in the currently selected item (folder, project). So it may appear that faces are missing, even if they are included in the Aperture Library.
    Regards
    Léonie

  • Wrong photo will import from iPhoto window

    During the normal course of editing, all of the photos that were in the movie were overprinted with a random movie clip still. The thumbnails in the project window still show the intended photo, but only the new clip still will show during playback. By right-clicking the photo and doing "Show in Finder", the correct .jpg file is referenced. When I try to drag the correct photo back in from the photo media window, a photo will be brought in, but it will be one that appears a few spots away in the list from the intended one. The thumbnail remains the correct photo. I believe something has become corrupted in my iMovie project that will not show the correct photo, even though the program is internally pointing to the correct photo. Very frustrating, as I have lost many days of careful editing. Made a copy of the project and have tried many things, to no avail.
    Anyone have an idea? Is there a parameter file or something that I can delete that will reset things? Thanks very much.

    The distortion/blurriness may arise due to the size of the photo being imported from iPhoto.
    iMovie HD 6 appears to have problems handling very large photos - these should be resized (not cropped) in iPhoto before being imported to iMovie HD. The process is described in this post by Karl Petersen on 14/04/2007:
    http://discussions.apple.com/message.jspa?messageID=4389924#4389924
    Karl describes the process very thoroughly (as always) in Point 3 of his post.
    Doing as Karl suggests may not, of course, help in your particular case but it's certainly worth a try.
    John

  • After importing from iPhoto, how would you eliminate the photos?

    I have installed Aperture adn like it quite a bit. I imported from iPhoto (which copies over the pictures...not move.)
    I have backed up the photos in iPhoto to an external hard drive in case Aperture blows up on me and I need to go back to iPhoto. But now that I have done that, what is the suggested way to get all those pictures out of iPhoto? so I can get back that disk space.

    Maybe I'm missing something, but what's wrong with simply deleting and then emptying the trash?

  • Why is my library 200+GB bigger after importing from Iphoto to Aperture

    I recently got a new imac and decided to start using Aperture to manage my huge library. Previously I was using Iphoto 9 in Mountain Lion. My original Iphoto library is 687GB. I exported it to my external drive and works great from there.
    Now I have the new Imac with Mavericks and just got Aperture 3.5.1. I have opened the iphoto library original in this new computer and it upgraded to the new version of Iphoto that I have here (9.5.1). Everything looks good.
    From my understanding this is a managed library since I only exported the library file and everything is there.
    After making sure the iphoto library file was working well I decided to go ahead and import to aperture. I decided to do this since I thought it would be a much better way to go with such a big library. The original iphoto library has around 9,200 photos and videos.
    I created a new aperture library in another big external drive (Drobo) and imported the original to Aperture doing File - Import- Library and choosing the original located in an external drive.
    After 24hrs of working finally I can see the new library appear in Aperture. One problem I have is that it is going extremely slow compared to the same library in Iphoto, but that is another topic.
    In the new aperture library I see the exact same amount of pictures and projects appear however the library appears to be 930GB. According to what I have read in other discussions I have tried to find in Aperture using the keyword search to see how many of these photos/videos have a keyword of iphoto original (vs new masters that could have been created from edited versions of the originals. If I do "iphoto original" in my search nothing appears (although it keeps "processing" the search after a couple of hours (yes, that is how slow it is working now). Is that already something wrong? Is this keyword added automatically when you import from Iphoto?
    I would really like to fix this since I still have two other libraries (37GB) that I would like to merge with this one. Is that crazy? Could I expect such a big library to work well? I am new to Aperture but so far I am not impressed at all.
    The only file I have to work on is the one I have in the external drive since I already got rid of the old computer....
    Any ideas on how to solve this problem? Would appreaciate any help.
    Thank you!

    Your library is big, but nothing out of the ordinary and well within Apertures capabilities.
    It's hard to say definitively why the library has grown so, but ultimately it won't matter, once you have your library working well and you configure Aperture how you want it to operate, and you tidy up any unwated artefacts from the import, your library size will become exactly the size it needs to be.
    There are a number of possible explanations for why things are going slow.
    First, check how you have formatted your Drobo storage. The file system requirements for Aperture are described here:
    http://support.apple.com/kb/ts3252
    Next, having chosen to import your iPhoto Library, you have essentially created a new environmet with its own preferences controlling things like previes, faces, places and so on. These could explain both the size and any (temporary) performance issues.
    With Aperture running, press SHIFT+CMD+0 (zero). This will show you the activity window so you can see if Aperture is performing any follow-up tasks relating to the import such as building previews, building thumbnails, detecting faces and son on.
    If so, allow it time to finish. Once it's finished all the post import activity, it will settle down and begin to operate in a more optimised fashion.
    Depending on the history of you old iPhoto library, there could be some clean-up work do in terms of edited copies of originals. Old versions of iTunes used distructive edits, meaning you got an edited copy of your original. Aperture doesn't work this way and you will need to decide if you want to keep those (for example stack them with tier orginals) or if you want to redo any of them using Apertures non-destrutive tools. Later versions of iPhoto used a similar non-destructive approach which will carry over, so it's just any very old edits you may have to make descisions for.
    IAndy

  • Faces gone after import from iPhoto

    When I click on Faces, it's empty, the import from iPhoto forget to import faces?
    Also, I can start adding names to faces, but then after a while, I'm not asked to assign any more names and I only have 12 faces but there should be many many more?
    But the most important question remains : how to get my Faces from iPhoto?
    Thanks,
    Kris

    When I click on Faces, it's empty, the import from iPhoto forget to import faces?
    Hello Kris,
    How did you imort from iPhoto? If you import using the Aperture Apllication menu
         File -> Import -> iPh.oto Library
    then all your Faces should be transferred from iPhoto.
    Which of the two buttons in Aperture do you use to show your "Faces"? There is the "Faces" button in the Library panel and the "Faces" Button in the Toolbar. Both behave differently. The "Faces" button in the Library panel  will reveal all faces, whereas the "Faces" Button in the Toolbar will only show the faces detected in the in the currently selected item (folder, project). So it may appear that faces are missing, even if they are included in the Aperture Library.
    Regards
    Léonie

  • I don't see my images on Photo after migration from iPhoto

    i recently purchased an iMac, which uses Photo, and don't see my photos after migration from an older mac which has iPhoto.  I see the event folders and the photo count but there's no actual image!  Help.

    Is it here?
    http://www.imore.com/yes-camera-roll-gone-ios-8-heres-where-it-went-and-why

  • All the photo i import from iphoto (JPEG) to imovie is blank.

    Hello..!
    I need some help..!
    I using powermac G4 cube, i just upgrade to tiger n ilife 06, when i want to import my photo from iphoto to imovie all the image is blank. But i unclick the ken burn effect, i can import the photo i have image...!
    Got someone know how to solve the problem..!
    Thank..!

    I appreciate all of your responses to my problem.  There is no doubt that I have a lot to learn about Aperture.  I guess the first thing I need to do is learn the correct process to import my existing photo events from iPhoto. When I conducted the import operation, I imported by selecting my individual events from iPhoto browser.  Is my problem the result of incorrectly importing from iPhoto?  Where can I find the appropriate import steps into Aperture from iPhoto?
    Several of you recommended that I may need to execute a repair against my iPhoto library.  How do I run the repairs on the iPhoto library? 
    I am confused as to why every single photo is duplicated with one version being the original and the other as an edited version.  I am confused since I have not attempted to edit all of my photos within iPhoto.  Granted I have edited a few photos, but no way every single one.  More than likely I am importing the photos incorrectly from iPhoto.  I may try to import from my photo cards rather than attempting to copy from iPhoto.  Perhaps iPhoto automatically sends two copies of the same photo to Aperture as a default???

  • Some photos dont work after importing from iPhoto 4?

    Hello,
    I recently upgraded from iPhoto 4 to iPhoto 6. I updated my library by copying the iLife 04 photo library to my new iMac. When I opened up iPhoto 6, it updated the library, and everything worked fine, or it seemed. All the pictures and thumbnails were there, but on around 1/3 of the pictures, I only have a thumbnail. If I click on the thumbnail, the picture never loads. On ones with a picture it loads very fast.
    Any ideas?
    I have the library backed up on DVD, so im not worried about losing the data, just want it to work.
    Thanks,
    Adam

    Adam:
    It may be an ownership/access problem. Manually set the ownership and access on the iPhoto Library folder as follows:
    Setting Permissions for iPhoto Library Folder
    1 - Select the iPhoto Library folder and type Command-I.
    2 - When the Info window comes up go to the Ownership and Permissions section and make sure You have Read & Write permission and that the Owner and Group have Read & Write also. Others - Read Only.
    3 - Then click on the "Apply to enclosed items..." button.
    See if that may help. If not try selecting one of the files in the Original folder and type Command-I to bring up the Info window. In that window set Preview as the default application and click on the Apply to all button. Good luck.

  • Save me! Missing pics after import from CD? what the..?

    Hello Mac superstars,
    I'm on a macbook pro from late 2011, on lion so I think that I would then have iphoto 11?
    Here's my story:
    -  Imported some photos from disc & first event created. But after ejecting disc, couldn't view pictures in iphoto (thumbnail fine, shows up in event but can't open to view full picture).
    -  Re-inserted disc, uploaded same pics to desktop then imported same pics from desktop into iphoto, to a new event.
    -  Think I opened the wrong event (direct from CD) and created an album & began editing. But disc was still in there so must have been working from disc?
    -  All was working fine for a while there...couldn't view photos at all.
    -  Then, I thought I deleted the original event with the pics uploaded from CD but may have deleted the event with the import from desktop??
    -  Can't restore from iphoto trash, original files nowhere to be found on my mac.
    -  Can't find photos from when they were saved to desktop using remorecovery software
    All other photos fine, just this one group of photos missing .. Please provide troubleshooting tips!!
    Many thanks

    Thre's nothing odd here, it's exactly by design and as you have chosen.
    You imported from a CD in a Referenced Library. If you run a Referenced Library then you decide where the files are stored. You decided they are stored on the CD. Now there is no CD there are no files.
    When you import any files in any iPhoto set up, the app creates a thumbnail for fast viewing in the iPhoto Window. That thumbnail is stored in the Library package. That's why you can see it.
    So, these files were never on your HD - or if they were they were deleted - so unless you're willing to run expensive File Recovery software there is no way to get them back.
    If you wish to try something like File Salvage you may be lucky, if the files were on the HD at some point and if they haven't been overwritten since.

  • Missing photos when importing from a Fuji s602zoom digital camera

    I noticed that when I import the photos from my digital camera (as above), sometimes there are some missing. No error messages displayed and the import seems to finish OK.
    This makes life difficult as I cannot now trust iPhoto and have to check every import.
    Any suggestions would be helpful.

    Neville:
    On those occasions where the camera drops some photos are there any movies on the card?
    A workaround is to use Image Capture to upload either to a folder on the Desktop first or directly into iPhoto. It's not recommended that you have iPhoto erase the card after import as there have been too many cases, yours for one, that have incomplete uploads and complete erasures.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Message was edited by: Old Toad

  • Can not edit photos - cannot see photos after import from camera

    Hello all - Im having a very frustrating time getting Iphoto to work.
    First is that I can not edit photos
    double clicking photo - does not launch edit mode
    select photo and click edit pencil - does not launch edit mode
    Sometimes, however, edit mode is launched and thumbnails of photos can be seen along the top but not in the edit window.
    Clicking any effects or adjustment buttons results in a program crash.
    Originally installed with two users on the system - both admin.
    Problem occurs with both admin users
    Uninstalled all the I apps and deleted one admin user. Now only one user on the system (admin)
    Reinstalled I Life 8 and updated with the 8.2 updater
    Import 6 photos form camera in to new library. Still no joy.
    Is there some permissions problem going on?
    I have tried to rebuild the library several times.
    Also - after importing photos from camera. No photos appears within the library window until I click on the screen. THEN a photo appears.
    Sincerely
    Daniel
    Software hardware information
    Iphoto 7.1.3 (364)
    I life update 8.2
    PowerPC G4 dual 800 - 1.25 GB SDRAM
    NVIDIA GeForce2 MX

    Hello
    Here is the crash log.
    Many Thanks
    Daniel
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-10 19:29:46.227 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [63]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 612
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1c7bc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1b67c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.AppKit 0x937bebe8 -[NSViewHierarchyLock lockForReadingWithExceptionHandler:] + 260
    3 com.apple.AppKit 0x9382d66c -[NSUIHeartBeat _heartBeatThread:] + 792
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x9934fa84 ReadSchedulerThreadEntryPoint + 5316
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c03e9c AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.ColorSync 0x915a1060 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x915a02fc CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x00000000021b1238 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x000000000d1a69b0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000004 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000d1b0b90 r31: 0x00000000021a4550
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x584b000 - 0x584dfff com.apple.framework.iPhoto.CubeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/CubeTransition.IAPlugin/Contents/MacO S/CubeTransition
    0x5853000 - 0x5854fff com.apple.framework.iPhoto.DissolveTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DissolveTransition.IAPlugin/Contents/ MacOS/DissolveTransition
    0x58c0000 - 0x58ddfff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x5b19000 - 0x5be9fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x675e000 - 0x6768fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x6771000 - 0x6779fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x6781000 - 0x6784fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x678a000 - 0x6793fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x679c000 - 0x67a5fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x67ae000 - 0x67b3fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x67ba000 - 0x67c4fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x69f8000 - 0x6a6ffff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6cc0000 - 0x6d61fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6ebd000 - 0x6ebffff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6f16000 - 0x6fbffff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x7190000 - 0x7192fff com.apple.framework.iPhoto.BlackAndWhiteEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/BlackAndWhiteEffect.IAPlugin/Contents /MacOS/BlackAndWhiteEffect
    0x78a2000 - 0x78a5fff com.apple.framework.iPhoto.DropletTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DropletTransition.IAPlugin/Contents/M acOS/DropletTransition
    0x78e4000 - 0x78e5fff com.apple.framework.iPhoto.FadeThroughBlackTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FadeThroughBlackTransition.IAPlugin/C ontents/MacOS/FadeThroughBlackTransition
    0x7906000 - 0x7907fff com.apple.framework.iPhoto.FlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FlipTransition.IAPlugin/Contents/MacO S/FlipTransition
    0x7fec000 - 0x7feefff com.apple.framework.iPhoto.TwirlTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/TwirlTransition.IAPlugin/Contents/Mac OS/TwirlTransition
    0x8123000 - 0x813cfff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x8142000 - 0x815dfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x81f8000 - 0x81fafff com.apple.framework.iPhoto.MosaicFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransition.IAPlugin/Content s/MacOS/MosaicFlipTransition
    0x8305000 - 0x8377fff com.apple.GeForce2MXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForce2MXGLDriver.bundle/Contents/MacOS/GeForce2MXG LDriver
    0x83ac000 - 0x83adfff com.apple.framework.iPhoto.WipeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/WipeTransition.IAPlugin/Contents/MacO S/WipeTransition
    0x83f4000 - 0x83f6fff com.apple.framework.iPhoto.MosaicFlipTransitionSmall 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransitionSmall.IAPlugin/Co ntents/MacOS/MosaicFlipTransitionSmall
    0x853a000 - 0x853dfff com.apple.framework.iPhoto.PageFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PageFlipTransition.IAPlugin/Contents/ MacOS/PageFlipTransition
    0x8553000 - 0x8554fff com.apple.framework.iPhoto.PushTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PushTransition.IAPlugin/Contents/MacO S/PushTransition
    0x8569000 - 0x856afff com.apple.framework.iPhoto.RevealTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/RevealTransition.IAPlugin/Contents/Ma cOS/RevealTransition
    0x8586000 - 0x8588fff com.apple.framework.iPhoto.SepiaEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/SepiaEffect.IAPlugin/Contents/MacOS/S epiaEffect
    0x858d000 - 0x85ccfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8905000 - 0x897efff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc989000 - 0xca98fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xcb05000 - 0xccb9fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xd405000 - 0xd63efff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e9c9000 - 0x8ea99fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8ed6f000 - 0x8ed73fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f4f0000 - 0x8f4f5fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97da9000 - 0x97e6afff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97e95000 - 0x97e96fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97e98000 - 0x97ea5fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x99338000 - 0x9a148fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-11 09:42:54.809 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [62]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 215
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfb284 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9382d498 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x000000000216a1c8 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x00000000066865f0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000008 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000a227370 r31: 0x000000000a225b40
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x5ad2000 - 0x5ba2fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x68b6000 - 0x68c0fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x68c9000 - 0x6940fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6995000 - 0x699dfff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x69a5000 - 0x69a8fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x69ae000 - 0x69b7fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x69c0000 - 0x69c9fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x69d2000 - 0x69d7fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x69de000 - 0x69e8fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x6b3c000 - 0x6bddfff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6d39000 - 0x6d3bfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6da2000 - 0x6e4bfff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message

Maybe you are looking for

  • Cannot backup iPhone 4S to iTunes due to an error

    I continue to get an error message without a specific error code when trying to sync and update my iPhone 4S (5.1) to iTunes (10.6.1). This started after an Apple Techincian had me restore the iPhone because I was having WiFi issues, which continued

  • Can I use Lion server to set-up a WPA2 wireless network in place of an AEBS?

    I'm contemplating replacing my Airport Extreme Base Station with my Core i5 Mac mini as the wireless network server, because this will get rid of a "box" (that I can sell!) and reduce power consumption, since my iMac is on all the time as my iTunes m

  • Wired and wireless computers on the same network?

    Here's the scenario: I've got Verizon FIOS which comes with a modem with four Ethernet ports. I have an Airport Extreme plugged into the modem. There are six macs in the house (three desktops and three laptops) and they can all connect wirelessly alt

  • External Table Authentication in OBIEE 11g

    Hi , I have a security table, which contains userid,displayname,group . I have imported Security table in Physical Layer. I'm creating session variables based on condition. When am trying to logging into analytic s getting an error, invalid username

  • Errors compiling the rmi-iiop example.

    Hello, I have WebLogic Server 5.1, jdk1.3, Inprise's Visibroker for Java 4.0 and Visibroker for C++ 4.0 all on Windows NT. I am following the steps on the index.html page in the examples/rmi_iiop/hello directory in my weblogic directory. The errors o