Every time I log onto a new site i get the following popup:Content [application/octet-stream] found Do you want to download it to C:\Users\kathy\ ? ... Can someone please tell me what this is and how do I stop this!

Content [application/octet-stream] found
Do you want to download it to C:\Users\kathy\ ?
'''bold text'''

Back up all data.
Check the Mail, Contacts & Calendar preference pane to make sure you're not synchronizing Notes in more than one account.
If you're not, disable Notes synchronization temporarily.
Quit Notes, if it's running.
Triple-click the line below to select it:
~/Library/Containers/com.apple.Notes
Copy the whole line of text to the Clipboard (command-C).
In the Finder, select
Go ▹ Go to Folder
from the menu bar. Paste into the box that opens (command-V), then press return. A Finder window should open with a folder selected. If it does, move the selected folder — not just its contents — to the Desktop.
The folder you're moving is named "com.apple.Notes" It is not the subfolder named "Data" or anything else.
Re-enable Notes synchronization.
Relaunch Notes and test. If it works now, delete the folder you moved. Otherwise, quit again, and put the folder back where it was, overwriting the one that may have been created in its place.
Caution: If you delete some or all of the contents of the selected folder, but leave the folder itself in place, the application may not launch. Deleting the folder will cause it to be rebuilt automatically.

Similar Messages

  • Can someone please tell me what I missed and the mistakes I made in package

    The following package compiled alright but did not execute because it is hung up with my ref cursor. Please help.
    CREATE OR REPLACE PACKAGE BLU_Providers IS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package.
         TYPE rcRetProviderInfo IS REF CURSOR;
              PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list                                                            OUT                                                  BLU_Providers.rcRetProviderInfo);
    END BLU_Providers;
    CREATE OR REPLACE PACKAGE BODY BLU_Providers AS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package body.
                             PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list     OUT BLU_Providers.rcRetProviderInfo)
                             IS
                             vsql VARCHAR2(2000);
                             vYes VARCHAR2(1);
                             NAME: GetProviderList --rcRetProviderInfo.cursorType)
                             PURPOSE:
                             REVISIONS:
                             Ver Date Author Description
                             1.0 3/16/2005 1. Created this procedure.
                             NOTES:
                             Automatically available Auto Replace Keywords:
                             Object Name: GetProviderList
                             Sysdate: 3/16/2005
                             Date and Time: 3/16/2005, 1:27:05 PM, and 3/16/2005 1:27:05 PM
                             Username: (set in TOAD Options, Procedure Editor)
                             Table Name: (set in the "New PL/SQL Object" dialog)
                             BEGIN
                                            vYes := 'Y';
                             vsql := 'SELECT
                                                                               (SELECT count(*)
                                                                                    FROM
                                                                                                                       doris.PROV_MASTER PM,
                                                                                                                       doris.PROV_SPECIALTY PS,
                                                                                                                       doris.PROV_ADDRESS PA
                                                                                    WHERE
                                                                                                                  PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                                                                  PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                                                                  PA.PRIMARY_ADDRESS = vYes) AS numProviders,               
                                                                               PM.PROVIDER_ID,
                                                                               PM.LAST_NAME || '' '' || PM.FIRST_NAME AS ProviderName,
                                                                               PS.SPECIALTY_TYPE AS SpecialtyCde,
                                                                               (                                                                                SELECT
                                                                                                                                                                                                       DESCRIPTION
                                                                                                                                                                    FROM           
                                                                                                                                                                                                       doris.PROV_TYPE_MASTER PTM
                                                                                                                                                                    WHERE
                                                                                                                                                                                                  PS.SPECIALTY_TYPE = PTM.TYPE_OR_SPEC_CODE) AS Specialty,
                                                                               PA.SITE_CODE AS prvLocNum,                                                                                                                   
                                                                               PA.ADDRESS_LINE_1,
                                                                               PA.ADDRESS_LINE_2,
                                                                               PA.CITY,
                                                                               PA.STATE,
                                                                               PA.ZIP_CODE,
                                                                               PA.INACTIVE_IND
                                                 FROM
                                                                          doris.PROV_MASTER PM,
                                                                          doris.PROV_SPECIALTY PS,
                                                                          doris.PROV_ADDRESS PA,
                                                      doris.PROV_CONTRACT PC
                                                 WHERE
                                                                               PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID = PC.SEQ_PROV_ID AND ';
                                                      -- If there is no null field in the provider last name          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider last name                    
                                                      -- If there is no null field in the provider City     
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.CITY) like ' || '''' || UPPER(pi_providerCity) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider City
                                                      -- If there is no null field in the provider state          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.STATE) like ' || '''' || UPPER(pi_providerState) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider state
                                                      -- If there is no null field in the provider Specialty Code          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PS.SPECIALTY_TYPE) like ' || '''' || UPPER(pi_SpecialtyCde) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Specialty Code          
                                                      -- If there is no null field in the provider Network or LOB          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Network or LOB     
                                                      -- If there is no null field in the provider Tax ID          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PC.TAX_ID) like ' || '''' || UPPER(pi_prvTaxID) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Tax ID                         
                                                      --Finish the query
                                                      vsql:=vsql || 'PA.PRIMARY_ADDRESS = ' || '''' || vYes || '''' || ' AND ROWNUM <= ' || pi_maxResults || ' ';
                                                      --Pass all the dynamic sql above to the ref cursor
                                                      OPEN po_prov_list FOR vsql;
                                                 po_out_status := 0;
                                                 po_out_message := 'Got Provider Data';
                             EXCEPTION
                             WHEN OTHERS THEN
                                                      po_out_status := SQLCODE;
                                                                               po_out_message := SUBSTR(SQLERRM,1,100);
                             END GetProviderList;
    END BLU_Providers;

    Did you get a particular error when you ran the stored procedure?
    As an aside, I would generall do this in static SQL via something like
    SELECT *
      FROM <<table name>>
    WHERE (parameter_1 IS NULL OR
            UPPER(column_1) LIKE UPPER(parameter_1))
       AND (parameter_2 IS NULL OR
            UPPER(column_2) LIKE UPPER(parameter_2))If you have not already created function-based indexes on UPPER(column_1), UPPER(column_2), etc. that would probably be a performance benefit.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • I have a MBP from 2008 (before unibody) and when i try to use apps such as Mail and the Mac App Store, they crash when i click on the links (to purchase something). I found it only happened after i updated to 10.7.4. can some1 please tell me what i can do

    Hi everyone, I have a macbook pro from 2008 which is the model before they became unibody. I have been having trouble using some of the built-in apps ever since i updated to 10.7.4. I cant use mail or the Mac App store becuase when i go to click on a link to purchase something in the Mac App Store of create a new email in Mail, the app just crashes. I am then asked to reopen the app and i try to do the same thing again and they same thing happens. Its really painful as i want to download applications and access my mail on my mac. Could you guys please get back to me on with somethings that i could try to get these apps working again.
    Thanks

    Hi Richard,
    these are the things for when mail quits
    here are the things that come from the console app
    I also copied the words that came in the window when an app quits
    Process:         Mail [2229]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.2 (1278)
    Build Info:      Mail-1278000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2012-07-23 18:38:28.318 +0800
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          159173 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  61 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      903F8ACA-456A-4BFE-ACC9-1D5C31F6FF48
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff7b534568
    VM Regions Near 0x7fff7b534568:
        __DATA                 00007fff7b4c1000-00007fff7b4c4000 [   12K] rw-/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    --> __DATA                 00007fff7b4c4000-00007fff7b571000 [  692K] rw-/rwx SM=COW  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        __DATA                 00007fff7b571000-00007fff7b57d000 [   48K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    Application Specific Information:
    objc[2229]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0x00007fff7b534568 OBJC_CLASS_$_NSProcessInfo + 0
    1   com.apple.mail                          0x0000000104401fe2 0x104365000 + 643042
    2   com.apple.mail                          0x0000000104401f1a 0x104365000 + 642842
    3   com.apple.AppKit                        0x00007fff8b2682ce -[NSWindow sendEvent:] + 2088
    4   com.apple.mail                          0x000000010442b9f9 0x104365000 + 813561
    5   com.apple.AppKit                        0x00007fff8b202a55 -[NSApplication sendEvent:] + 5593
    6   com.apple.mail                          0x00000001043e4d1b 0x104365000 + 523547
    7   com.apple.AppKit                        0x00007fff8b1990c6 -[NSApplication run] + 555
    8   com.apple.AppKit                        0x00007fff8b415244 NSApplicationMain + 867
    9   com.apple.mail                          0x000000010443d52c 0x104365000 + 886060
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff924e278a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff924e131a _dispatch_mgr_thread + 54
    Thread 2:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 3:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4b3736 -[AOSThreadManager AOSKPersistMailAliases:] + 1173
    5   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff9258e2dd -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff925adaa9 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 8:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 9:: -[MFAosImapAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 10:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 11:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 12:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff91ca56c8 CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff91ca53e9 _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 13:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099bde0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8d4eb76a ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff8d4eb6c3 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff8d4eb60b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff95867fd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff90c127ed JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00007fff90c12a40 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x00007fff90c12ae9 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 16:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099be37 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore                0x00007fff90c1b12c JSC::Heap::blockFreeingThreadMain() + 300
    4   com.apple.JavaScriptCore                0x00007fff90c1b169 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 17:: -[POPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff9264d87e -[Account _connectAndAuthenticate:] + 147
    15  com.apple.MessageFramework              0x00007fff9264dc5b -[Account authenticatedConnection] + 86
    16  com.apple.MessageFramework              0x00007fff92787f17 -[POP3FetchStore _authenticatedConnection] + 51
    17  com.apple.MessageFramework              0x00007fff9278831d -[POP3FetchStore fetchSynchronously] + 367
    18  com.apple.MessageFramework              0x00007fff9278a832 -[POPAccount fetchSynchronously] + 154
    19  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    21  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    22  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    23  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    24  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    25  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    26  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    27  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    28  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    29  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 18:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 19:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4bfa68 -[AOSConfig setupInfo] + 237
    5   com.apple.AOSKit                        0x00007fff8f4bf3e6 +[AOSConfig validationURLWithAppleID:andCurrentClient:] + 57
    6   com.apple.AOSKit                        0x00007fff8f4b6b9c -[AOSThreadManager AOSKPersistAccountData:] + 1416
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 23:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff8b3d14d3 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                

  • When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes".
    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • I some how deleted iphoto. i have since tried to install 9.1.1 and cant because i says i need to install 4.0 first which i cant find. can somebody please tell me what to do and where to go. my mac is a 3,1 and am running version 10.5.1

    can some body help me please!!!
    i some how deleted iphoto. i have since tried to install 9.1.1 and cant because i says i need to install 4.0 first which i cant find. can somebody please tell me what to do and where to go. my mac is a 3,1 and am running version 10.5.1

    reinstall iPhoto - go to your receipts folder ("Your hard drive" ==> library ==> receipts) and remove any iPhoto receipts and reinstall from the restore disks that came with your computer - do a custom install of bundled software only
    For more information  <a href="http://www.macworld.com/article/132243/2008/02/pacifist.html"> click here for the MacWorld article on reinstalling OS X applications.</a>
    9.1. is an update and can only be installed if you have purchased iLife '11 on DVD or iPhoto '11 from the App store - and iPhoto '11 will not run on OS 10.5.8 - or 10.5.1
    LN

  • I deleted 4 accounts and the mail app keeps trying to contact the old account server causing thousands of emails to be processed and causing my ISP to charge my account 20-30GB of data. Why is this happening and how do I stop this activity?

    I deleted 4 accounts and the mail app keeps trying to contact the old account server causing thousands of emails to be processed and causing my ISP to charge my account 20-30GB of data. Why is this happening and how do I stop this activity?
    I only now have 3 accounts!
    The old accounts have been deleted but the "Provide Mail Feedback" selection shows:
    Mail Version: 6.5 (1508)
    Total Accounts Configured: 4
    Account: MFAosImapAccount
    8 mailboxes:
    2029 messages, 362315022 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    795 messages, 167250216 bytes
    Account: IMAPAccount
    10 mailboxes:
    4 messages, 1199297 bytes
    0 messages, 0 bytes
    556 messages, 160661538 bytes
    3036 messages, 802090564 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    3019 messages, 801316850 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    10 messages, 3104320 bytes
    server information:
    vendor: Google, Inc.
    name: GImap
    Account: MFAosImapAccount
    10 mailboxes:
    180 messages, 40819804 bytes
    37 messages, 1013784 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    210 messages, 19863404 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    Account: LocalAccount
    24 mailboxes:
    7 messages, 88931 bytes
    294 messages, 2849595 bytes
    1 message, 6558 bytes
    0 messages, 0 bytes
    1 message, 9186 bytes
    26 messages, 744240 bytes
    0 messages, 0 bytes
    2 messages, 7698 bytes
    502 messages, 4398261 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    98 messages, 40510329 bytes
    1 message, 2289 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    19 messages, 465695 bytes
    1268 messages, 76984849 bytes
    0 messages, 0 bytes
    10 messages, 312327 bytes
    0 messages, 0 bytes
    6 messages, 113325 bytes
    1 message, 10034 bytes
    Total Incoming Message Rules: 1Junk Filter Mode: Automatic
    number of messages evaluated: 50165
    number of messages evaluated as junk: 17332
    number of messages manually marked as junk: 433
    number of messages manually marked as not junk: 471
    training balance: -14
    training debt: 741
    training credit: 727
    2 smart mailboxes:
    1 message, 2 criteria
    0 messages, 2 criteria

    The "LocalAccount" is "On My Mac" and doesn't correspond to an account on a mail server. That all I can tell you from the information provided.

  • Every page in website is different even though they are the same size!  4 Views 0 Replies Latest reply: Sep 25, 2011 4:23 PM by kellynewmac     kellynewmac Level 1 (0 points) Sep 25, 2011 4:23 PM Can someone please tell me what I have done wrong ?

    Can someone please tell me what I have done wrong>?  Obviously I am new to iweb, and need help.  I recently built a website in iweb with only 5 pages, and I made the height, width, & all of the specs regarding the page size exactly the same, but they all load as different sizes on the website.  Also the text i typed loads right away, and the images take forever to load with each page when i look at it on a pc, and not mac.  Can someone please help me!!

    Obviously I am new to iweb, and need help.
    And one of your Services is Webdesign?
    Small consolation : iWeb is a very advanced piece of software. So advanced that even highly skilled professionals have difficulty understanding and using it.
    Anyway, your pages are NOT the same size by design. Which can clearly be seen. But also by checking the source of the pages.
    The Home page is 665px wide and the Contact page is 820px wide. That doesn't happen by magic. It's user induced.
    So do what I do : pay attention to every tiny detail. Especially when it's your business. No excuse.
    Here are some sample Sites :
         http://www.wyodor.net/mfi/
    You can download Domain files for your pleasure to study and use here :
         http://www.wyodor.net/mfi/Maaskant/How_To.html
         http://www.wyodor.net/mfi/size/768-946.html

  • Can someone please tell me what the name "radio" over a telephone contact means.

    Can someone please tell me what the name "radio" stands for over a telephone contact.

    "Radio" seems to be the default label if you're using an Exchange account. Just go into the contact, tap "Edit" in the upper right. Tap the word "radio" and select the label you'd prefer to use.

  • Can someone please tell me what to do if you continue to get the message that your apple id has been disabled?

    Can someone please tell me what to do if you continue to get the message 'your apple id has been disabled'?  I've tried everything suggested in the help section...many times.

    Contact itunes support.

  • I just got home from the Apple Store getting my iphone 4S fixed. I now have "Invalid Sim". Can someone please tell me what to do?

    I just got home from the Apple Store getting my iphone 4S fixed. I now have "Invalid Sim". Can someone please tell me what to do?

    What does it say when you look at Settings=>General=>Carrier?
    Did it work with that sim in the Apple Store?

  • Every time I log on to i tunes I get the Prompt.  Can it be bypassed?

    Hello again.  Thanks again for the help with my earlier catastrophe.  I am quite comfortable with the old sofware/app/operating system/version, sorry I do not know the correct term.  However, every time I log into I Tunes now, I get blocked form doing anything unless I agree to download the newest version.  After losing my library for 15 hours and dubiously trying to recover it on my own, you all came to the rescue.  I have a lap top running windows 8 and this old desktop running windows 7.  With me not knowing which of the two accounts is assigned to this desk top, I do not wish to lose my content again.  Even if authorizing two users will solve the prob.  Is there a way to just keep the old version and bypass the download new version now screen?  Call me Old Fashioned.:)

    Open the Options dialog and go to the General tab.
    Check the setting "When Firefox Starts:" and make sure it is set to "Show my home page"

  • When I try to install itunes I get an error message that says "Canot access internet conection \."  Can someone please tell me what's wrong?  My internet connection is working.

    When I try to install itunes I get an error message that says "Cannot access internet connection \."  Can someone please tell what this means?
    My internet connection is working.

    Okay. We'll try a different utility.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • For some reason all of my apple hardware is no longer being found on my itunes account which is windows based. can someone please tell me what i could do?

    My windows based itunes is not finding any of my apple hardware when it is plugged into my computer. Could someone please tell me what i need to do to fix it. i have already uninstalled and reinstalled itunes.

    Restart the computer.
    Try plugging into a different USB port on the computer.
    Try a different sync cable.    

  • At startup my chose application box pops with a question What is null? can someone please tell me what this is?

    at start up my  choose application box appears with the question "what is null?" can someone enlighten me on what this is?

    The third-party system modification "GoFlex" may be contributing to your problem. I suggest you back up all data, then uninstall it according to the developer's instructions. Reboot and see whether there's any improvement.
    Back up all data before making any changes.

  • My computer frezzes constantly and I've tried almost everything.  I just got this report from etrsoft. Can someone please tell me what it says. Thanks

    Hardware Information:
              iMac (20-inch, Mid 2007)
              iMac - model: iMac7,1
              1 2 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              ATI,RadeonHD2400 - VRAM: 128 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:42:55
    Disk Information:
              WDC WD2500AAJS-40RYA0 disk0 : (250.06 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 199.48 GB (25 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        Mac OS X Install ESD (disk0s4) /Volumes/Mac OS X Install ESD: 49.58 GB (21.64 GB free)
    USB Information:
              Apple, Inc. Keyboard Hub
                        Mitsumi Electric Apple Optical USB Mouse
                        Apple, Inc Apple Keyboard
              Western Digital My Passport 07A8 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        My Passport (disk1s2) /Volumes/My Passport: 999.83 GB (184.7 MB free)
              Apple Inc. Built-in iSight
              Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
    Configuration files:
              /etc/sysctl.conf - Exists
    Kernel Extensions:
              com.logitech.manager.kernel.driver          (3.40.1 - SDK 10.8)
    Startup Items:
              FanControlDaemon: Path: /Library/StartupItems/FanControlDaemon
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.freemacsoft.appcleanerd.plist 3rd-Party support link
              [System] com.logmein.logmeinblanker.plist 3rd-Party support link
              [System] com.logmein.logmeinserver.plist 3rd-Party support link
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.wdc.SmartwareDriveService.plist 3rd-Party support link
              [System] com.wdc.WDSmartWareService.plist 3rd-Party support link
    Launch Agents:
              [System] com.logitech.manager.daemon.plist 3rd-Party support link
              [System] com.logmein.logmeingui.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagent.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagentatlogin.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] .dat0122.000 (hidden)
                        /Applications/Google Chrome.app/Contents/Versions/28.0.1500.71/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
              [not loaded] .dat012c.000 (hidden)
                        /Applications/Google Chrome.app/Contents/Versions/28.0.1500.71/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
              [not loaded] .dat013d.000 (hidden)
                        /Applications/Google Chrome.app/Contents/Versions/28.0.1500.71/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
              [not loaded] .dat0151.000 (hidden)
                        /Applications/Google Chrome.app/Contents/Versions/28.0.1500.71/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
              [not loaded] .dat02ee.000 (hidden)
                        /Applications/Google Chrome.app/Contents/Versions/28.0.1500.71/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.google.keystone.agent.plist 3rd-Party support link
              [not loaded] com.Hyperlync.HubManager.plist 3rd-Party support link
              [not loaded] com.microsoft.LaunchAgent.SyncServicesAgent.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              Alfred 2
              Trash It!
              RoboFormIcon
              WDQuickView
    Internet Plug-ins:
              WidevineMediaOptimizer: Version: 6.0.0.12607 - SDK 10.7 3rd-Party support link
              FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              Flash Player: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              SharePointBrowserPlugin: Version: 14.0.0 3rd-Party support link
              Silverlight: Version: 5.1.20913.0 - SDK 10.6 3rd-Party support link
    Safari Extensions:
              DoNotTrackMe: Online Privacy Protection: Version: 3.1.1064
              Add To Amazon Wish List: Version: 1.8
              My eBay Manager: Version: 3.0.2.0
              Turn Off the Lights: Version: 2.3.0.5
              Ultimate Status Bar: Version: 1.3
              RoboForm: Version: 1.7.9
              Full Screen: Version: 1.0.1
              Awesome Screenshot: Version: 1.4.2
              Scoopinion: Version: 0.8.12
              Enlocked: Version: 2.0.7
              YouMusic: Version: 0.1
              AdBlock: Version: 2.6.18
              Instair: Version: 1.2.3
              YouTube Lyrics by Rob W: Version: 3.8
              mailto:: Version: 1.24.0
              Pocket: Version: 1.6.0
              1-ClickWeather: Version: 1.0
              Translate: Version: 1.1
              YoutubeWide: Version: 10.0
              TED HTML5 video playe: Version: 1.0
              markerto: Version: 1.0
              The New York Times: Version: 0.1
              Scroll To Top: Version: 4.4
              ResponsiveResize: Version: 1.3
              Evernote Web Clipper: Version: 6.1
              Ginger: Version: 0.1.0.40
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              Fan Control  3rd-Party support link
              Flash Player  3rd-Party support link
              Logitech Preference Manager  3rd-Party support link
              WDQuickView  3rd-Party support link
    Old Applications:
              SmartwareServiceApp:          Version: 1.16 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/WD SmartWare Services/SmartwareServiceApp.app
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
              Microsoft Language Register:          Version: 14.3.6 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              iSkysoft Helper Compact:          Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
                        /Users/[redacted]/Library/Application Support/Helper/iSkysoft Helper Compact.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              /Applications/iWork '09
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO - Auto backup turned off
              Volumes being backed up:
                        Macintosh HD: Disk size: 185.78 GB Disk used: 162.50 GB
              Destinations:
                        My Passport [Local] (Last used)
                        Total size: 931.16 GB
                        Total number of backups: (null)
                        Size of backup disk: Excellent
                                  Backup size 931.16 GB > (Disk size 185.78 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   2%          EtreCheck
                   1%          coreaudiod
                   0%          Safari
                   0%          ps
    Top Processes by Memory:
              381 MB          Safari
              213 MB          com.apple.WebKit.WebContent
              70 MB          mds_stores
              66 MB          Finder
              57 MB          EtreCheck
    Virtual Memory Information:
              794 MB          Free RAM
              1.51 GB          Active RAM
              625 MB          Inactive RAM
              578 MB          Wired RAM
              334 MB          Page-ins
              2 MB          Page-outs

    Thanks Linc Davis,  here it goes
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016800
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000301
    3/28/14 9:50:14.000 PM kernel[0]: 0x40240054
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016800
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000302
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016800
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000300
    3/28/14 9:50:14.000 PM kernel[0]: 0xe400000c
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x0000008e
    3/28/14 9:50:14.000 PM kernel[0]: 0x0000000f
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x0000008f
    3/28/14 9:50:14.000 PM kernel[0]: 0x0000000f
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000010
    3/28/14 9:50:14.000 PM kernel[0]: 0x00010bc0
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0007300
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000002
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000020
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000018
    3/28/14 9:50:14.000 PM kernel[0]: 0x00003c03
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000040
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000028
    3/28/14 9:50:14.000 PM kernel[0]: 0x08110268
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0076d00
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:14.000 PM kernel[0]: 0x01f80721
    3/28/14 9:50:14.000 PM kernel[0]: 0x6800003f
    3/28/14 9:50:14.000 PM kernel[0]: 0x00010b80
    3/28/14 9:50:14.000 PM kernel[0]: 0x00010b80
    3/28/14 9:50:14.000 PM kernel[0]: 0x060a4000
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:14.000 PM kernel[0]: 0x80000030
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000090
    3/28/14 9:50:14.000 PM kernel[0]: 0x80000000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000091
    3/28/14 9:50:14.000 PM kernel[0]: 0x20002000
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000216
    3/28/14 9:50:14.000 PM kernel[0]: 0x000079fc
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x0000021a
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000002
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x000001b1
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000316
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000006
    3/28/14 9:50:14.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:14.000 PM kernel[0]: 0x00000317
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000008
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000185
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000210
    3/28/14 9:50:15.000 PM kernel[0]: 0x00007a00
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000214
    3/28/14 9:50:15.000 PM kernel[0]: 0x10000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001b3
    3/28/14 9:50:15.000 PM kernel[0]: 0x14000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001b4
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000008f
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000f
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000203
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000010
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000215
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000002
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000191
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0036e00
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00011292
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016800
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000060c
    3/28/14 9:50:15.000 PM kernel[0]: 0x80000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000c
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000d
    3/28/14 9:50:15.000 PM kernel[0]: 0x00200020
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000293
    3/28/14 9:50:15.000 PM kernel[0]: 0x00004000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000301
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000312
    3/28/14 9:50:15.000 PM kernel[0]: 0xffffffff
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000083
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000ffff
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000215
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000002
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000200
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000080
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000344
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000203
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000200
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000010c
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000b
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000a
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000343
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000800
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000034a
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000034b
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000008e
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000f
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000008f
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000000f
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000030c
    3/28/14 9:50:15.000 PM kernel[0]: 0x02000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x0000030e
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0046900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000105
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e0
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e1
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e2
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e3
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e4
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e5
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e6
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x000001e7
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000001
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0016900
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000202
    3/28/14 9:50:15.000 PM kernel[0]: 0x00cc0000
    3/28/14 9:50:15.000 PM kernel[0]: 0xc0206a00
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000400
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x3f800000
    3/28/14 9:50:15.000 PM kernel[0]: 0x42000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x3f800000
    3/28/14 9:50:15.000 PM kernel[0]: 0x42000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x42000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x3f800000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x42000000
    3/28/14 9:50:15.000 PM kernel[0]: 0x00000000
    3/28/14 9:51:03.000 PM bootlog[0]: BOOT_TIME 1396057863 0
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    3/28/14 9:51:25.000 PM kernel[0]: Longterm timer threshold: 1000 ms
    3/28/14 9:51:25.000 PM kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    3/28/14 9:51:25.000 PM kernel[0]: vm_page_bootstrap: 942271 free pages and 98113 wired pages
    3/28/14 9:51:25.000 PM kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    3/28/14 9:51:25.000 PM kernel[0]: zone leak detection enabled
    3/28/14 9:51:25.000 PM kernel[0]: "vm_compressor_mode" is 4
    3/28/14 9:51:25.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    3/28/14 9:51:25.000 PM kernel[0]: standard background quantum is 2500 us
    3/28/14 9:51:25.000 PM kernel[0]: mig_table_max_displ = 74
    3/28/14 9:51:25.000 PM kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    3/28/14 9:51:25.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    3/28/14 9:51:25.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    3/28/14 9:51:25.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    3/28/14 9:51:25.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    3/28/14 9:51:25.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    3/28/14 9:51:25.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    3/28/14 9:51:25.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    3/28/14 9:51:25.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    3/28/14 9:51:25.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    3/28/14 9:51:25.000 PM kernel[0]: MAC Framework successfully initialized
    3/28/14 9:51:25.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    3/28/14 9:51:25.000 PM kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    3/28/14 9:51:25.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    3/28/14 9:51:25.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    3/28/14 9:51:25.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    3/28/14 9:51:25.000 PM kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    3/28/14 9:51:25.000 PM kernel[0]: [ PCI configuration begin ]
    3/28/14 9:51:25.000 PM kernel[0]: console relocated to 0xf80010000
    3/28/14 9:51:25.000 PM kernel[0]: [ PCI configuration end, bridges 7, devices 17 ]
    3/28/14 9:51:25.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 001cb3fffe90aa42; max speed s800.
    3/28/14 9:51:25.000 PM kernel[0]: USBMSC Identifier (non-unique): 575833314539325555343535 0x1058 0x7a8 0x1049, 2
    3/28/14 9:51:25.000 PM kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    3/28/14 9:51:25.000 PM kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    3/28/14 9:51:25.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    3/28/14 9:51:25.000 PM kernel[0]: rooting via boot-uuid from /chosen: 59B2AA43-F185-3A5E-BDCD-00DBF5BEC6FA
    3/28/14 9:51:25.000 PM 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>
    3/28/14 9:51:25.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    3/28/14 9:51:25.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    3/28/14 9:51:25.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    3/28/14 9:51:25.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    3/28/14 9:51:25.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    3/28/14 9:51:25.000 PM kernel[0]: BTCOEXIST off
    3/28/14 9:51:25.000 PM kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    3/28/14 9:51:25.000 PM kernel[0]: 5.10.131.36
    3/28/14 9:51:25.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/WDC WD2500AAJS-40RYA0 Media/IOGUIDPartitionScheme/Macintosh HD@2
    3/28/14 9:51:25.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    3/28/14 9:51:25.000 PM kernel[0]: jnl: b(1, 2): replay_journal: from: 8147968 to: 10040832 (joffset 0x5d1000)
    3/28/14 9:51:25.000 PM kernel[0]: jnl: b(1, 2): journal replay done.
    3/28/14 9:51:25.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device
    3/28/14 9:51:25.000 PM kernel[0]: hfs: Removed 2 orphaned / unlinked files and 10 directories
    3/28/14 9:51:25.000 PM kernel[0]: AppleYukon2: Marvell Yukon Gigabit Adapter 88E8055 Singleport Copper SA
    3/28/14 9:51:25.000 PM kernel[0]: AppleYukon2: RxRingSize <= 1024, TxRingSize 256, RX_MAX_LE 1024, TX_MAX_LE 768, ST_MAX_LE 3328
    3/28/14 9:51:06.389 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    3/28/14 9:51:06.389 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    3/28/14 9:51:25.368 PM com.apple.SecurityServer[17]: Session 100000 created
    3/28/14 9:51:30.275 PM com.apple.launchd[1]: (com.logmein.logmeinserver[71]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:30.278 PM com.apple.launchd[1]: (com.logmein.logmeinserver[71]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:30.278 PM com.apple.launchd[1]: (com.logmein.logmeinserver[71]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:30.300 PM com.apple.launchd[1]: (com.logmein.logmeinserver[71]) Exited with code: 2
    3/28/14 9:51:30.300 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:30.302 PM hidd[51]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    3/28/14 9:51:30.303 PM hidd[51]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    3/28/14 9:51:30.000 PM kernel[0]: VM Swap Subsystem is ON
    3/28/14 9:51:31.302 PM com.apple.launchd[1]: (com.logmein.logmeinserver[76]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:31.302 PM com.apple.launchd[1]: (com.logmein.logmeinserver[76]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:31.302 PM com.apple.launchd[1]: (com.logmein.logmeinserver[76]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:31.303 PM com.apple.launchd[1]: (com.logmein.logmeinserver[76]) Exited with code: 2
    3/28/14 9:51:31.303 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:32.305 PM com.apple.launchd[1]: (com.logmein.logmeinserver[77]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:32.305 PM com.apple.launchd[1]: (com.logmein.logmeinserver[77]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:32.305 PM com.apple.launchd[1]: (com.logmein.logmeinserver[77]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:32.306 PM com.apple.launchd[1]: (com.logmein.logmeinserver[77]) Exited with code: 2
    3/28/14 9:51:32.306 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:33.308 PM com.apple.launchd[1]: (com.logmein.logmeinserver[81]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:33.308 PM com.apple.launchd[1]: (com.logmein.logmeinserver[81]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:33.308 PM com.apple.launchd[1]: (com.logmein.logmeinserver[81]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:33.309 PM com.apple.launchd[1]: (com.logmein.logmeinserver[81]) Exited with code: 2
    3/28/14 9:51:33.309 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:34.000 PM kernel[0]: Waiting for DSMOS...
    3/28/14 9:51:34.312 PM com.apple.launchd[1]: (com.logmein.logmeinserver[83]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:34.312 PM com.apple.launchd[1]: (com.logmein.logmeinserver[83]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:34.312 PM com.apple.launchd[1]: (com.logmein.logmeinserver[83]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:34.313 PM com.apple.launchd[1]: (com.logmein.logmeinserver[83]) Exited with code: 2
    3/28/14 9:51:34.313 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:34.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    3/28/14 9:51:35.318 PM com.apple.launchd[1]: (com.logmein.logmeinserver[85]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:35.318 PM com.apple.launchd[1]: (com.logmein.logmeinserver[85]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:35.319 PM com.apple.launchd[1]: (com.logmein.logmeinserver[85]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:35.320 PM com.apple.launchd[1]: (com.logmein.logmeinserver[85]) Exited with code: 2
    3/28/14 9:51:35.320 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:35.551 PM kdc[49]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    3/28/14 9:51:35.555 PM com.apple.launchd[1]: (com.apple.Kerberos.kdc[49]) Exited with code: 1
    3/28/14 9:51:35.555 PM com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 5 seconds
    3/28/14 9:51:35.000 PM kernel[0]: fsevents: watcher com.freemacsoft. (pid: 72) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    3/28/14 9:51:35.611 PM com.apple.usbmuxd[28]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key $Num (kSMCKeyNotFound)
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcReadKeyAction ERROR $Num kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    3/28/14 9:51:35.000 PM kernel[0]: init
    3/28/14 9:51:35.000 PM kernel[0]: probe
    3/28/14 9:51:35.000 PM kernel[0]: start
    3/28/14 9:51:35.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    3/28/14 9:51:35.000 PM kernel[0]: ** Device in slot: SLOT--1 **
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    3/28/14 9:51:35.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xf400 ****
    3/28/14 9:51:35.000 PM kernel[0]: **** [CSRBluetoothHostControllerUSBTransport][start] -- completed -- 0xf400 ****
    3/28/14 9:51:35.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xf400
    3/28/14 9:51:35.000 PM kernel[0]: Previous Shutdown Cause: 3
    3/28/14 9:51:35.000 PM kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    3/28/14 9:51:35.000 PM kernel[0]: DSMOS has arrived
    3/28/14 9:51:35.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    3/28/14 9:51:35.000 PM kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xc6c0 -- 0xe000 -- 0xf400 ****
    3/28/14 9:51:36.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    3/28/14 9:51:36.191 PM com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 5 seconds
    3/28/14 9:51:36.203 PM configd[20]: setting hostname to "Carlos-Julio-iMac-8408.local"
    3/28/14 9:51:36.210 PM configd[20]: network changed.
    3/28/14 9:51:36.322 PM com.apple.launchd[1]: (com.logmein.logmeinserver[98]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:36.323 PM com.apple.launchd[1]: (com.logmein.logmeinserver[98]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:36.323 PM com.apple.launchd[1]: (com.logmein.logmeinserver[98]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:36.323 PM com.apple.launchd[1]: (com.logmein.logmeinserver[98]) Exited with code: 2
    3/28/14 9:51:36.323 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:37.000 PM kernel[0]: Ethernet [AppleYukon2]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,6c48,0de1,0200,41e1,4000]
    3/28/14 9:51:37.326 PM com.apple.launchd[1]: (com.logmein.logmeinserver[102]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:37.326 PM com.apple.launchd[1]: (com.logmein.logmeinserver[102]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:37.326 PM com.apple.launchd[1]: (com.logmein.logmeinserver[102]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:37.327 PM com.apple.launchd[1]: (com.logmein.logmeinserver[102]) Exited with code: 2
    3/28/14 9:51:37.327 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:38.204 PM com.apple.SecurityServer[17]: Entering service
    3/28/14 9:51:38.331 PM com.apple.launchd[1]: (com.logmein.logmeinserver[106]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:38.331 PM com.apple.launchd[1]: (com.logmein.logmeinserver[106]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:38.333 PM com.apple.launchd[1]: (com.logmein.logmeinserver[106]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:38.338 PM com.apple.launchd[1]: (com.logmein.logmeinserver[106]) Exited with code: 2
    3/28/14 9:51:38.338 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:38.512 PM mDNSResponder[42]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    3/28/14 9:51:38.578 PM digest-service[78]: label: default
    3/28/14 9:51:38.579 PM digest-service[78]:           dbname: od:/Local/Default
    3/28/14 9:51:38.579 PM digest-service[78]:           mkey_file: /var/db/krb5kdc/m-key
    3/28/14 9:51:38.580 PM digest-service[78]:           acl_file: /var/db/krb5kdc/kadmind.acl
    3/28/14 9:51:38.583 PM digest-service[78]: digest-request: uid=0
    3/28/14 9:51:38.661 PM digest-service[78]: digest-request: netr probe 0
    3/28/14 9:51:38.662 PM digest-service[78]: digest-request: init request
    3/28/14 9:51:38.674 PM digest-service[78]: digest-request: init return domain: BUILTIN server: CARLOS-JULIO-IMAC-8408 indomain was: <NULL>
    3/28/14 9:51:38.778 PM UserEventAgent[14]: Captive: CNPluginHandler en1: Inactive
    3/28/14 9:51:38.784 PM UserEventAgent[14]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    3/28/14 9:51:38.854 PM configd[20]: network changed: DNS*
    3/28/14 9:51:38.856 PM configd[20]: network changed.
    3/28/14 9:51:38.859 PM mDNSResponder[42]: D2D_IPC: Loaded
    3/28/14 9:51:38.859 PM mDNSResponder[42]: D2DInitialize succeeded
    3/28/14 9:51:38.862 PM mDNSResponder[42]:   4: Listening for incoming Unix Domain Socket client requests
    3/28/14 9:51:38.938 PM networkd[126]: networkd.126 built Aug 24 2013 22:08:46
    3/28/14 9:51:39.198 PM SmartwareDriveService[70]: SmartwareDriveService version V1.1.2.1 starting...
    3/28/14 9:51:39.201 PM SmartwareDriveService[70]: WDDevSvcServer::StartServer
    3/28/14 9:51:39.202 PM SmartwareDriveService[70]: Error while trying to delete /var/tmp/com.WD.SmartwareDriveService/Socket error = No such file or directory.
    3/28/14 9:51:39.206 PM SmartwareDriveService[70]: WDDeviceManager::DeletStatusMenuFile
    3/28/14 9:51:39.234 PM loginwindow[45]: Login Window Application Started
    3/28/14 9:51:39.267 PM awacsd[64]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    3/28/14 9:51:39.274 PM awacsd[64]: InnerStore CopyAllZones: no info in Dynamic Store
    3/28/14 9:51:39.000 PM kernel[0]: jnl: disk0s4: replay_journal: from: 1758208 to: 2754560 (joffset 0x19c974000)
    3/28/14 9:51:39.341 PM com.apple.launchd[1]: (com.logmein.logmeinserver[132]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:39.341 PM com.apple.launchd[1]: (com.logmein.logmeinserver[132]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:39.341 PM com.apple.launchd[1]: (com.logmein.logmeinserver[132]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:39.342 PM com.apple.launchd[1]: (com.logmein.logmeinserver[132]) Exited with code: 2
    3/28/14 9:51:39.342 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:39.407 PM systemkeychain[109]: done file: /var/run/systemkeychaincheck.done
    3/28/14 9:51:39.466 PM airportd[68]: airportdProcessDLILEvent: en1 attached (up)
    3/28/14 9:51:40.000 PM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    3/28/14 9:51:40.000 PM kernel[0]: fsevents: watcher SmartwareService (pid: 69) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    3/28/14 9:51:40.321 PM WindowServer[131]: Server is starting up
    3/28/14 9:51:40.322 PM mds[41]: (Normal) FMW: FMW 0 0
    3/28/14 9:51:40.346 PM com.apple.launchd[1]: (com.logmein.logmeinserver[134]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:40.346 PM com.apple.launchd[1]: (com.logmein.logmeinserver[134]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:40.347 PM com.apple.launchd[1]: (com.logmein.logmeinserver[134]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:40.348 PM com.apple.launchd[1]: (com.logmein.logmeinserver[134]) Exited with code: 2
    3/28/14 9:51:40.348 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:40.597 PM locationd[47]: NBB-Could not get UDID for stable refill timing, falling back on random
    3/28/14 9:51:40.619 PM locationd[47]: Location icon should now be in state 'Inactive'
    3/28/14 9:51:40.619 PM locationd[47]: locationd was started after an unclean shutdown
    3/28/14 9:51:40.000 PM kernel[0]: jnl: disk0s4: journal replay done.
    3/28/14 9:51:41.005 PM mdmclient[43]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    3/28/14 9:51:41.000 PM kernel[0]: hfs: mounted Mac OS X Install ESD on device disk0s4
    3/28/14 9:51:41.185 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:41.225 PM kdc[136]: label: default
    3/28/14 9:51:41.225 PM kdc[136]:           dbname: od:/Local/Default
    3/28/14 9:51:41.225 PM kdc[136]:           mkey_file: /var/db/krb5kdc/m-key
    3/28/14 9:51:41.226 PM kdc[136]:           acl_file: /var/db/krb5kdc/kadmind.acl
    3/28/14 9:51:41.245 PM kdc[136]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    3/28/14 9:51:41.253 PM apsd[66]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    3/28/14 9:51:41.343 PM kdc[136]: KDC started
    3/28/14 9:51:41.654 PM configd[20]: network changed: v4(en0+:192.168.1.4) DNS+ Proxy+ SMB
    3/28/14 9:51:41.671 PM configd[20]: setting hostname to "carlosjimac8408.home"
    3/28/14 9:51:42.188 PM com.apple.launchd[1]: (com.logmein.logmeinserver[138]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:42.188 PM com.apple.launchd[1]: (com.logmein.logmeinserver[138]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:42.188 PM com.apple.launchd[1]: (com.logmein.logmeinserver[138]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:42.189 PM com.apple.launchd[1]: (com.logmein.logmeinserver[138]) Exited with code: 2
    3/28/14 9:51:42.189 PM com.apple.launchd[1]: (com.logmein.logmeinserver) Throttling respawn: Will start in 1 seconds
    3/28/14 9:51:43.078 PM mDNSResponder[42]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDB04808D60 Carlos-Julio-iMac-8408.local. (AAAA) that's already in the list
    3/28/14 9:51:43.078 PM mDNSResponder[42]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDB048091F0 9.5.9.1.A.9.E.F.F.F.3.6.B.1.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    3/28/14 9:51:43.078 PM mDNSResponder[42]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDB04814160 Carlos-Julio-iMac-8408.local. (Addr) that's already in the list
    3/28/14 9:51:43.078 PM mDNSResponder[42]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDB048145F0 4.1.168.192.in-addr.arpa. (PTR) that's already in the list
    3/28/14 9:51:43.191 PM com.apple.launchd[1]: (com.logmein.logmeinserver[151]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/
    3/28/14 9:51:43.191 PM com.apple.launchd[1]: (com.logmein.logmeinserver[151]) open("/Library/Application Support/LogMeIn/log/stdout.log", ...): 2: No such file or directory
    3/28/14 9:51:43.192 PM com.apple.launchd[1]: (com.logmein.logmeinserver[151]) open("/Library/Application Support/LogMeIn/log/stderr.log", ...): 2: No such file or directory
    3/28/14 9:51:43.192 PM com.apple.launchd[1]: (com.logmein.logmeinserver[151]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    3/28/14 9:51:43.193 PM com.apple.launchd[1]: (com.logmein.logmeinserver[151]) Job failed to exec(3) for weird reason: 2
    3/28/14 9:51:44.174 PM apsd[66]: Unrecognized leaf certificate
    3/28/14 9:51:44.179 PM ntpd[144]: proto: precision = 1.000 usec
    3/28/14 9:51:45.000 PM kernel[0]: hfs: mounted Recovery HD on device disk0s3
    3/28/14 9:51:45.761 PM mds[41]: (Normal) Volume: volume:0x7fa17281b800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    3/28/14 9:51:45.871 PM fseventsd[52]: Logging disabled completely for device:1: /Volumes/Recovery HD
    3/28/14 9:51:46.391 PM stackshot[31]: Timed out waiting for IOKit to finish matching.
    3/28/14 9:51:52.256 PM apsd[66]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    3/28/14 9:51:52.000 PM kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    3/28/14 9:51:52.347 PM WindowServer[131]: Session 256 retained (2 references)
    3/28/14 9:51:52.348 PM WindowServer[131]: Session 256 released (1 references)
    3/28/14 9:51:52.372 PM WindowServer[131]: Session 256 retained (2 references)
    3/28/14 9:51:52.391 PM WindowServer[131]: init_page_flip: page flip mode is on
    3/28/14 9:51:54.331 PM WindowServer[131]: Found 36 modes for display 0x00000000 [27, 9]
    3/28/14 9:51:54.336 PM WindowServer[131]: Found 1 modes for display 0x00000000 [1, 0]
    3/28/14 9:51:54.338 PM WindowServer[131]: mux_initialize: Couldn't find any matches
    3/28/14 9:51:54.340 PM WindowServer[131]: Found 36 modes for display 0x00000000 [27, 9]
    3/28/14 9:51:54.344 PM WindowServer[131]: Found 1 modes for display 0x00000000 [1, 0]
    3/28/14 9:51:54.377 PM WindowServer[131]: WSMachineUsesNewStyleMirroring: false
    3/28/14 9:51:54.378 PM WindowServer[131]: Display 0x04271a80: GL mask 0x1; bounds (0, 0)[1680 x 1050], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c6a, S/N 0, Unit 0, Rotation 0
    UUID 0xfb0fa7c0e13ce6d18843ef1aadb3c952
    3/28/14 9:51:54.378 PM WindowServer[131]: 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 0xffffffffffffffffffffffffffffffff
    3/28/14 9:51:54.380 PM WindowServer[131]: WSSetWindowTransform: Singular matrix
    3/28/14 9:51:54.384 PM WindowServer[131]: Display 0x04271a80: GL mask 0x1; bounds (0, 0)[1680 x 1050], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c6a, S/N 0, Unit 0, Rotation 0
    UUID 0xfb0fa7c0e13ce6d18843ef1aadb3c952
    3/28/14 9:51:54.384 PM WindowServer[131]: Display 0x003f003d: GL mask 0x2; bounds (2704, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    3/28/14 9:51:54.385 PM WindowServer[131]: CGXPerformInitialDisplayConfiguration
    3/28/14 9:51:54.385 PM WindowServer[131]:   Display 0x04271a80: Unit 0; Vendor 0x610 Model 0x9c6a S/N 0 Dimensions 17.05 x 10.63; online enabled built-in, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1
    3/28/14 9:51:54.385 PM WindowServer[131]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1
    3/28/14 9:51:54.414 PM WindowServer[131]: GLCompositor: GL renderer id 0x01021a03, GL mask 0x00000003, accelerator 0x00004173, unit 0, caps QEX|MIPMAP, vram 128 MB
    3/28/14 9:51:54.414 PM WindowServer[131]: GLCompositor: GL renderer id 0x01021a03, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    3/28/14 9:51:54.414 PM WindowServer[131]: GLCompositor enabled for tile size [256 x 256]
    3/28/14 9:51:54.414 PM WindowServer[131]: CGXGLInitMipMap: mip map mode is on
    3/28/14 9:51:54.432 PM loginwindow[45]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    3/28/14 9:51:55.210 PM awacsd[64]: Exiting
    3/28/14 9:51:55.000 PM kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    3/28/14 9:51:56.381 PM WindowServer[131]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    3/28/14 9:51:57.425 PM WindowServer[131]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7ff343d1bae0) - enabling OpenGL
    3/28/14 9:51:58.788 PM WindowServer[131]: Display 0x04271a80: Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    3/28/14 9:51:58.861 PM com.apple.launchd[1]: (com.logmein.logmeinguiagentatlogin[178]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/LogMeIn.app/Contents/Resources/LMIGUIAgent.app/Contents/Mac OS
    3/28/14 9:51:58.885 PM com.apple.launchd[1]: (com.logmein.logmeinguiagentatlogin[178]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    3/28/14 9:51:58.885 PM com.apple.launchd[1]: (com.logmein.logmeinguiagentatlogin[178]) Job failed to exec(3) for weird reason: 2
    3/28/14 9:51:58.922 PM launchctl[171]: com.apple.findmymacmessenger: Already loaded
    3/28/14 9:51:59.160 PM WindowServer[131]: Display 0x04271a80: Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    3/28/14 9:51:59.295 PM loginwindow[45]: Login Window Started Security Agent
    3/28/14 9:51:59.555 PM SecurityAgent[182]: This is the first run
    3/28/14 9:51:59.556 PM SecurityAgent[182]: MacBuddy was run = 0
    3/28/14 9:51:59.581 PM WindowServer[131]: Display 0x04271a80: Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    3/28/14 9:51:59.592 PM SecurityAgent[182]: User info context values set for carlosjuliofonrodona
    3/28/14 9:51:59.707 PM com.apple.SecurityServer[17]: Session 100005 created
    3/28/14 9:52:00.002 PM UserEventAgent[173]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    3/28/14 9:52:00.144 PM loginwindow[45]: Login Window - Returned from Security Agent
    3/28/14 9:52:00.241 PM loginwindow[45]: USER_PROCESS: 45 console
    3/28/14 9:52:00.000 PM kernel[0]: AppleKeyStore:Sending lock change 0
    3/28/14 9:52:00.566 PM com.apple.launchd.peruser.501[184]: Background: Aqua: Registering new GUI session.
    3/28/14 9:52:00.651 PM com.apple.launchd.peruser.501[184]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    3/28/14 9:52:00.653 PM com.apple.launchd.peruser.501[184]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    3/28/14 9:52:00.658 PM launchctl[187]: com.apple.pluginkit.pkd: Already loaded
    3/28/14 9:52:00.659 PM launchctl[187]: com.apple.sbd: Already loaded
    3/28/14 9:52:00.731 PM distnoted[189]: # distnote server agent  absolute time: 57.602293268   civil time: Fri Mar 28 21:52:00 2014   pid: 189 uid: 501  root: no
    3/28/14 9:52:01.023 PM WindowServer[131]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    3/28/14 9:52:01.400 PM WindowServer[131]: Display 0x04271a80: Unit 0; ColorProfile { 3, "Generic RGB Profile"}; TransferFormula (1.000000, 1.000000, 1.000000)
    3/28/14 9:52:02.045 PM UserEventAgent[188]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    3/28/14 9:52:03.226 PM com.apple.time[188]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    3/28/14 9:52:03.368 PM com.apple.SecurityServer[17]: Session 100007 created
    3/28/14 9:52:03.486 PM xpcproxy[208]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    3/28/14 9:52:05.008 PM xpcproxy[211]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    3/28/14 9:52:05.806 PM CalendarAgent[202]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=CoreDAVHTTPStatusErrorDomain Code=401 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 401.)" UserInfo=0x7fc959848fc0 {AccountName=Gmail, CalDAVErrFromRefresh=YES, CoreDAVHTTPHeaders=<CFBasicHash 0x7fc958754540 [0x10e588f00]>{type = immutable dict, count = 12,
    entries =>
              0 : Content-Type = <CFString 0x7fc958711fd0 [0x10e588f00]>{contents = "application/vnd.google.gdata.error+xml; charset=UTF-8"}
              4 : Alternate-Protocol = <CFString 0x7fc958741df0 [0x10e588f00]>{contents = "443:quic"}
              5 : Content-Encoding = <CFString 0x7fc958789c50 [0x10e588f00]>{contents = "gzip"}
              6 : Server = <CFString 0x7fc9584c91d0 [0x10e588f00]>{contents = "GSE"}
              7 : X-XSS-Protection = <CFString 0x7fc958736750 [0x10e588f00]>{contents = "1; mode=block"}
              8 : Expires = <CFString 0x7fc95875bef0 [0x10e588f00]>{contents = "Sat, 29 Mar 2014 01:52:05 GMT"}
              12 : Cache-Control = <CFString 0x7fc95878bfc0 [0x10e588f00]>{contents = "private, max-age=0"}
              13 : Date = <CFString 0x7fc95873f240 [0x10e588f00]>{contents = "Sat, 29 Mar 2014 01:52:05 GMT"}
              15 : Content-Length = <CFString 0x7fc9584d3ea0 [0x10e588f00]>{contents = "210"}
              19 : X-Content-Type-Options = <CFString 0x7fc958710280 [0x10e588f00]>{contents = "nosniff"}
              21 : X-Frame-Options = <CFString 0x7fc958733e90 [0x10e588f00]>{contents = "SAMEORIGIN"}
              22 : Www-Authenticate = <CFString 0x7fc958740410 [0x10e588f00]>{contents = "GoogleLogin realm="https://accounts.google.com/ClientLogin", service="cl""}
    3/28/14 9:52:05.812 PM CalendarAgent[202]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7fc9584c3b90; Sequence: 0>] to failed operations.]
    3/28/14 9:52:05.957 PM CalendarAgent[202]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVRefreshDelegateListQueueableOperation: 0x7fc9584b7cb0; Sequence: 0>] to failed operations.]
    3/28/14 9:52:15.000 PM kernel[0]: jnl: disk1s2: replay_journal: from: 82610176 to: 83603968 (joffset 0x1d1c000)
    3/28/14 9:52:15.000 PM kernel[0]: jnl: disk1s2: journal replay done.
    3/28/14 9:52:15.942 PM mds[41]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    3/28/14 9:52:15.000 PM kernel[0]: hfs: mounted My Passport on device disk1s2
    3/28/14 9:52:16.208 PM fseventsd[52]: event logs in /Volumes/My Passport/.fseventsd out of sync with volume.  destroying old logs. (914 1 2411)
    3/28/14 9:52:16.587 PM WindowServer[131]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    3/28/14 9:52:16.845 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    3/28/14 9:52:16.846 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    3/28/14 9:52:16.848 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    3/28/14 9:52:16.849 PM com.apple.audio.DriverHelper[238]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    3/28/14 9:52:16.954 PM sharingd[236]: Starting Up...
    3/28/14 9:52:17.006 PM revisiond[36]: objc[36]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    3/28/14 9:52:17.185 PM com.apple.audio.DriverHelper[238]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    3/28/14 9:52:17.185 PM com.apple.audio.DriverHelper[238]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    3/28/14 9:52:17.186 PM com.apple.audio.DriverHelper[238]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    3/28/14 9:52:18.221 PM fseventsd[52]: log dir: /Volumes/My Passport/.fseventsd getting new uuid: A686B0CD-3F62-48A1-86F7-326846F9427D
    3/28/14 9:52:18.596 PM com.apple.SecurityServer[17]: Session 100010 created
    3/28/14 9:52:18.653 PM com.apple.IconServicesAgent[251]: IconServicesAgent launched.
    3/28/14 9:52:19.007 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.007 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.007 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.008 PM Finder[220]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.013 PM WindowServer[131]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 3.43 seconds (server forcibly re-enabled them after 1.00 seconds)
    3/28/14 9:52:19.079 PM SystemUIServer[219]: Cannot find executable for CFBundle 0x7fcc5345e9a0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    3/28/14 9:52:19.240 PM com.apple.IconServicesAgent[251]: Failed to mmap file. The file has zero length.
    3/28/14 9:52:19.354 PM SystemUIServer[219]: Cannot find executable for CFBundle 0x7fcc53489b30 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    3/28/14 9:52:19.850 PM com.apple.SecurityServer[17]: Session 100006 created
    3/28/14 9:52:20.491 PM accountsd[255]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    3/28/14 9:52:20.596 PM WindowServer[131]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    3/28/14 9:52:21.900 PM WindowServer[131]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.30 seconds (server forcibly re-enabled them after 1.00 seconds)
    3/28/14 9:52:23.923 PM WindowServer[131]: disable_update_timeout: UI updates were forcibly disabled by application "Activity Monitor" for over 1.00 seconds. Server has re-enabled them.
    3/28/14 9:52:23.948 PM com.apple.time[188]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    3/28/14 9:52:25.251 PM com.apple.time[188]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    3/28/14 9:52:25.369 PM com.apple.IconServicesAgent[251]: main Failed to composit image for binding VariantBinding [0x273] flags: 0x8 binding: FileInfoBinding [0x171] - extension: doc, UTI: com.microsoft.word.doc, fileType: ????.
    3/28/14 9:52:25.371 PM quicklookd[257]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: doc, UTI: com.microsoft.word.doc, fileType: ???? request size:128 scale: 1
    3/28/14 9:52:25.994 PM com.apple.IconServicesAgent[251]: main Failed to composit image for binding VariantBinding [0x275] flags: 0x8 binding: FileInfoBinding [0x34d] - extension: mp4, UTI: public.mpeg-4, fileType: ????.
    3/28/14 9:52:25.996 PM quicklookd[257]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: mp4, UTI: public.mpeg-4, fileType: ???? request size:128 scale: 1
    3/28/14 9:52:26.191 PM com.apple.NotesMigratorService[263]: Joined Aqua audit session
    3/28/14 9:52:26.219 PM com.apple.internetaccounts[208]: An instance 0x7fa88a7b1de0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa88a7b1f00> (
    <NSKeyValueObservance 0x7fa88a7b1e90: Observer: 0x7fa88a77ffd0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x114fcb43b, Property: 0x7fa88a715c60>
    3/28/14 9:52:26.232 PM com.apple.internetaccounts[208]: An instance 0x7fa88a7ae2e0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa88a7ae500> (
    <NSKeyValueObservance 0x7fa88a7ae390: Observer: 0x7fa88a7afd40, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x114fcb43b, Property: 0x7fa88a715c60>
    3/28/14 9:52:26.245 PM com.apple.internetaccounts[208]: An instance 0x7fa88a7a0970 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa88a7a0b00> (
    <NSKeyValueObservance 0x7fa88a7a0a20: Observer: 0x7fa88a7ad3e0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x114fcb43b, Property: 0x7fa88a715c60>
    3/28/14 9:52:26.258 PM com.apple.internetaccounts[208]: An instance 0x7fa88a759c30 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa88a759d50> (
    <NSKeyValueObservance 0x7fa88a759ce0: Observer: 0x7fa88a722470, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x114fcb43b, Property: 0x7fa88a715c60>
    3/28/14 9:52:26.957 PM WindowServer[131]: common_reenable_update: UI updates were finally reenabled by application "Activity Monitor" after 4.03 seconds (server forcibly re-enabled them after 1.00 seconds)
    3/28/14 9:52:34.307 PM WindowServer[131]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    3/28/14 9:52:35.644 PM com.apple.launchd.peruser.501[184]: (com.logmein.logmeinguiagent[281]) Job specified non-existent working directory: /Library/Application Support/LogMeIn/bin/LogMeIn.app/Contents/Resources/LMIGUIAgent.app/Contents/Mac OS
    3/28/14 9:52:35.674 PM com.apple.launchd.peruser.501[184]: (com.logmein.logmeingui[282]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    3/28/14 9:52:35.675 PM com.apple.launchd.peruser.501[184]: (com.logmein.logmeingui[282]) Job failed to exec(3) for weird reason: 2
    3/28/14 9:52:35.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=286[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    3/28/14 9:52:35.695 PM com.apple.launchd.peruser.501[184]: (com.logmein.logmeinguiagent[281]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    3/28/14 9:52:35.695 PM com.apple.launchd.peruser.501[184]: (com.logmein.logmeinguiagent[281]) Job failed to exec(3) for weird reason: 2
    3/28/14 9:52:35.704 PM com.apple.launchd.peruser.501[184]: (com.wdc.wdquickview.39984[290]) Spawned and waiting for the debugger to attach before continuing...
    3/28/14 9:52:35.726 PM com.apple.launchd.peruser.501[184]: (com.apple.iTunesHelper.39632[291]) Spawned and waiting for the debugger to attach before continuing...
    3/28/14 9:52:35.744 PM com.apple.launchd.peruser.501[184]: (com.runningwithcrayons.Alfred-2.25728[292]) Spawned and waiting for the debugger to attach before continuing...
    3/28/14 9:52:35.761 PM com.apple.launchd.peruser.501[184]: (com.SiberSystems.RoboFormIcon.39808[293]) Spawned and waiting for the debugger to attach before continuing...
    3/28/14 9:52:38.176 PM RoboFormIcon[293]: 10.4-style NSDateFormatter method called on a 10.0-style formatter, which doesn't work. Break on _NSDateFormatter_Log_New_Methods_On_Old_Formatters to debug. This message will only be logged once.
    3/28/14 9:52:38.329 PM WindowServer[131]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 5.02 seconds (server forcibly re-enabled them after 1.00 seconds)
    3/28/14 9:52:38.527 PM com.apple.SecurityServer[17]: Session 100013 created
    3/28/14 9:52:38.709 PM com.apple.launchd.peruser.501[184]: (com.hyperlync.verizon.backupAssistantPlus.vCastBackupSchedulerapp.pkg[285]) Exited with code: 255
    3/28/14 9:52:38.932 PM WiFiKeychainProxy[271]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    3/28/14 9:52:38.933 PM WiFiKeychainProxy[271]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    3/28/14 9:52:39.078 PM Memory Clean[300]: This app has been run 19 times
    3/28/14 9:52:39.532 PM accountsd[255]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (421A6E3B-2400-4024-B732-A35F7A907C29) could not be found!
    3/28/14 9:52:39.532 PM accountsd[255]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    3/28/14 9:52:40.141 PM System Events[303]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    3/28/14 9:52:40.146 PM System Events[303]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID refer

Maybe you are looking for