PostMessage not working in IE

I am trying to post messages from my pdf document to the web browser.  I have the following code snippet below.  I am receiving the alert from the pdf file in all browsers.  I am not getting the postMessage back in IE but I am in Chrome.
function onMessageFunc(messageArray)
        app.alert('incoming message: ' + messageArray[0]);
        try
            this.hostContainer.postMessage(["echo: " + messageArray[0]]);
        catch (e) {
            app.alert(e.message);

Acrobat JavaScript Overview:
PDF documents have great versatility since they can be displayed both within the Acrobat software as well as a web browser. Therefore, it is important to be aware of the differences between JavaScript used in a PDF file and JavaScript used in a web page:
JavaScript in a PDF file does not have access to objects within an HTML page. Similarly, JavaScript in a web page cannot access objects within a PDF file.
In HTML, JavaScript is able to manipulate such objects as Window. JavaScript for Acrobat cannot access this particular object but it can manipulate PDF-specific objects.

Similar Messages

  • Pdf object postMessage not working in FF 22

    Hi,
    After updating my FF to 22, i seen pdf object postMessage function does not working. We used adbove livecycle intraactive pdf forms to collect the data from the user.
    When user click the save button from the pdf, postMessage function called, but after update this not getting execute.
    For your reference i include the URL which also had the same problem. I also tried without addons.
    Refer: http://www.windjack.com/WindJack/Browser2PDF/brwsr2acroJS.htm
    HTML to PDF => works
    PDF to HTML => not working (in earlier versions it worked)
    Thanks n Regards
    Mathan

    This is likely the fault of Livecycle Interactive. Most likely, Adobe has not yet provided an update for supporting Firefox 22. I would recommend informing adobe support about it.

  • This.print(pp) with interactive type silent or automatic does not work  after upgrade acrobat reader 9 to acrobat reader 11

    After an upgrade of acrobat reader 9 to acrobat reader 11 the automatic printing of a pdf. The pdf is opened, but the print does not happen. With acrobat reader 9 it works. But with acrobat reader 11 the printing does not happen.
    I discovered when you specify pp.constants.interactionLevel.full it works on acrobat reader 11. But when you specify pp.constants.interactionLevel.silent or pp.constants.interactionLevel.automatic it does not work on acrobat reader 11. But with the full option we have a dialog  print box
    we do not want.
    In our jsp we load a pdf document and create a message handler to detect the print events of a pdf document that is in an <object> tag.
    In the pdf document we add
    package be.post.lpo.util;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.apache.commons.lang.StringUtils;
    public class AcrobatJavascriptUtil {  
        public String getPostMessageToHostContainer(String messageName, String messageBody){
            return "var aMessage=['"+messageName+ "', '"+ messageBody+"'];this.hostContainer.postMessage(aMessage);";
        public String getAutoPrintJavaScript(String interactiveType, String printerName,String duplexType) {    
            String interactiveTypeCommand = "";
            if (StringUtils.isNotBlank(interactiveType)){
                interactiveTypeCommand = "pp.interactive = " + interactiveType + ";";
            String duplexTypeCommand = "";
            if (StringUtils.isNotBlank(duplexType)){
                duplexTypeCommand = "pp.DuplexType = " + duplexType + ";";
            return "" + // //
                    "var pp = this.getPrintParams();" + // //
                    // Nointeraction at all dialog, progress, cancel) //
                    interactiveTypeCommand + //
                    // Always print to a printer (not to a file) //
                    "pp.printerName = \"" + StringEscapeUtils.escapeJavaScript(printerName) + "\";" + //
                    // Never print to a file. //
                    "pp.fileName = \"\";" + //
                    // Print images using 600 DPI. This option MUST be set or some barcodes cannot //
                    // be scanned anymore. //
                    "pp.bitmapDPI = 600;" + //
                    // Do not perform any page scaling //
                    "pp.pageHandling = pp.constants.handling.none;" + //
                    // Always print all pages //
                    "pp.pageSubset = pp.constants.subsets.all;" + //
                    // Do not autocenter //
                    "pp.flags |= pp.constants.flagValues.suppressCenter;" + //
                    // Do not autorotate //
                    "pp.flags |= pp.constants.flagValues.suppressRotate;" + //
                    // Disable setPageSize i.e. do not choose paper tray by PDF page size //
                    "pp.flags &= ~pp.constants.flagValues.setPageSize;" + //
                    // Emit the document contents. Document comments are not printed //
                    "pp.printContent = pp.constants.printContents.doc;" + //
                    // printing duplex mode to simplex, duplex long edge, or duplex short edge feed //
                    duplexTypeCommand +
                    // Print pages in the normal order. //
                    "pp.reversePages = false;" + //
                    // Do the actual printing //
                    "this.print(pp);";
    snippets for java code that adds
    package be.post.lpo.util;
    import org.apache.commons.lang.StringUtils;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfAction;
    import com.lowagie.text.pdf.PdfDestination;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    public class PdfMergerUtil{
        private static final PdfName DID_PRINT = PdfName.DP;
        private static final PdfName WILL_PRINT = PdfName.WP;
        private List<PdfActionJavaScriptHolder> actionJavaScripts = new ArrayList<PdfActionJavaScriptHolder>();
        private class PdfActionJavaScriptHolder{
            private final PdfName actionType;
            private final String javaScript;
            public PdfActionJavaScriptHolder(PdfName actionType, String javaScript) {
                super();
                this.actionType = actionType;
                this.javaScript = javaScript;
            public PdfName getActionType(){
                return this.actionType;
            public String getJavaScript(){
                return this.javaScript;
        public void writePdfs(OutputStream outputStream, List<InputStream> documents, String documentLevelJavaScript) throws Exception {
            Document document = new Document();
            try {          
              // Create a writer for the outputstream
              PdfWriter writer = PdfWriter.getInstance(document, outputStream);
              document.open();      
              // Create Readers for the pdfs.
              Iterator<PdfReader> iteratorPDFReader = getPdfReaders(documents.iterator());
              writePdfReaders(document, writer, iteratorPDFReader);
              if (StringUtils.isNotBlank(documentLevelJavaScript)){
                  writer.addJavaScript(documentLevelJavaScript);
              addAdditionalActions(writer);
              outputStream.flush();      
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            } finally {
                if (document.isOpen()){
                    document.close();
                try {
                    if (outputStream != null){
                        outputStream.close();
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                    throw ioe;
        public void addAdditionalDidPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(DID_PRINT, javaScript));   
        public void addAdditionalWillPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(WILL_PRINT, javaScript));   
        private void writePdfReaders(Document document, PdfWriter writer,
                Iterator<PdfReader> iteratorPDFReader) {
            int pageOfCurrentReaderPDF = 0;      
              // Loop through the PDF files and add to the output.
              while (iteratorPDFReader.hasNext()) {
                PdfReader pdfReader = iteratorPDFReader.next();
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                  document.newPage();
                  pageOfCurrentReaderPDF++;          
                  PdfImportedPage page = writer.getImportedPage(pdfReader, pageOfCurrentReaderPDF);
                  writer.getDirectContent().addTemplate(page, 0, 0);          
                pageOfCurrentReaderPDF = 0;
        private void addAdditionalActions(PdfWriter writer) throws DocumentException{
            if (actionJavaScripts.size() != 0 ){
                PdfAction action = PdfAction.gotoLocalPage(1, new PdfDestination(PdfDestination.FIT), writer);
                writer.setOpenAction(action);
                for (PdfActionJavaScriptHolder pdfAction : actionJavaScripts ){
                    if (StringUtils.isNotBlank(pdfAction.getJavaScript())){
                        action = PdfAction.javaScript(pdfAction.getJavaScript(), writer);
                        writer.setAdditionalAction(pdfAction.getActionType(), action);
        private Iterator<PdfReader> getPdfReaders(Iterator<InputStream> iteratorPDFs) throws IOException {
            List<PdfReader> readers = new ArrayList<PdfReader>();
              while (iteratorPDFs.hasNext()) {
                InputStream pdf = iteratorPDFs.next();
                PdfReader pdfReader = new PdfReader(pdf);
                readers.add(pdfReader);        
            return readers.iterator();
    JSP code
    <script type="text/javascript" src="<bean:message key="scripts.js.internal.jquery" bundle="app"/>"></script>
        <script language="javascript">
        function goToDidPrintUrl(){
            var url = "<%=didPrintUrl%>";
            window.location.assign(url);
        function createMessageHandler() {
            var PDFObject = document.getElementById("myPdf");
            PDFObject.messageHandler = {
                onMessage: function(msg) {
                     if (msg[0] == "WILL_PRINT"){      
                        $("#printingTransitFeedBackMessage").text('<%=willPrintMessage%>');                   
                     if(msg[0] == "DID_PRINT"){
                        $("#printingTransitFeedBackMessage").text('<%=didPrintMessage%>');               
                        setTimeout('goToDidPrintUrl()',4000);
                onError: function(error, msg) {
                    alert(error.message);
        </script>
    </head>
    <body onLoad="createMessageHandler();">
    <div id="printingTransitFeedbackArea">
      <div class="info" id="printingTransitFeedBackMessage"><%=documentOpenMessage%></div>
    </div>
    <object id="myPdf" type="application/pdf" width="100%" height="100%"  data="<%=toBePrintedUrl%>">
    </object>
    </body>

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • Time Machine stopped backing up; Spotlight not working

    Recently, Spotlight search stopped returning results for applications, and no amount of reseting Spotlight or rebuilding the index has helped. I had given up on that, then today I noticed that the last backup Time Machine completed was on 10 January 2013. Both scheduled backups and manual backups get terminated early, after backing up 30MB or so.
    system.log in Console displays these messages for Spotlight and Time Machine respectively:
    Feb  2 22:52:24 XXX-2.local ReportCrash[73158]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/Volumes/ZZZ/.Spotlight-V100/Store-V2/15620934-CC1A-4A6F-80C9-4E40A7DF6803)(Wa rning) IndexState in void updateMetaInfoForState(CIMetaInfo *, unsigned int, unsigned int):clean live count mis-match expected:15 got 7
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/Volumes/ZZZ/.Spotlight-V100/Store-V2/15620934-CC1A-4A6F-80C9-4E40A7DF6803)(Wa rning) IndexState in void updateMetaInfoForState(CIMetaInfo *, unsigned int, unsigned int):shadow live count mis-match expected:15 got 7
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexCI in _Bool _copyFile(int, char *, int, char *, int *, off_t):error (2) opening reverseDirectoryStore.shadow
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexCI in _Bool _storageMapInit(storage_t *):mmap(0x7fc340c551a0, offset: 0, size: 0) error:22, fSize:0
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexState in int _SIOpenIndexFilesWithState(SIRef, uint32_t, _Bool, _Bool, _Bool, _Bool *, DocID *, CIDocCounts *):openReverseStore err:-1
    Feb  2 22:52:24 XXX-2.local mds[73159]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Normal) IndexGeneral in int SIOpenIndex(SIRef *, int, SIVolumeParams *, SIVolumeParams *, uint32_t, CFIndex *, CFIndex *, CFIndex *, SIFileOps, SIIndexCallbacks *, SIPersistentIDStoreRef, int *):Recovery Starting, total:0 pre scan count:0 reimport count:0
    Feb  2 22:52:37 XXX-2.local mds[73165]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexCI in _Bool _copyFile(int, char *, int, char *, int *, off_t):error (2) opening reverseDirectoryStore.shadow
    Feb  2 22:52:37 XXX-2.local mds[73165]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexCI in _Bool _storageMapInit(storage_t *):mmap(0x7f7fd48768e0, offset: 0, size: 0) error:22, fSize:0
    Feb  2 22:52:37 XXX-2.local mds[73165]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Error) IndexState in int _SIOpenIndexFilesWithState(SIRef, uint32_t, _Bool, _Bool, _Bool, _Bool *, DocID *, CIDocCounts *):openReverseStore err:-1
    Feb  2 22:52:37 XXX-2.local mds[73165]: (/.Spotlight-V100/Store-V2/BE799DF0-666A-4AFD-884A-E2A7CE38E7FB)(Normal) IndexGeneral in int SIOpenIndex(SIRef *, int, SIVolumeParams *, SIVolumeParams *, uint32_t, CFIndex *, CFIndex *, CFIndex *, SIFileOps, SIIndexCallbacks *, SIPersistentIDStoreRef, int *):Recovery Starting, total:0 pre scan count:0 reimport count:0
    Feb  2 22:53:01 XXX-2.local com.apple.backupd[73172]: Starting automatic backup
    Feb  2 22:53:02 XXX-2.local com.apple.backupd[73172]: Backing up to: /Volumes/YYY/Backups.backupdb
    Feb  2 22:53:08 XXX-2.local com.apple.backupd[73172]: Using file event preflight for Macintosh HD
    Feb  2 22:54:50 XXX-2.local com.apple.backupd[73172]: Will copy (11.59 GB) from Macintosh HD
    Feb  2 22:54:51 XXX-2.local com.apple.backupd[73172]: Found 15352 files (11.66 GB) needing backup
    Feb  2 22:54:53 XXX-2.local com.apple.backupd[73172]: 13.99 GB required (including padding), 92.24 GB available
    Feb  2 22:55:02 XXX-2.local com.apple.backupd-helper[73161]: XPC error for connection com.apple.backupd.xpc: Connection interrupted
    Feb  2 22:55:02 XXX-2.local com.apple.backupd-helper[73161]: Not starting scheduled Time Machine backup - failed to send message to backupd.
    Feb  2 22:55:02 XXX-2 com.apple.launchd[1] (com.apple.backupd[73172]): Job appears to have crashed: Segmentation fault: 11
    Feb  2 22:55:02 XXX-2.local ReportCrash[73217]: Saved crash report for backupd[73172] version 151.5 to /Library/Logs/DiagnosticReports/backupd_2013-02-02-225502_XXX-2.crash
    Feb  2 22:55:22 XXX-2 com.apple.launchd[1] (com.apple.backupd-auto[73161]): Exited with code: 1
    Feb  2 22:55:55 XXX-2.local com.apple.backupd[73254]: Starting automatic backup
    Feb  2 22:55:56 XXX-2.local com.apple.backupd[73254]: Backing up to: /Volumes/YYY/Backups.backupdb
    Feb  2 22:56:03 XXX-2.local com.apple.backupd[73254]: Using file event preflight for Macintosh HD
    Feb  2 22:57:48 XXX-2.local com.apple.backupd[73254]: Will copy (11.59 GB) from Macintosh HD
    Feb  2 22:57:49 XXX-2.local com.apple.backupd[73254]: Found 15354 files (11.66 GB) needing backup
    Feb  2 22:57:51 XXX-2.local com.apple.backupd[73254]: 13.99 GB required (including padding), 92.19 GB available
    Feb  2 22:58:03 XXX-2 com.apple.launchd[1] (com.apple.backupd[73254]): Job appears to have crashed: Segmentation fault: 11
    Feb  2 22:58:03 XXX-2.local ReportCrash[73284]: Saved crash report for backupd[73254] version 151.5 to /Library/Logs/DiagnosticReports/backupd_2013-02-02-225803_XXX-2.crash
    Feb  2 22:58:03 XXX-2.local ReportCrash[73284]: Removing excessive log: file://localhost/Library/Logs/DiagnosticReports/backupd_2013-01-30-020322_XXX-2 .crash
    I have verified both my startup disk (XXX) and the external hard disk (YYY) I use for Time Machine, and both "appear to be OK".
    Something is wrong with my system but I'm not sure what. Can someone help please? I'm using an iMac10,1 running 10.8.2.

    Hi Linc,
    Thanks for replying.
    I managed to backup with Time Machine in safe mode and I can backup manually after rebooting. Spotlight still did not work normally in safe mode, but it appears to be working fine now… I am not sure if my problems have been resolved though.
    Could you please take a look at the Console messages and, if possible, explain what they mean or what errors were encountered? I would like to know the cause of Spotlight and Time Machine's failure, and if it is possible to prevent.
    Spotlight in safe mode:
    Feb  3 09:29:26 localhost bootlog[0]: BOOT_TIME 1359854966 0
    Feb  3 09:30:22 localhost kernel[0]: Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Feb  3 09:30:22 localhost kernel[0]: vm_page_bootstrap: 758887 free pages and 1338265 wired pages
    Feb  3 09:30:22 localhost kernel[0]: kext submap [0xffffff7f80741000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000741000]
    Feb  3 09:30:22 localhost kernel[0]: zone leak detection enabled
    Feb  3 09:30:22 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Feb  3 09:30:22 localhost kernel[0]: standard background quantum is 2500 us
    Feb  3 09:30:22 localhost kernel[0]: mig_table_max_displ = 74
    Feb  3 09:30:22 localhost kernel[0]: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    Feb  3 09:30:22 localhost kernel[0]: corecrypto kext started!
    Feb  3 09:30:22 localhost kernel[0]: Running kernel space in FIPS MODE
    Feb  3 09:30:22 localhost kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Feb  3 09:30:22 localhost kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    Feb  3 09:30:22 localhost kernel[0]: corecrypto.kext FIPS POST passed!
    Feb  3 09:30:22 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Feb  3 09:30:22 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Feb  3 09:30:22 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Feb  3 09:30:22 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Feb  3 09:30:22 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Feb  3 09:30:22 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Feb  3 09:30:22 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Feb  3 09:30:22 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Feb  3 09:30:22 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Feb  3 09:30:22 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Feb  3 09:30:22 localhost kernel[0]: MAC Framework successfully initialized
    Feb  3 09:30:22 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Feb  3 09:30:22 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Feb  3 09:30:22 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5]
    Feb  3 09:30:22 localhost kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    Feb  3 09:30:22 localhost kernel[0]: [ PCI configuration begin ]
    Feb  3 09:30:22 localhost kernel[0]: console relocated to 0xf80010000
    Feb  3 09:30:22 localhost kernel[0]: PCI configuration changed (bridge=2 device=1 cardbus=0)
    Feb  3 09:30:22 localhost kernel[0]: [ PCI configuration end, bridges 6 devices 19 ]
    Feb  3 09:30:22 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    Feb  3 09:30:22 localhost kernel[0]: NVEthernet::start - Built Aug 25 2012 00:55:57
    Feb  3 09:30:22 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Feb  3 09:30:22 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Feb  3 09:30:22 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID d49a20fffee0e51c; max speed s800.
    Feb  3 09:30:22 localhost kernel[0]: rooting via boot-uuid from /chosen: F4CBF912-AD32-3F82-A619-9F60C290A4AB
    Feb  3 09:30:22 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Feb  3 09:30:22 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Feb  3 09:30:22 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Feb  3 09:30:22 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Feb  3 09:30:22 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Feb  3 09:30:22 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Feb  3 09:30:22 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/WDC WD1002FAEX-00Z3A0 Media/IOGUIDPartitionScheme/Macintosh HD@2
    Feb  3 09:30:22 localhost kernel[0]: BSD root: disk0s2, major 1, minor 3
    Feb  3 09:30:22 localhost kernel[0]: Kernel is LP64
    Feb  3 09:30:22 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Feb  3 09:30:22 localhost kernel[0]: ath_get_caps[4038] rx chainmask mismatch actual 3 sc_chainmak 0
    Feb  3 09:30:22 localhost kernel[0]: 3.575118: ath_get_caps[4013] tx chainmask mismatch actual 3 sc_chainmak 0
    Feb  3 09:30:22 localhost kernel[0]: 3.581074: Atheros: mac 128.2 phy 13.0 radio 12.0
    Feb  3 09:30:22 localhost kernel[0]: 3.581087: Use hw queue 0 for WME_AC_BE traffic
    Feb  3 09:30:22 localhost kernel[0]: 3.581095: Use hw queue 1 for WME_AC_BK traffic
    Feb  3 09:30:22 localhost kernel[0]: 3.581102: Use hw queue 2 for WME_AC_VI traffic
    Feb  3 09:30:22 localhost kernel[0]: 3.581110: Use hw queue 3 for WME_AC_VO traffic
    Feb  3 09:30:22 localhost kernel[0]: 3.581117: Use hw queue 8 for CAB traffic
    Feb  3 09:30:22 localhost kernel[0]: 3.581123: Use hw queue 9 for beacons
    Feb  3 09:30:22 localhost kernel[0]: 3.581229: wlan_vap_create : enter. devhandle=0xc917f658, opmode=IEEE80211_M_STA, flags=0x1
    Feb  3 09:30:22 localhost kernel[0]: 3.581287: wlan_vap_create : exit. devhandle=0xc917f658, opmode=IEEE80211_M_STA, flags=0x1.
    Feb  3 09:30:22 localhost kernel[0]: 3.581388: start[1012] sc->sc_inuse_cnt is at offset: 203c, sizeof(_sc->sc_ic) is 25f0
    Feb  3 09:29:27 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Feb  3 09:29:27 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Feb  3 09:30:20 localhost com.apple.launchd[1] (com.apple.automountd): Unknown key for boolean: NSSupportsSuddenTermination
    Feb  3 09:30:22 localhost com.apple.kextd[11]: Safe boot mode detected; invalidating system extensions caches.
    Feb  3 09:30:22 localhost com.apple.kextd[11]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories/System/Library/Extensi ons/KextIdentifiers.plist.gz is out of date; not using.
    Feb  3 09:30:24 localhost distnoted[18]: # distnote server daemon  absolute time: 59.166163713   civil time: Sun Feb  3 09:30:23 2013   pid: 18 uid: 0  root: yes
    Feb  3 09:30:25 localhost kernel[0]: NVEthernet: Ethernet address d4:9a:20:e0:e5:1c
    Feb  3 09:30:25 localhost kernel[0]: AirPort_AtherosNewma40: Ethernet address 7c:6d:62:75:54:ce
    Feb  3 09:30:25 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Feb  3 09:30:25 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Feb  3 09:30:26 localhost hidd[44]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Feb  3 09:30:26 localhost hidd[44]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    Feb  3 09:30:28 localhost kernel[0]: macx_swapon SUCCESS
    Feb  3 09:30:28 localhost rpc.statd[26]: Failed to contact rpc.statd at host 192.168.1.101
    Feb  3 09:30:33 localhost kernel[0]: Waiting for DSMOS...
    Feb  3 09:30:33 localhost kdc[42]: label: default
    Feb  3 09:30:33 localhost kdc[42]:           dbname: od:/Local/Default
    Feb  3 09:30:33 localhost kdc[42]:           mkey_file: /var/db/krb5kdc/m-key
    Feb  3 09:30:33 localhost kdc[42]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Feb  3 09:30:35 localhost appleeventsd[51]: main: Starting up
    Feb  3 09:30:35 localhost com.apple.SecurityServer[15]: Session 100000 created
    Feb  3 09:30:35 localhost mDNSResponder[36]: mDNSResponder mDNSResponder-379.32.1 (Aug 31 2012 19:05:06) starting OSXVers 12
    Feb  3 09:30:35 localhost coreservicesd[60]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    Feb  3 09:30:36 localhost airportd[64]: _processDLILEvent: en1 attached (down)
    Feb  3 09:30:36 localhost revisiond[30]: Had metainfo
    Feb  3 09:30:36 localhost kernel[0]: AtherosNewma40P2PInterface::init name <p2p0> role 1 this 0xffffff800b5f8000
    Feb  3 09:30:36 localhost kernel[0]: AtherosNewma40P2PInterface::init() <p2p> role 1
    Feb  3 09:30:36 localhost revisiond[30]: UUIDs match!
    Feb  3 09:30:36 localhost com.apple.usbmuxd[24]: usbmuxd-296.3 on Jul 25 2012 at 00:28:37, running 64 bit
    Feb  3 09:30:37 localhost com.apple.SecurityServer[15]: Entering service
    Feb  3 09:30:37 localhost kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Feb  3 09:30:37 localhost configd[17]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Feb  3 09:30:37 localhost configd[17]: DHCP en1: INIT-REBOOT transmit failed
    Feb  3 09:30:37 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Feb  3 09:30:37 localhost kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Feb  3 09:30:37 localhost kernel[0]: 72.935682: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
    Feb  3 09:30:37 localhost kernel[0]: 72.935699: switchVap from 1 to 1
    Feb  3 09:30:37 XXX-2.local configd[17]: setting hostname to "XXX-2.local"
    Feb  3 09:30:37 XXX-2.local configd[17]: network changed.
    Feb  3 09:30:38 XXX-2 kernel[0]: 73.467795: performCountryCodeOperation: Not connected, scan in progress[0]
    Feb  3 09:30:38 XXX-2 kernel[0]: 73.470038: setWOW_PARAMETERS:wowevents = 2(1)
    Feb  3 09:30:38 XXX-2 kernel[0]: en1: 802.11d country code set to 'SG '.
    Feb  3 09:30:38 XXX-2 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 149 153 157 161 165
    Feb  3 09:30:39 XXX-2.local systemkeychain[68]: done file: /var/run/systemkeychaincheck.done
    Feb  3 09:30:39 XXX-2.local kdc[42]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    Feb  3 09:30:39 XXX-2.local configd[17]: network changed: DNS*
    Feb  3 09:30:40 XXX-2 kernel[0]: en1: BSSID changed to 00:02:6f:cd:35:f8
    Feb  3 09:30:40 XXX-2 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Feb  3 09:30:40 XXX-2 kernel[0]: AirPort: Link Up on en1
    Feb  3 09:30:40 XXX-2 kernel[0]: en1: BSSID changed to 00:02:6f:cd:35:f8
    Feb  3 09:30:40 XXX-2 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Feb  3 09:30:40 XXX-2.local UserEventAgent[10]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    Feb  3 09:30:40 XXX-2 kernel[0]: 75.745569: setWOW_PARAMETERS:wowevents = 2(1)
    Feb  3 09:30:40 XXX-2 kernel[0]: AirPort: RSN handshake complete on en1
    Feb  3 09:30:40 XXX-2.local mDNSResponder[36]: D2D_IPC: Loaded
    Feb  3 09:30:40 XXX-2.local mDNSResponder[36]: D2DInitialize succeeded
    Feb  3 09:30:40 XXX-2.local locationd[40]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Feb  3 09:30:41 XXX-2.local locationd[40]: NOTICE,Location icon should now be in state 0
    Feb  3 09:30:41 XXX-2.local kdc[42]: KDC started
    Feb  3 09:30:42 XXX-2.local airportd[64]: _doAutoJoin: Already associated to “MyRepublic-35F8 ”. Bailing on auto-join.
    Feb  3 09:30:42 XXX-2.local apsd[57]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Feb  3 09:30:42 --- last message repeated 1 time ---
    Feb  3 09:30:42 XXX-2.local configd[17]: network changed: v4(en1+:192.168.0.100) DNS+ Proxy+ SMB+
    Feb  3 09:30:42 XXX-2.local UserEventAgent[10]: Captive: en1: Not probing 'MyRepublic-35F8 ' (protected network)
    Feb  3 09:30:42 XXX-2.local configd[17]: network changed: v4(en1!:192.168.0.100) DNS Proxy SMB
    Feb  3 09:30:43 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/UserEventAgent' [10] for authorization created by '/usr/libexec/UserEventAgent' [10] (100012,0)
    Feb  3 09:30:43 XXX-2.local com.apple.kextd[11]: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/IOKitPersonalities_x86_64. ioplist.gz is out of date; not using.
    Feb  3 09:30:43 XXX-2.local awacsd[55]: Starting awacsd connectivity-78 (Jul 26 2012 14:37:46)
    Feb  3 09:30:43 XXX-2.local awacsd[55]: InnerStore CopyAllZones: no info in Dynamic Store
    Feb  3 09:30:44 XXX-2.local digest-service[91]: label: default
    Feb  3 09:30:44 XXX-2.local digest-service[91]:           dbname: od:/Local/Default
    Feb  3 09:30:44 XXX-2.local digest-service[91]:           mkey_file: /var/db/krb5kdc/m-key
    Feb  3 09:30:44 XXX-2.local digest-service[91]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Feb  3 09:30:44 XXX-2.local digest-service[91]: digest-request: uid=0
    Feb  3 09:30:45 XXX-2.local stackshot[27]: Timed out waiting for IOKit to finish matching.
    Feb  3 09:30:45 XXX-2.local ntpd[87]: proto: precision = 1.000 usec
    Feb  3 09:30:46 XXX-2.local rpcsvchost[94]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Feb  3 09:30:46 XXX-2.local digest-service[91]: digest-request: init request
    Feb  3 09:30:46 XXX-2.local digest-service[91]: digest-request: init return domain: BUILTIN server: XXX-2
    Feb  3 09:30:48 XXX-2 kernel[0]: Sandbox: sandboxd(99) deny mach-lookup com.apple.coresymbolicationd
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Can't load AppleMCCSControl.kext - ineligible during safe boot.
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleMCCSControl failed; removing personalities from kernel.
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Can't load AppleSMBusPCI.kext - ineligible during safe boot.
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleSMBusPCI failed; removing personalities from kernel.
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Can't load AppleHDAController.kext - ineligible during safe boot.
    Feb  3 09:30:48 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    Feb  3 09:30:48 XXX-2 kernel[0]: Previous Shutdown Cause: 5
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Can't load IOFireWireIP.kext - ineligible during safe boot.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Can't load ATIRadeonX2000.kext - ineligible during safe boot.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Load com.apple.ATIRadeonX2000 failed; removing personalities from kernel.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Can't load IOBluetoothUSBDFU.kext - ineligible during safe boot.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothUSBDFU failed; removing personalities from kernel.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Can't load AppleTyMCEDriver.kext - ineligible during safe boot.
    Feb  3 09:30:49 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleTyMCEDriver failed; removing personalities from kernel.
    Feb  3 09:30:49 XXX-2 kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    Feb  3 09:30:49 XXX-2 kernel[0]: [AGPM Controller] unknownPlatform
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Can't load AppleUpstreamUserClient.kext - ineligible during safe boot.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Can't load IOBluetoothSerialManager.kext - ineligible during safe boot.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Can't load IOBluetoothSerialManager.kext - ineligible during safe boot.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Can't load IOUserEthernet.kext - ineligible during safe boot.
    Feb  3 09:30:50 XXX-2.local com.apple.kextd[11]: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    Feb  3 09:30:50 XXX-2 kernel[0]: DSMOS has arrived
    Feb  3 09:30:50 XXX-2 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    Feb  3 09:30:50 XXX-2 kernel[0]: [IOBluetoothHCIController][start] -- completed
    Feb  3 09:30:50 XXX-2.local loginwindow[39]: Login Window Application Started
    Feb  3 09:30:51 XXX-2 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Feb  3 09:30:52 XXX-2.local apsd[57]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Feb  3 09:30:54 XXX-2.local mds[35]: (Normal) FMW: FMW 0 0
    Feb  3 09:30:54 XXX-2.local sandboxd[99] ([69]): netbiosd(69) deny mach-lookup com.apple.networkd
    Feb  3 09:30:54 XXX-2.local WindowServer[102]: Server is starting up
    Feb  3 09:30:54 XXX-2.local WindowServer[102]: Session 256 retained (2 references)
    Feb  3 09:30:54 XXX-2.local WindowServer[102]: Session 256 released (1 references)
    Feb  3 09:30:54 XXX-2.local WindowServer[102]: Session 256 retained (2 references)
    Feb  3 09:30:54 XXX-2.local WindowServer[102]: init_page_flip: page flip mode is on
    Feb  3 09:30:55 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  3 09:30:55 XXX-2.local netbiosd[69]: name servers down?
    Feb  3 09:30:56 XXX-2 kernel[0]: [ffffff800b81b400][BNBMouseDevice::init][75.15] init is complete
    Feb  3 09:30:56 XXX-2 kernel[0]: [ffffff800b81b400][BNBMouseDevice::handleStart][75.15] returning 1
    Feb  3 09:30:56 XXX-2 kernel[0]: [ffffff800c434000][AppleMultitouchHIDEventDriver::start] entered
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: mux_initialize: Couldn't find any matches
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: GLCompositor enabled for tile size [256 x 256]
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: CGXGLInitMipMap: mip map mode is on
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: WSMachineUsesNewStyleMirroring: false
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Display 0x04272d40: GL mask 0x1; bounds (0, 0)[2560 x 1440], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb5, S/N 0, Unit 0, Rotation 0
              UUID 0x0000061000009cb50000000004272d40
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003d
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Created shield window 0x5 for display 0x04272d40
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Created shield window 0x6 for display 0x003f003d
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Display 0x04272d40: GL mask 0x1; bounds (0, 0)[2560 x 1440], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb5, S/N 0, Unit 0, Rotation 0
              UUID 0x0000061000009cb50000000004272d40
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Display 0x003f003d: GL mask 0x2; bounds (3584, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003d
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: CGXPerformInitialDisplayConfiguration
    Feb  3 09:30:56 XXX-2.local WindowServer[102]:   Display 0x04272d40: MappedDisplay Unit 0; Vendor 0x610 Model 0x9cb5 S/N 0 Dimensions 23.50 x 13.23; online enabled built-in, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    Feb  3 09:30:56 XXX-2.local WindowServer[102]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    Feb  3 09:30:56 XXX-2.local WindowServer[102]: Unable to open IOHIDSystem (e00002bd)
    Feb  3 09:30:56 XXX-2.local loginwindow[39]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Feb  3 09:30:56 XXX-2 kernel[0]: IOHIDSystem: Seize of IOHIDPointing failed.
    Feb  3 09:30:56 XXX-2 kernel[0]: IOHIDSystem: Seize of AppleMultitouchHIDEventDriver failed.
    Feb  3 09:30:56 XXX-2 kernel[0]: [ffffff800c454400][AppleMultitouchDevice::start] entered
    Feb  3 09:30:56 XXX-2 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    Feb  3 09:30:58 XXX-2.local awacsd[55]: Exiting
    Feb  3 09:31:00 XXX-2.local WindowServer[102]: Created shield window 0x7 for display 0x04272d40
    Feb  3 09:31:00 XXX-2.local WindowServer[102]: Display 0x04272d40: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    Feb  3 09:31:01 XXX-2.local airportd[64]: _doAutoJoin: Already associated to “MyRepublic-35F8 ”. Bailing on auto-join.
    Feb  3 09:31:01 XXX-2.local BezelServices 235.55[39]: -[DriverServices sendPreferencesToDevice:resetDefaults:] error: classPrefID (null), classPrefs (null)
    Feb  3 09:31:02 XXX-2.local launchctl[105]: com.apple.findmymacmessenger: Already loaded
    Feb  3 09:31:02 XXX-2.local com.apple.SecurityServer[15]: Session 100002 created
    Feb  3 09:31:02 XXX-2.local loginwindow[39]: Login Window Started Security Agent
    Feb  3 09:31:04 XXX-2.local SecurityAgent[113]: This is the first run
    Feb  3 09:31:04 XXX-2.local SecurityAgent[113]: MacBuddy was run = 0
    Feb  3 09:31:08 XXX-2.local genatsdb[116]: ########## genatsdb Sandboxed. ##########
    Feb  3 09:31:08 XXX-2.local helpd[111]: Could not find access page in directory /Applications/Switch.app/Contents/Resources/help
    Feb  3 09:31:10 --- last message repeated 1 time ---
    Feb  3 09:31:10 XXX-2.local coreaudiod[114]: 2013-02-03 09:31:10.244736 AM [AirPlay] Started browsing for _airplay._tcp.
    Feb  3 09:31:10 XXX-2.local coreaudiod[114]: 2013-02-03 09:31:10.245810 AM [AirPlay] Started browsing for _raop._tcp.
    Feb  3 09:31:10 XXX-2.local coreaudiod[114]: AHS_DefaultDeviceManager::SynchronizeDeviceList: the device list should never be empty - retrying
    Feb  3 09:31:10 XXX-2.local SecurityAgent[113]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:31:10 XXX-2.local SecurityAgent[113]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:31:11 XXX-2.local coreaudiod[114]: AHS_DefaultDeviceManager::SynchronizeDeviceList: the device list should never be empty - retrying
    Feb  3 09:31:12 XXX-2.local coreaudiod[114]: AHS_DefaultDeviceManager::SynchronizeDeviceList: the audio device list is empty
    Feb  3 09:31:12 XXX-2.local locationd[121]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Feb  3 09:31:12 XXX-2.local locationd[121]: NOTICE,Location icon should now be in state 0
    Feb  3 09:31:12 XXX-2.local UserEventAgent[108]: cannot find useragent 1102
    Feb  3 09:31:13 XXX-2.local timezoned[122]: bootstrap_look_up failed (44e)
    Feb  3 09:31:14 --- last message repeated 1 time ---
    Feb  3 09:31:14 XXX-2.local genatsdb[116]: *GENATSDB* FontObjects generated = 482
    Feb  3 09:31:17 XXX-2.local SecurityAgent[113]: User info context values set for XXX
    Feb  3 09:31:18 XXX-2.local helpd[111]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb  3 09:31:20 --- last message repeated 1 time ---
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Got user: XXX
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Got ruser: (null)
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Got service: authorization
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in od_principal_for_user(): No authentication authority returned
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in od_principal_for_user(): failed: 7
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Done cleanup3
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in od_record_check_pwpolicy(): retval: 0
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Establishing credentials
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Got user: XXX
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Context initialised
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Got euid, egid: 0 0
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Done getpwnam()
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Done setegid() & seteuid()
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): pam_sm_setcred: krb5 user XXX doesn't have a principal
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Done cleanup3
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Done seteuid() & setegid()
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): Done cleanup4
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Feb  3 09:31:20 XXX-2.local authorizationhost[127]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Feb  3 09:31:20 XXX-2.local SecurityAgent[113]: Login Window login proceeding
    Feb  3 09:31:21 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.console' by client '/System/Library/CoreServices/loginwindow.app' [39] for authorization created by '/System/Library/CoreServices/loginwindow.app' [39] (100003,0)
    Feb  3 09:31:21 XXX-2.local loginwindow[39]: Login Window - Returned from Security Agent
    Feb  3 09:31:21 XXX-2.local loginwindow[39]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    Feb  3 09:31:21 XXX-2.local loginwindow[39]: USER_PROCESS: 39 console
    Feb  3 09:31:21 XXX-2.local airportd[64]: _doAutoJoin: Already associated to “MyRepublic-35F8 ”. Bailing on auto-join.
    Feb  3 09:31:22 XXX-2 com.apple.launchd.peruser.501[128] (com.apple.gamed): Ignored this key: UserName
    Feb  3 09:31:22 XXX-2 com.apple.launchd.peruser.501[128] (com.apple.gamed): Ignored this key: GroupName
    Feb  3 09:31:22 XXX-2 com.apple.launchd.peruser.501[128] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Feb  3 09:31:22 XXX-2.local loginwindow[39]: Connection with distnoted server was invalidated
    Feb  3 09:31:22 XXX-2.local distnoted[132]: # distnote server agent  absolute time: 117.814021915   civil time: Sun Feb  3 09:31:22 2013   pid: 132 uid: 501  root: no
    Feb  3 09:31:22 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.done' by client '/System/Library/CoreServices/loginwindow.app' [39] for authorization created by '/System/Library/CoreServices/loginwindow.app' [39] (100002,0)
    Feb  3 09:31:23 XXX-2 com.apple.launchd.peruser.501[128] (com.apple.afpstat-qfa[154]): Exited with code: 2
    Feb  3 09:31:25 XXX-2.local coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=113
    Feb  3 09:31:26 XXX-2.local blued[54]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    Feb  3 09:31:28 XXX-2.local talagent[139]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    Feb  3 09:31:28 XXX-2.local talagent[139]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    Feb  3 09:31:30 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.services.systemconfiguration.network' by client '/usr/libexec/UserEventAgent' [131] for authorization created by '/usr/libexec/UserEventAgent' [131] (100000,0)
    Feb  3 09:31:31 XXX-2.local UserEventAgent[131]: cannot find fw daemon port 1102
    Feb  3 09:31:32 XXX-2.local apsd[158]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    Feb  3 09:31:34 XXX-2.local com.apple.SecurityServer[15]: Session 100005 created
    Feb  3 09:31:34 XXX-2.local WindowServer[102]: CGXDisableUpdate: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Feb  3 09:31:35 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    Feb  3 09:31:35 XXX-2.local WindowServer[102]: reenable_update_for_connection: UI updates were finally reenabled by application "SystemUIServer" after 2.39 seconds (server forcibly re-enabled them after 1.00 seconds)
    Feb  3 09:31:39 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  3 09:31:39 --- last message repeated 1 time ---
    Feb  3 09:31:39 XXX-2.local NetworkBrowserAgent[182]: Starting NetworkBrowserAgent
    Feb  3 09:31:39 XXX-2.local SystemUIServer[156]: Could not load menu extra NSBundle </System/Library/CoreServices/Menu Extras/Volume.menu> (not yet loaded) for Class AppleVolumeExtra
    Feb  3 09:31:56 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  3 09:32:30 --- last message repeated 3 times ---
    Feb  3 09:32:30 XXX-2.local com.apple.kextd[11]: Can't load /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/AppleUSBCDC.kext - ineligible during safe boot.
    Feb  3 09:32:30 XXX-2.local com.apple.kextd[11]: Load com.apple.driver.AppleUSBCDC failed; removing personalities from kernel.
    Feb  3 09:32:30 XXX-2.local com.apple.kextd[11]: Can't load /System/Library/Extensions/RIMBBUSB.kext - no code for running kernel's architecture.
    Feb  3 09:32:30 XXX-2.local com.apple.kextd[11]: Load com.rim.driver.BlackBerryUSBDriverInt failed; removing personalities from kernel.
    Feb  3 09:32:31 XXX-2 kernel[0]: USBMSC Identifier (non-unique): 57442D574D41535936363431313839 0x1058 0x1003 0x175
    Feb  3 09:32:32 XXX-2.local Dock[155]: no information back from LS about running process
    Feb  3 09:32:36 XXX-2.local com.apple.usbmuxd[24]: _handle_timer heartbeat detected detach for device 0x1-192.168.0.106:0!
    Feb  3 09:32:39 XXX-2.local Dock[155]: no information back from LS about running process
    Feb  3 09:32:43 XXX-2.local com.apple.backupd[165]: Starting manual backup
    Feb  3 09:32:43 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/UserEventAgent' [10] for authorization created by '/usr/libexec/UserEventAgent' [10] (100012,0)
    Feb  3 09:32:43 XXX-2.local com.apple.backupd[165]: Backing up to: /Volumes/MAGIC/Backups.backupdb
    Feb  3 09:32:44 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  3 09:32:47 XXX-2.local System Preferences[211]: Cannot setMachineString without first being authenticated
    Feb  3 09:32:47 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences.timemachine' by client '/Applications/System Preferences.app' [211] for authorization created by '/Applications/System Preferences.app' [211] (100012,0)
    Feb  3 09:32:47 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client '/Applications/System Preferences.app' [211] for authorization created by '/Applications/System Preferences.app' [211] (100012,0)
    Feb  3 09:32:48 XXX-2.local System Preferences[211]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:32:48 XXX-2.local System Preferences[211]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:32:48 XXX-2.local System Preferences[211]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:32:48 XXX-2.local System Preferences[211]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  3 09:32:48 XXX-2.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writeco nfig' [215] for authorization created by '/Applications/System Preferences.app' [211] (100002,0)
    Feb  3 09:32:55 XXX-2.local com.apple.backupd[165]: Using file event preflight for Macintosh HD
    Feb  3 09:33:12 XXX-2.local mds[35]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  3 09:33:43 --- last message repeated 4 times ---
    Time Machine in safe mode and after rebooting:
    Feb  3 09:23:32 XXX-2.local ReportCrash[76124]: Removing excessive log: file://localhost/Library/Logs/DiagnosticReports/backupd_2013-01-30-201723_XXX-2 .crash
    Feb  3 09:23:51 XXX-2 com.apple.launchd[1] (com.apple.backupd-auto[76058]): Exited with code: 1
    Feb  3 09:32:43 XXX-2.local com.apple.backupd[165]: Starting manual backup
    Feb  3 09:32:43 XXX-2.local com.apple.backupd[165]: Backing up to: /Volumes/YYY/Backups.backupdb
    Feb  3 09:32:55 XXX-2.local com.apple.backupd[165]: Using file event preflight for Macintosh HD
    Feb  3 09:34:36 XXX-2.local com.apple.backupd[165]: Will copy (11.58 GB) from Macintosh HD
    Feb  3 09:34:39 XXX-2.local com.apple.backupd[165]: Found 15344 files (11.65 GB) needing backup
    Feb  3 09:34:40 XXX-2.local com.apple.backupd[165]: 13.98 GB required (including padding), 92.02 GB available
    Feb  3 09:34:40 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:35:40 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:36:40 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:37:40 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:46:32 XXX-2.local com.apple.backupd[165]: Copied 81462 files (11.53 GB) from volume Macintosh HD.
    Feb  3 09:46:33 XXX-2.local com.apple.backupd[165]: Using file event preflight for Macintosh HD
    Feb  3 09:46:33 XXX-2.local com.apple.backupd[165]: Will copy (281 KB) from Macintosh HD
    Feb  3 09:46:33 XXX-2.local com.apple.backupd[165]: Found 27 files (281 KB) needing backup
    Feb  3 09:46:34 XXX-2.local com.apple.backupd[165]: 104.9 MB required (including padding), 80.45 GB available
    Feb  3 09:46:34 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:47:34 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:48:34 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:49:34 XXX-2.local com.apple.backupd[165]: Waiting for index to be ready (100)
    Feb  3 09:49:37 XXX-2.local com.apple.backupd[165]: Copied 762 files (93 bytes) from volume Macintosh HD.
    Feb  3 09:49:39 XXX-2.local com.apple.backupd[165]: Created new backup: 2013-02-03-094937
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Starting post-backup thinning
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/0127DD58-6012-4F 2E-9036-0F68211FC4F0
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/038BE4EF-5901-42 CF-9965-6297F88865DA
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/05FEA49D-BEEF-49 C3-8694-F18222C7A248
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/066177D1-772C-49 17-8E02-E21D48FE175C
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/07830479-ECCE-4D 5D-9019-E9E0C8C46046
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/096884A6-769B-4A C9-A8B5-FF9EF74755FA
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/0B9F9E07-812B-47 BF-8C9E-831D723F382D
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/0F489A8A-BC00-40 54-908C-D30AB7286942
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/0F761ED9-DEEF-4A 61-B432-884ACB6E266A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/1072BE92-9290-45 64-BD37-C513D68EEE37
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/1145D24F-40CB-45 69-B0EA-F86785CBE449
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/1CB2EB8B-9853-41 C1-BFA2-08CEEE2DF3A2
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/1D0E4371-0EB4-41 4C-B1F1-DE0F2E635268
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/28190F0E-F98C-42 01-8230-78BEDAA6B33F
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/294F1360-12EF-40 20-BE12-35DC8D929AEB
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/2958C7C5-CDF6-47 82-994B-2AEBADCA9518
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/2C9D9546-4B0E-4C F4-B86D-AF6990C0665F
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/2CC98B24-4E64-41 74-B4C8-FDE3843A0F5A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/2D8C8B03-190D-49 F8-A28F-364538565E33
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/2E275FE0-28E7-45 17-9A5C-DFD49E258398
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/36AB19FA-9E9C-46 3A-B646-CC171055ED26
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/39F02F11-D444-4D 8C-9222-FD071D69912A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/3B8E6B09-DAF9-44 D3-BE75-0527ECD089F6
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/3D362E1C-954A-4D 95-92CC-7717A7F3414C
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/4060D84E-EC47-4F 01-88AA-69233DF22FEC
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/4292299F-7065-41 B7-A5FF-99D2A0180245
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/482232F3-A796-43 34-BAEB-35F926625556
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/4D7D0D93-A798-41 FF-AE15-38C3DF58836B
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/4ECE2CFE-B427-48 3A-91E0-9D6CBF223970
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/4FB53007-36B5-40 02-9B9A-32EBC386B596
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/55D3779C-0A7D-4C B9-B0D9-2AAA267D1F63
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5639DEA7-AEEF-4F 9B-A590-F8CA1158D163
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/56F9C24E-51D0-4D 59-87A9-A6F64AA26CF4
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5820EC13-BBE1-40 96-BDF1-FDC48A6F9C15
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/58FCBEAE-81E8-41 67-AB78-CB57B364B0EA
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5A76B6A2-08D3-4A 0C-99D7-64309D784F3E
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5D60D2F2-11E7-4B D2-B64E-52AF7387D2EF
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5F45AED2-E957-41 3E-96CE-586542EF0D27
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/5FD86C56-136F-4A 3F-9EC4-1CC5E69D6D5D
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/6015AD80-DDDC-4E 70-B726-5F4F53345EBE
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/6290C990-EF4A-49 02-85D4-4991B691EF0E
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/650368C2-264D-40 9E-B9FE-86A497AA58F6
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/66CDF9A8-DD79-40 14-8CD2-7D6BDFD0A333
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/6B579859-FE8C-49 9B-92F1-03FEBAB1F416
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/6CF96906-6E21-4D 35-B1A4-3E39CE0966FC
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/6F154AF1-1C0C-42 DB-A05D-8974A91D271E
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/7064BFDE-3EA7-47 9E-B692-B3B76D27B828
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/731DF1BB-EDEA-49 B7-B837-1FDD2E23A02A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/7570D097-9EB8-40 48-896D-F244FB6A7FA4
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/75A371E4-EB86-4B D4-82F7-1402786940CD
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/75D20C3D-4D0E-46 3A-A957-8373113D23EF
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/7693DE95-2C65-46 FD-BEB8-3DF57C9BC47B
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/792AEE0A-FA57-40 33-837E-853B276E87D0
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/82A1F977-FDA9-48 A5-A976-2BC9CA37A191
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/873FD7D8-E86D-46 CA-9F62-6A5A70EA3089
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/87DEC01B-D69A-43 83-A451-C03D4E062235
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/89384C08-C197-41 5D-A876-2E56AB6CAF4C
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/89E8CD87-5C1E-44 56-9C51-5A4A0AC8536E
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/8A704D35-4B5B-4A 9E-85E9-98D5B4E0ADEB
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/8F7131DA-A673-4C EE-A411-FE430CD8102A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9030783D-48C5-48 70-BC5B-5D55120364F1
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/90E32F64-DE99-4D E8-8DA2-07C758957895
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/92227DA3-7F12-48 DB-84F7-72668DB2FF86
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/95028A86-DF8B-43 36-87D9-304AA129ADA5
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/98702228-2A0F-46 AE-81C1-BEF5E6BE4E8C
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/99D51CE4-5C15-4B CF-8CC6-B7B99C6C2D4E
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/99D8848C-A4C4-4E 87-B815-B16F12DBB98F
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9BD64DF1-D1D6-43 09-8A4A-C38A8E17E09C
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9BE94FBE-6E55-4F D3-BC66-339CB5DD648A
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9CE9ADC1-6DC3-4F 0C-9DBB-4A06CC9E6FA3
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9EB62B74-2C47-49 E3-B4BE-D05301686D02
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/YYY/Backups.backupdb/XXX/2013-01-10-083204.inProgress/9FDF20DF-AD53-4C 06-BC9A-F76E93578CFA
    Feb  3 09:50:42 XXX-2.local com.apple.backupd[165]: Error: Error Domain=NSOSStatusError

  • Is GetMenuItemInfo not work in acrobat???

    I want invoke menu item(save) with SendMessage,but I can't get menu item(save) by GetSubMenu.
    the code:
    procedure ExecSave(h: THandle);
    var
          muMain, ChildMenu: HMENU;
          k, n: integer;
          info, infosub: TMenuItemInfo;
          buffer, buffersub: array[0..254] of Char;
    begin
          muMain := GetMenu(h);
          fillchar(info, sizeof(info), 0);
          info.cbSize := sizeof(info);
          info.fMask := MIIM_TYPE or MIIM_SUBMENU;
          info.dwTypeData := buffer;
          info.cch := 255;
          GetMenuItemInfo(muMain, 0, true, info);
         ChildMenu := getsubmenu(muMain, 0);
          k := GetMenuItemCount(ChildMenu);
          for n := 0 to k - 1 do begin
               fillchar(infosub, sizeof(infosub), 0);
               infosub.cbSize := sizeof(infosub);
               infosub.fMask := MIIM_ID or MIIM_TYPE or MIIM_STATE or MIIM_SUBMENU;
               infosub.dwTypeData := buffersub;
               infosub.cch := 255;
               GetMenuItemInfo(ChildMenu, n, true, infosub);
              // infosub.dwTypeData always is nil
              if Pos('Ctrl+S', infosub.dwTypeData) > 0 then begin
                        PostMessage(h, WM_COMMAND, GetMenuItemID(ChildMenu, n), 0);
               end;
          end;
    end;

    The Com Interface is not work under win 7(above acrobat 7),so I want use sendmessage to invoke save command。
    (http://forums.adobe.com/thread/757369?)
    it looks like  ,sendkey is not a good way

  • I've just updated iPhoto recently and now it's not work?? How to un upgrade?

    I've just upgrade iPhoto and now cannot open iPhoto (trying revesals times but still not work), any one having same issue and can help me to fix it urgently please

    Thanks Terence Devlin, full error message is bellows:
    Process:         iPhoto [899]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [151]
    User ID:         502
    Date/Time:       2013-05-10 20:09:27.158 +0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          207213 sec
    Crashes Since Last Report:           27
    Per-App Interval Since Last Report:  352 sec
    Per-App Crashes Since Last Report:   27
    Anonymous UUID:                      DC68F1B7-DD4E-0ED7-A732-9802B12E2BEA
    Crashed Thread:  26  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSCFString substringToIndex:]: Range or index out of bounds'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x977fae9b __raiseError + 219
    1   libobjc.A.dylib                     0x9086752e objc_exception_throw + 230
    2   CoreFoundation                      0x9775a61b +[NSException raise:format:] + 139
    3   Foundation                          0x9390e970 -[NSString substringToIndex:] + 106
    4   RedRock                             0x027a811f +[RKFileNamingPolicy fileSafeName:] + 260
    5   RedRock                             0x0298c8a3 -[RKVersion(Imaging) proxyWritePath:] + 473
    6   RedRock                             0x0298d137 -[RKVersion(Imaging) recordOldThumbnailPreviewPathIfPresent] + 123
    7   iPhoto                              0x003ef46f iPhoto + 3224687
    8   iPhoto                              0x0031054b iPhoto + 2311499
    9   iPhoto                              0x003108dd iPhoto + 2312413
    10  Foundation                          0x9396e2a7 -[NSBlockOperation main] + 188
    11  Foundation                          0x93941599 -[__NSOperationInternal start] + 740
    12  Foundation                          0x939412a4 -[NSOperation start] + 67
    13  Foundation                          0x939493b9 __block_global_6 + 135
    14  libdispatch.dylib                   0x9277ef8f _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                   0x9277ac82 _dispatch_client_callout + 46
    16  libdispatch.dylib                   0x9277bf02 _dispatch_worker_thread2 + 285
    17  libsystem_c.dylib                   0x909e0e72 _pthread_wqthread + 441
    18  libsystem_c.dylib                   0x909c8d2a start_wqthread + 30
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x996627d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x99661cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x976f0f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x976f696f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x976f602a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x976f5e9b CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x98b38f5a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x98b38cc9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x98b38b44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x99a639aa _DPSNextEvent + 724
    10  com.apple.AppKit                        0x99a631dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x99a5963c -[NSApplication run] + 855
    12  com.apple.AppKit                        0x999fc666 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x000ec0b9 0xdc000 + 65721
    14  com.apple.iPhoto                        0x000eb705 0xdc000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x996659ae kevent + 10
    1   libdispatch.dylib                       0x9277dc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9277d7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 7:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x99664c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90a68a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x93949cb5 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x006aac94 0xdc000 + 6089876
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    10  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 8:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x99664c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90a68a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x93949cb5 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x006aac94 0xdc000 + 6089876
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    10  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209aa42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02099b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e32e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x909e3572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x939769b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x939767dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9397bd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026f42bf -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x90874586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x020a3ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0209be59 -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x0209b71f -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x0209af42 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x02099b2f -[XTThread run:] + 434
    14  com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    17  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 19:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x9777231b -[NSSet initWithSet:copyItems:] + 1547
    1   com.apple.CoreFoundation                0x97784d60 -[NSSet initWithSet:] + 48
    2   com.apple.iLifeSQLAccess                0x021941af -[HgLockedSet initWithSet:] + 106
    3   com.apple.iLifeSQLAccess                0x0219412d +[HgLockedSet setWithSet:] + 62
    4   com.apple.iLifeSQLAccess                0x02194087 -[HgRelationshipCache cacheForeignKeys:forKey:] + 83
    5   com.apple.RedRock                       0x0286d02b +[RKVersion prefetchAllObjectRelationships:] + 673
    6   com.apple.iPhoto                        0x00310ac7 0xdc000 + 2312903
    7   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    8   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    9   com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    10  com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    11  com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    12  com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    13  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    15  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    16  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    17  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 21:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x996627d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x99661cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x976f0f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x976f696f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x976f602a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x976f5e9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x938e463a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 22:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x99665d66 __pwrite + 10
    1   com.apple.proxtcore                     0x020e57e0 -[XTSegmentFile upgradeToCurrentVersion] + 193
    2   com.apple.proxtcore                     0x020e5332 -[XTSegmentFile initWithFile:indexProvider:capacity:variablePayload:] + 666
    3   com.apple.proxtcore                     0x020e33be +[XTSegmentFile newSegmentFileHandleWithFile:indexProvider:capacity:variablePayload:] + 386
    4   com.apple.RedRock                       0x02a70189 +[RKPreviewSegmentFileCacheStore newFileHandleForVersion:indexProvider:index:] + 550
    5   com.apple.RedRock                       0x02a6ff5e +[RKPreviewSegmentFileCacheStore newFileHandleForVersion:indexProvider:] + 58
    6   com.apple.iPhoto                        0x0031dbe5 0xdc000 + 2366437
    7   com.apple.iPhoto                        0x0031d37f 0xdc000 + 2364287
    8   com.apple.iPhoto                        0x008b0fe3 0xdc000 + 8212451
    9   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    10  com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    11  com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    12  com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    13  com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    14  com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    15  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    17  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    18  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    19  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 23:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x99664c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90a68a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x93949cb5 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x006aac94 0xdc000 + 6089876
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    10  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 24:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99664be6 __select + 10
    1   com.apple.CoreFoundation                0x9773a660 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 26 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x977fb6b7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x9086752e objc_exception_throw + 230
    2   com.apple.iPhoto                        0x003ef776 0xdc000 + 3225462
    3   com.apple.iPhoto                        0x0031054b 0xdc000 + 2311499
    4   com.apple.iPhoto                        0x003108dd 0xdc000 + 2312413
    5   com.apple.Foundation                    0x9396e2a7 -[NSBlockOperation main] + 188
    6   com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    7   com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    8   com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    9   libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    10  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    11  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    12  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    13  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 28:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x99664c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90a68a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x93949cb5 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x006aac94 0xdc000 + 6089876
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x93949d2d -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x93941599 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x939412a4 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x939493b9 __block_global_6 + 135
    10  libdispatch.dylib                       0x9277ef8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x9277ac82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x9277bf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x909e0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x996650ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x909e10ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x909e0e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x909c8d2a start_wqthread + 30
    Thread 30:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e3280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x90a69095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x9109e15a CVDisplayLink::runIOThread() + 912
    4   com.apple.CoreVideo                     0x9109ddb2 startIOThread(void*) + 160
    5   libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e3280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x90a69095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x005dcf21 0xdc000 + 5246753
    4   libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    5   com.apple.proxtcore                     0x020a3ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    7   com.apple.proxtcore                     0x0209be59 -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore                     0x0209b71f -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore                     0x0209af42 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore                     0x02099b2f -[XTThread run:] + 434
    11  com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    12  com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    13  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    14  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e3280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x90a69095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x001a5832 0xdc000 + 825394
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.RedRock                       0x027106eb -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock                       0x027214ac -[RKInvoker _invokeTargetWithPool:] + 68
    8   libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    9   com.apple.proxtcore                     0x020a3ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x0209be59 -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore                     0x0209b71f -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore                     0x0209af42 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore                     0x02099b2f -[XTThread run:] + 434
    15  com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    16  com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    17  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    18  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 33:
    0   libsystem_kernel.dylib                  0x996648e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x909e3280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x90a69095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x001eb728 0xdc000 + 1111848
    4   com.apple.CoreFoundation                0x9774c7cd __invoking___ + 29
    5   com.apple.CoreFoundation                0x9774c707 -[NSInvocation invoke] + 279
    6   com.apple.RedRock                       0x027106eb -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock                       0x027214ac -[RKInvoker _invokeTargetWithPool:] + 68
    8   libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    9   com.apple.proxtcore                     0x020a3ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  libobjc.A.dylib                         0x908745d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x0209be59 -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore                     0x0209b71f -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore                     0x0209af42 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore                     0x02099b2f -[XTThread run:] + 434
    15  com.apple.Foundation                    0x939487c8 -[NSThread main] + 45
    16  com.apple.Foundation                    0x9394874b __NSThread__main__ + 1396
    17  libsystem_c.dylib                       0x909de5b7 _pthread_start + 344
    18  libsystem_c.dylib                       0x909c8d4e thread_start + 34
    Thread 26 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0xb1cc5be0  ecx: 0x00000000  edx: 0x00000000
      edi: 0x90867459  esi: 0x6d140900  ebp: 0xb1cc53a8  esp: 0xb1cc53a0
       ss: 0x00000023  efl: 0x00000286  eip: 0x977fb6b7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x04707000
    Logical CPU: 0
    Binary Images:
       0xdc000 -   0xdd1ff3  com.apple.iPhoto (9.4.3 - 9.4.3) <74A545E6-1EB2-315F-82FA-3344B599F490> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf66000 -  0x1040ffc  org.python.python (2.6.7 - 2.6.7) <FA305A16-14DB-3062-BB61-3944ED836202> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x108c000 -  0x1094ffb  com.apple.PhotoFoundation (1.0 - 20.12) <6DEFC232-B843-3848-908E-25AF929E9026> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x1104000 -  0x12e1ffb  com.apple.geode (1.5.3 - 280.22) <887FF540-8A00-3AED-9C17-C99856E7A6F4> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x1372000 -  0x1377ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <6B675B59-ED97-35F8-89CB-79F387A05EA5> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1381000 -  0x13b0ff7  com.apple.iLifeAssetManagement (2.7 - 45.19) <C30AF8E5-51DB-3912-B58C-41988B396209> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13d5000 -  0x13fcff3  com.apple.iPhoto.Tessera (1.1 - 90.10) <143B4B05-6F39-3C83-A927-E4B5A53D2344> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x1410000 -  0x1434ffb  com.apple.iPhoto.Tellus (1.3 - 90.10) <88853EBB-0C48-3A68-91B7-ED078C953CBD> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x144a000 -  0x1455fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <39466D2B-2583-3407-96F2-69ADCF11ECB9> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1460000 -  0x1475ffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <5ADCA81F-5D7B-340F-9F44-B261ED19BBB2> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1484000 -  0x14adff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F5A4CCC3-E5E2-3451-96FD-40BA328605B6> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x14c7000 -  0x14c9fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14d0000 -  0x14dbff7  com.apple.UpgradeChecker (9.2 - 9.2) <39176044-B0CF-3C25-AF8D-A2BD8540A025> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14e4000 -  0x1563ff7  com.apple.iLifeMediaBrowser (2.7.3 - 546.4) <41C10827-7C8E-3241-922A-9E1A6CD48866> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x15a7000 -  0x16c6ffb  com.apple.WebKit (8536 - 8536.28.10) <C181C3FB-91E3-38AB-A709-6B61935B3AD8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1779000 -  0x178efff  com.apple.iChat.InstantMessage (7.0.1 - 3305) <BDC60881-195C-3C36-B863-AAA6BDA76C18> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x179e000 -  0x1b37ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <BBC17D76-255B-3135-92A6-886AD68BEB3F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c35000 -  0x1ec8ffb  com.apple.iLifePageLayout (1.3 - 210.38) <12AF048A-AAEE-39D3-B25C-383E9C5FB855> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1fa2000 -  0x2039ff7  com.apple.MobileMe (13 - 1.0.4) <38D8679A-1862-373C-BF4F-EB47200EDF08> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x2096000 -  0x20feff3  com.apple.proxtcore (1.4.1 - 270.13) <E71FA444-D69B-3395-8F99-0DA367E6CF22> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2140000 -  0x223fff3  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <081DDD36-ADA7-3329-8265-BE6AD5AB4E5F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x2287000 -  0x22b2ffb  com.apple.ProUtils (1.1 - 220.17) <3D8B203C-20D3-30FA-9A22-C88C11B60C41> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22cb000 -  0x2336fff  com.apple.iLifeKit (1.3.1 - 180.8) <C193C15D-7EA7-30CA-82ED-189192298D2A> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x237d000 -  0x25b6ff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26d1000 -  0x2c33fff  com.apple.RedRock (1.9.4 - 321.1) <7D29E84D-9336-3912-BA5C-EA8125553945> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2e4d000 -  0x2e71fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <6C931BC9-7C14-3F67-86F5-EBE2916E0670> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e8b000 -  0x2e8bfff  com.apple.SafariServices.framework (8536 - 8536.29.13) <D61D6D91-E02E-3D95-9DE7-F24186D7FC73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e91000 -  0x2e98ff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2ea3000 -  0x2ea3ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2ea9000 -  0x3119ff3  com.apple.CalendarStore (6.0 - 1249) <A6C4BC52-A53D-38F9-B938-AF2E885AAC0E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x321d000 -  0x3279ffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x32a7000 -  0x32d9ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x32eb000 -  0x32f4fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x32fc000 -  0x3304ff3  com.apple.AppSandbox (2.0 - 1) <EA5C2F87-F046-349E-B276-6B9F252B2AD5> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x330c000 -  0x3350ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3380000 -  0x3389ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3397000 -  0x33a8fff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x33b8000 -  0x341afff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x3458000 -  0x34a5ffb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x34fb000 -  0x3549fff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3576000 -  0x3583ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x358f000 -  0x36dbff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x3757000 -  0x37c4ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x37f2000 -  0x3819ffb  libsandbox.1.dylib (220.2) <3DBD15B6-ABFC-3395-9F6A-3061C8C1AC35> /usr/lib/libsandbox.1.dylib
    0x3823000 -  0x3836fff  com.apple.AppContainer (2.0 - 1) <A2C97877-F90D-34CB-BAC7-811D62BABDF0> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x3848000 -  0x384cff7  com.apple.SecCodeWrapper (2.0 - 1) <2ADFEC5C-ECC7-3CF5-89B9-0B461E014F12> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x3856000 -  0x385affe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x385e000 -  0x385eff0 +cl_kernels (???) <B610B2ED-2B58-4CD9-880F-5B2240A74290> cl_kernels
    0x3861000 -  0x3864ffb  com.apple.LibraryRepair (1.0 - 1) <C6A079B1-1FD5-39FF-B141-E6C99ECBAA77> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x386e000 -  0x38c8fff  com.apple.proapps.MIO (1.0.6 - 512) <599BE7F3-9169-33AF-8CCA-423CA4699E42> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x38df000 -  0x38e0ff5 +cl_kernels (???) <07CD4AAE-EEFB-42C2-99C7-B0E6FEB92636> cl_kernels
    0x38e2000 -  0x4575ffb  com.apple.WebCore (8536 - 8536.28.10) <AA738A8C-808D-302A-B58D-404C58075C45> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4cfc000 -  0x4cfdfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4d02000 -  0x4d02ff0 +cl_kernels (???) <B610B2ED-2B58-4CD9-880F-5B2240A74290> cl_kernels
    0x4d04000 -  0x4d29ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4d34000 -  0x4d68fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d6f000 -  0x4d6fff6 +cl_kernels (???) <AE17514C-15ED-4A55-8453-0B5D43DDE76F> cl_kernels
    0x4d71000 -  0x4ed8fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4ede000 -  0x4f3afff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4f52000 -  0x506cffb  com.apple.avfoundation (2.0 - 361.32) <7EDA9CE4-6147-302E-8B98-9F753E2849EB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x510a000 -  0x5142ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x515e000 -  0x5185ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x5198000 -  0x51c9ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x51de000 -  0x5226ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x5247000 -  0x52e6ff7  com.apple.imcore (8.0 - 900) <E17C2E05-730E-3157-9FC4-6B67456054C8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x530c000 -  0x5360ff7  com.apple.imfoundation (8.0 - 900) <94D754EA-3FCB-30A8-8C96-7A0FA2DB7D9A> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x538b000 -  0x5393ff7  com.apple.marco (8.0 - 900) <FAE5B666-B0A2-3348-9DAF-55D6851139E6> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x539a000 -  0x53c1ff7  com.apple.ExpressCheckout (1.0 - 1.0) <B6F86CF1-D6EA-312E-9758-CAFA1654CC6F> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x53db000 -  0x5409ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <93C42285-7982-3A15-ABDA-EDF416DF6B22> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x6aa3000 -  0x6aa3ff5 +cl_kernels (???) <09771E4F-0465-4637-B281-E3D3EA761E8E> cl_kernels
    0x6ae7000 -  0x6ae8ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <5184600D-D93E-3267-A3C0-1927BD7DB823> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x6aed000 -  0x6af0ffe  com.apple.DirectoryServicesSource (2.1 - 1169) <F49E7180-F3CF-3C63-8AF3-76C088BA779C> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x6af7000 -  0x6af7ffb +cl_kernels (???) <AA227EFE-2BBA-4E7B-8A90-ED9376998AE3> cl_kernels
    0x6afb000 -  0x6afbffb +cl_kernels (???) <FCDF5E70-95DD-4E2E-9D8A-5EFB445175C5> cl_kernels
    0x6aff000 -  0x6affffb +cl_kernels (???) <957D6A76-D611-4387-BF13-D82CDEE0AC56> cl_kernels
    0x6b89000 -  0x6b94fff  libGPUSupport.dylib (8.7.25) <08BED1B3-FD0C-3137-BC0C-39EED6029D84> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x6b9b000 -  0x6b9effd  com.apple.IOAccelerator (30.14 - 30.14) <0A58BEF8-4674-3406-86DF-1AC1DACA5024> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x6ba5000 -  0x6baffff  libGPUSupportMercury.dylib (8.7.25) <87F444BD-991C-334E-B000-3B0FB8861D50> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x6bb7000 -  0x6be2ff7  GLRendererFloat (8.7.25) <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x6beb000 -  0x6bf3ffd  libcld

  • Reading message from MQ- works in WSAD (IDE) but does not work outside WSAD

    Read from MQ:
    Same code works within WASD but does not work outside WSAD.

    PDL - thanks for the suggestions - here are the results:
    A button on the form that executes "this.print();" works fine.
    Changing "this" to "event.target" results in the same error.
    document.getElementById("PDFObj").Print(); works fine.
    However, the reason that I'm using ".postMessage([message])" instead of ".Print()" is because I actually have a toolbar that has save, print, zoom in, zoom out, page up, page down, etc.... I simplified the switch statement in the post above to only include print, but in reality has a case for each of the functions above. The postMessage call is triggering the error, since the catch statement is printing out the error message above. Any idea why this would work with Professional but not Reader.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

Maybe you are looking for

  • For family members over 13, how can I require permission to purchase an app

    i am now using family share for my teenage boys.   It seems their Apple ids list them as an adult.  How can I make it so they are required to get permission when. Purchasing an app. Right now they are linked to my credit card but I do not get that al

  • Please help save my gig.  Any crash report readers?  Logic 7.2.3

    I apologize for starting a new thread on an old post. But I'm pretty sure these recent crashes are not the same as the prior ones. Thanks in advance. Yet another one. I'm going to repost. I'm at my wit's end. Any help would be greatly appreciated. I'

  • Ipad mini retina cannot share hot spot with Bluetooth for Iphon5

    Ipad mini retina cannot share hot spot with Bluetooth for Iphon5 But When my Iphon5 share hot spot with Bluetooth for Ipad, I can share.

  • Run Webdypro Java application by default

    Hi , Is that possible to run a Webdynpro Java application by default when User logs into Portal? Actual requirement is that we need to assign Users with different ume groups once User login to portal depending on some User attributes. I am thinking a

  • WAD Printing

    Hello people, I face 2 issues while using the "EXPORT" option in WAD: 1 ) I am using the Export to PDF option in my Web report. There are two charts and two tables in my report. Now, when exported,  these items items come one after the other in the P