Date/Time messing up

I'm on a MacBook Pro and have opened up iPhoto (iLife '09). When I try to change the date of a video, I enter in the correct time and date and hit ok. But, it goes backwards. I've tried to redo it several times and my movies say that they were made in the 1500s. HELP!!!!

In brief:
We need to distinguish between the File and the Photograph that's contained within it.
When your camera takes a photo it makes a file. Inside this file is the data (i.e the picture) but also Metadata - this is the Exif information - date and time, camera make and model, lens settings, aperture and many other pieces of information.
The Finder does not know about this metadata, only the standard file stuff, so it will display the information it reads - when the file was created, which is not necessarily the same as when the photograph was taken.
Photo apps read the Exif data and display accordingly.
However, as your images are scanned you have a separate problem. Almost no scanner creates Exif data so iPhoto has nowhere to write the date and time to, I'm afraid.
Regards
TD

Similar Messages

  • HT204570 Photos how to fix messed up metadata (geolocation/date & time)

    Since I migrated my Photolibrary to iCloud Photo Library, information on my photos, such as geolocation and date have been messed up.
    The original date & time is set off by a random amount of time, (months even) and the geolocation data seems to have been altered. (Miles off)
    How can I restore the original data or fix the fotos?
    Tia
    Bart

    If the date shift is the same for all selected photos using the Image ➙ Adjust Date and Time menu option
    you can batch adjust the time for all photos:

  • Is there any danger in setting the system date/time to a prior date?

    We are dealing with some software digital certificate expiration issues.  Until the developer gets them fixed, the only way we can use the software is to set the date/time preferences to a date before the certificate expired.  Some users are concerned that this will spell catastrophe for their systems because Unix/Linux based things don't like haivng their dates messed with.  I maintain that the only things that would be affected are the date/time stamp on files they save while the settings are changed, possibly any iCal events created during the change (which can be overwritten by the user), and that if they use Time Machine the backups might not be dated correctly (and for that reason I've suggested they shut Time Machine off while their date is changed).  I just don't believe it will lead to massive system failure.  Who is correct?

    Yes you will have issus with DHCP leases/Internet and your router if your time and date isn't current.
    Offline you can do what you want. Better to get a temporary workaround from the developer to hold you over.

  • IPhoto Batch Date/Time change Suggestion

    I recently traveled overseas with my family to a time zone that was +4:30 from my current location. During our trip I took 800+ photographs from my digital camera, 60+ from my iPhone and lots of video from my camcorder. It didn't occur to me until I got back home that not only did I not set the digital and camcorder to the local time where I was vacationing but also my digital camera had somehow been set 2-days back but with the correct home time. So it was actually 2days 4hours and 30minutes behind the time that it should have been. My iPhone photographs were fine because I set it to the local time as soon as I landed there.
    Once I synced my camera & phone photographs I realized my problem as my entire vacation was in a jumbled mess. So then I went through the photographs and split the digital camera and iPhone photographs into 2 albums which was not too hard. Thereafter, I went through the digital camera photographs and adjusted the date/time stamp. Some of them I could do in batches, which is not very easy as you need to look at the current date/time stamp, then select the photographs you want to change and then do the math before making the change. The most of it I had to do individually to make sure they wouldn't get jumbled with the iPhone photographs I had taken. So to say the least, to adjust 800+ photographs took a long time and a lot of effort.
    My suggestion is a simple batch change like what is available already, but with the option to advance or regress the date/time stamp letting the system use the current date/time stamp.

    That command is the adjust time/date command - not the batch change command
    Adjust T/D takes a group of selected photos and applies a constant delta to them thereby correcting for camera setting errors or time zone issues
    Also note that this is a user to user support forum not a path to Apple - it is a great plce for questions about how iPhoto works - it is an extremely poor place to make requests for changes since there is no one here who can do that.
    LN

  • Date/Time Field but not a date field type..

    I am dealing with a table that was already created and filled/filling with data.. so don't have an option to have someone go back and fix.
    The field i am dealing with is a varchar2 not a date field.
    it has values like
    12/31/1899
    2/17/2010 10:00:00 AM
    2/24/2010 9:00:00 AM
    2/17/2010 8:30:00 AM
    2/24/2010 9:00:00 AM
    12/31/1899
    Basically the 12/31/1899 dates are supplied the data source as an indicator that the real date/time is unknown until it gets updated later in the day or next day. (why its like this i don't know)
    anyways.. I need to drop records that are 7 days old.
    So for say the 2/17/2010 ones, when its 2/24/2010 when the process is ran, those records will get deleted but with the '12/31/1899' ones staying as they are awaiting to be given a date/time '12/31/1899' date is always used for the 'unknowns' so that is constant. The other 'valid ones' always have a date and a time given.
    I've tried a few things today, but kept blowing up.
    Edited by: CPSteven on Feb 11, 2010 6:04 PM

    >
    ORA-01830: date format picture ends before converting entire input string
    With that command
    The time in their messing with it?
    >
    You'd have that problem if the date format picture ends before any of your your strings end....
    Eg.. your date field has "time component" and you just use... "DD-MON-YYYY" as the format picture.
    However, If your format picture includes the maximum possible detail (of any of your strings) , you'll not see that error. Check this code below.
    sql> select * from temp;
            ID DATE_STRING
             1 02/11/2010 03:10:26
             2 02/10/2010 03:10:26
             3 02/09/2010 03:10:26
             4 02/08/2010 03:10:26
             5 02/07/2010 03:10:26
             6 02/06/2010 03:10:26
             7 02/05/2010 03:10:26
             8 02/04/2010 03:10:26
             9 02/03/2010 03:10:26
            10 02/02/2010 03:10:26
            11 12/31/1899
            ID DATE_STRING
            12 12/31/1899
    12 rows selected.
    sql> delete from temp
      2  where date_string != '12/31/1899'
      3    and to_date(date_string,'MM/DD/YYYY') < (sysdate-7);
      and to_date(date_string,'MM/DD/YYYY') < (sysdate-7)
    ERROR at line 3:
    ORA-01830: date format picture ends before converting entire input string
    sql> delete from temp
      2    where date_string != '12/31/1899'
      3      and to_date(date_string,'MM/DD/YYYY HH24:MI:SS') < (sysdate-7);
    4 rows deleted.
    ----In your case.. your format mask would be to_date(date_string,'MM/DD/YYYY HH:MI:SS AM')

  • BUG: LR 2.1 adjusts date/time back 1 hour

    I'm really really annoyed. When I import images into LR 2.1, it changes the date/time of the image back by 1 hour - I assume its changing to standard time from daylight savings time. Why is this done? There doesn't seem to be a configuration option for this.

    "CR Henderson - 4:40pm Nov 23, 08 PST (#35 of 35)
    A work around that I have used since LR 1.0:
    1. Set camera time to GMT and leave it there.
    2. Take pictures and download them to PC hard drive.
    3. Convert to .DNG using DNG Converter
    4. Run ExifTool GUI on files and use XMP: DateTime copy from EXIF
    5. Import into LR
    #4 sets the XMP time to the EXIF time and removes the time zone offset, i.e. the XMP time is set to be the EXIF time with zero offset and since that is what I have my cameras set to things work out well. With the XMP time already set LR doesn't mess with it (or at least versions 1x-2.1 haven't).
    It is possible the above will work for other RAW files supported by ExifTool GUI. I know it does with the Canon CR2 files I use (30D, 40D)."
    Personally, having paid for the software, (it isn't freeware) I would like a FIX rather than a workaround. A little response from Adobe as to when it will be fixed would be appreciated, if it is not too much trouble?
    The last Date / Time issue required purchase of a new version, I hope this will not be a trend in LR. As others have pointed out just writing and reading the EXIF time is not rocket science. It is just a matter of trying to get the LR programmers to leave it alone (since the beta!) and not keep messing around with it. There has never been any explanation of what they were attempting to accomplish by modifying EXIF Date / Time?

  • Boss is gonna kill me. I Need help inserting a DATE/TIME into MSAccess

    Hello,
    I have spent way to long trying to figure out how to insert a date into the date/time field of a microsoft access database. Could someone please help me figure this out. I know there are a million previous posts about this topic and i looked through a bunch and none of them seem to work... i have tried so many different things. The code i am working (at this point in time.. since it has changed a million times) is:
                             String MYDATE = "yyyy-MM-dd hh:mm:ss a";
                             Date date = new Date();
                             String dateout = new SimpleDateFormat(MYDATE).format(date);
                             System.out.println(" the date is " + dateout);
    Timestamp timeStamp = new Timestamp(date.getTime());
    timeStamp.setNanos(0);
                             System.out.println(" the date is " + timeStamp);
                             String sql2 = "INSERT INTO DATE5 (stuff, date) VALUES ('hello', CVDATE(" + timeStamp + "))";
                             ProblemTrackingDB.DoUpdate(sql2);
                             sql2 = "INSERT INTO DATE5 (stuff, date) VALUES ('hello', '" + dateout + "')";
                             ProblemTrackingDB.DoUpdate(sql2);
    i have tried both of those ways and either work (ie... comment one out and try the other)
    i always get a " Syntax error in INSERT INTO statement" thrown
    i have also tried without the single quotes.
    Any help would Be MUCH appreciated as my boss is starting to get agrivated...
    thanks to anyone who helps,
    Jon

    Change your program to use a PreparedStatement to do this insert. You only need to create a PreparedStatement once, so in your constructor or initializer do this:PreparedStatement insert = connection.PrepareStatement("INSERT INTO DATE5 (stuff, date) VALUES (?, ?)");Then the code to write a record is this:Timestamp timeStamp = new Timestamp(date.getTime());
    timeStamp.setNanos(0);
    insert.setString(1, "hello");
    insert.setTimeStamp(2, timeStamp);
    insert.executeUpdate();That's all. You never need to mess about with formatting timestamps in the way your database needs them, the PreparedStatement takes care of all that for you.

  • How do I keep the date/time when exporting photos?

    When exporting photos from Photos.app on my Mac, it doesn't use the metadata that it displays in Photos--it uses the current date/time. So when I export a photo from 2010, it says it's dated 2015 when I import it into Aperture.
    Is there a way to export an image with its original timestamp? Is this a bug? Thanks.

    If you are editing tif files, then you have only a couple of choices.
    Flatten the image before you save it.  This will reduce it down to one layer. That's the smallest you can get.
    When you first open the image, look to see if it's 8 bit or 16 bit tif.  It won't help you, but if the image is 8 bit, and you save it as 16 bit, you will have dramatically increased the size of the file for nothing.  If it's started as 16, no worries!
    check if you are saving with compression.   Tif compression is lossless, so unless you did something like resize+resample, it remains the same bit density, etc, so should be just as printable as what they sent you (unless you messed up!).
    Cheers!

  • Touch date, time, 12/24 format scrambled on first sync after connect

    I've noticed the date/time/time format changing over the last few days, and I've narrowed it down to this: When I connect my Touch to Windows, that first auto-sync causes these settings to go haywire. If I manually sync again, they won't change. However if I unplug it and plug it in again, they will change, and there's no rhyme or reason to the change. This morning I plugged it in and the time on the screen changed before my eyes from 0804 to 10pm. Date was messed up too, off by several weeks, so this definitely isn't a "Region" problem. The last time I tested this, it got so confused (I was on the date/time settins page when I plugged it in) it switched the time to am/pm format but left the settings page saying 24hr format! Anyone encounter this. It certainly looks like it is behaving other than as designed. One more thing- I'm not sure about this, but I think it won't happen if iTunes is not running when I plug it in. that's what happened the last time I tried it, but my cable isn't with me right now to try it a few more times.

    Seeing the same problem here. Somewhat mitigated by not changing anything in the Time & Date settings (i.e. leaving the Time Zone to "Berlin" and not changing it to "Stockholm"), having 24-Hour time to "off" (time still shows in 24h format...?)
    Sad to see this behaviour on an Apple product...
    FWIW: My GF's iPod Classic (80GB) model has the same problem with 24h confusion, shows OK in menubar but screen saver is using AM/PM notation.

  • Date & Time freezes when loading

    I have been trying to adjust my settings for Date & Time after just updating to v.10.4.11 of Tiger. When I open Date & Time however, whether from the clock in the menu bar or from System Preferences, the Date & Time screen opens with a heading "Loading Date & Time" but soon thereafter, before I've done anything, I get the spinning beachball, the application stops responding, and I have to force a quit. I also notice that the lock icon in the lower-left corner of the screen (to click to permit changes) is not appearing.
    Has anyone encountered this and better yet solved it?

    hmmm... i've been a wimp, and i feared that removing the com.apple.systempreferences.plist might mess up with other preferences than just Date&Time -- i don't feel like configuring everything anew right now :-\. so what will my mac look like if i trash the syspref file?
    i've tried removing only the com.apple.MenuBarClock.plist, and that didn't solve anything, the control panel is still freezing

  • Date & Time doesn't open

    This just happened 1 or 2 weeks ago.
    I go to System Preferences > Date & Time, and it doesn't open.
    The quote below is the error.
    Please help me. Is this the right thread to ask?
    Where can I post this or report this?
    Process:         System Preferences [374]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214001000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [143]
    Date/Time:       2012-01-10 09:09:50.969 +0800
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          75782 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  340 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      43BADB68-D614-426B-8407-BE01E7CDB221
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000107e49000-0000000107e6c000 [  140K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preference.datetime v.5.0 (Date & Time)
    objc[374]: garbage collection is ON
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff89a837cc CFStringGetCString + 44
    1   com.apple.CoreFoundation                0x00007fff89b397df CFLocaleGetLanguageCharacterDirection + 47
    2   com.apple.AppKit                        0x00007fff8c787f93 -[NSDatePickerCell(NSTextFieldWithStepperDatePickerInternal) _createSubfields] + 258
    3   com.apple.AppKit                        0x00007fff8c785d1e -[NSDatePickerCell initWithCoder:] + 1874
    4   com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    5   com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    6   com.apple.AppKit                        0x00007fff8c50e591 -[NSControl initWithCoder:] + 761
    7   com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    8   com.apple.Foundation                    0x00007fff8931da4a -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1193
    9   com.apple.Foundation                    0x00007fff892f4530 -[NSArray(NSArray) initWithCoder:] + 486
    10  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    11  com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    12  com.apple.AppKit                        0x00007fff8c50b679 -[NSView initWithCoder:] + 1051
    13  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    14  com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    15  com.apple.AppKit                        0x00007fff8c50c9dc -[NSResponder initWithCoder:] + 114
    16  com.apple.AppKit                        0x00007fff8c50b2c0 -[NSView initWithCoder:] + 98
    17  com.apple.AppKit                        0x00007fff8c50e2cc -[NSControl initWithCoder:] + 52
    18  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    19  com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    20  com.apple.AppKit                        0x00007fff8c40effe -[NSNibConnector initWithCoder:] + 401
    21  com.apple.AppKit                        0x00007fff8c416a60 -[NSNibOutletConnector initWithCoder:] + 367
    22  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    23  com.apple.Foundation                    0x00007fff8931da4a -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1193
    24  com.apple.Foundation                    0x00007fff892f4530 -[NSArray(NSArray) initWithCoder:] + 486
    25  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    26  com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    27  com.apple.AppKit                        0x00007fff8c40de66 -[NSIBObjectData initWithCoder:] + 2156
    28  com.apple.Foundation                    0x00007fff8931c86b _decodeObjectBinary + 2860
    29  com.apple.Foundation                    0x00007fff8931bb86 _decodeObject + 201
    30  com.apple.AppKit                        0x00007fff8c40d4d8 loadNib + 235
    31  com.apple.AppKit                        0x00007fff8c40ca28 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    32  com.apple.AppKit                        0x00007fff8c40c943 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    33  com.apple.frameworks.preferencepanes          0x00007fff8e439fc4 -[NSPreferencePane loadMainView] + 154
    34  com.apple.frameworks.preferencepanes          0x00007fff8e43af14 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    35  com.apple.frameworks.preferencepanes          0x00007fff8e440c46 -[NSPrefTabsController layoutForTabViewItem:] + 78
    36  com.apple.frameworks.preferencepanes          0x00007fff8e441244 -[NSPrefTabsController setPrefs:lastSelected:] + 829
    37  com.apple.preference.datetime           0x000000010815162d 0x108150000 + 5677
    38  com.apple.frameworks.preferencepanes          0x00007fff8e43a002 -[NSPreferencePane loadMainView] + 216
    39  com.apple.frameworks.preferencepanes          0x00007fff8e43af14 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    40  com.apple.systempreferences             0x0000000107e51988 0x107e49000 + 35208
    41  com.apple.systempreferences             0x0000000107e50fbe 0x107e49000 + 32702
    42  com.apple.Foundation                    0x00007fff892e825a __NSFireDelayedPerform + 392
    43  com.apple.CoreFoundation                0x00007fff89a9ef84 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    44  com.apple.CoreFoundation                0x00007fff89a9ead6 __CFRunLoopDoTimer + 534
    45  com.apple.CoreFoundation                0x00007fff89a7f471 __CFRunLoopRun + 1617
    46  com.apple.CoreFoundation                0x00007fff89a7eae6 CFRunLoopRunSpecific + 230
    47  com.apple.HIToolbox                     0x00007fff938583d3 RunCurrentEventLoopInMode + 277
    48  com.apple.HIToolbox                     0x00007fff9385f58f ReceiveNextEventCommon + 181
    49  com.apple.HIToolbox                     0x00007fff9385f4ca BlockUntilNextEventMatchingListInMode + 62
    50  com.apple.AppKit                        0x00007fff8c4053f1 _DPSNextEvent + 659
    51  com.apple.AppKit                        0x00007fff8c404cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    52  com.apple.AppKit                        0x00007fff8c40162d -[NSApplication run] + 470
    53  com.apple.AppKit                        0x00007fff8c68080c NSApplicationMain + 867
    54  com.apple.systempreferences             0x0000000107e4adbc 0x107e49000 + 7612
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff93bbb7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8c2785be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8c27714e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff93bbb192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a880594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8a881b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x2212fb16e48bd8d4  rbx: 0x0000000000000600  rcx: 0x0000000000000600  rdx: 0x0000000000000101
      rdi: 0x0000000000000000  rsi: 0x00007fff67a44857  rbp: 0x00007fff67a44840  rsp: 0x00007fff67a447e0
       r8: 0x0000000400311970   r9: 0x0000000400480d80  r10: 0x0000000000000081  r11: 0x00007fff89b86ea0
      r12: 0x00007fff798f6710  r13: 0x00007fff798f6710  r14: 0x00007fff67a44857  r15: 0x0000000000000000
      rip: 0x00007fff89a837cc  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU: 2
    Binary Images:
           0x107e49000 -        0x107e6bfff  com.apple.systempreferences (11.0 - 11.0) <50027251-BB22-3472-ADCE-90253DC46B60> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10814a000 -        0x10814affd +cl_kernels (??? - ???) <171D5E5D-6B0F-4816-AD3D-DE930323A98F> cl_kernels
           0x10814e000 -        0x10814eff1 +cl_kernels (??? - ???) <FA71E1BF-36BE-460E-B216-F38A8E34A0D9> cl_kernels
           0x108150000 -        0x108151fff  com.apple.preference.datetime (5.0 - 5.0) <27A2A5FD-8BC4-320F-A4C3-65B30CD8BB10> /System/Library/PreferencePanes/DateAndTime.prefPane/Contents/MacOS/DateAndTime
           0x10815a000 -        0x10815efff  com.apple.preference.datetime.datetime (5.0 - 5.0) <B079BAAB-D7B5-3D6B-8953-E1779B8A2C42> /System/Library/PreferencePanes/DateAndTime.prefPane/Contents/Resources/DateTim e.prefPane/Contents/MacOS/DateTime
           0x10b212000 -        0x10b215ff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10b529000 -        0x10b52ffef  libcldcpuengine.dylib (1.50.63 - compatibility 1.0.0) <282BF919-0346-385F-B399-9019E681DF38> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10b536000 -        0x10b536ffd +cl_kernels (??? - ???) <B8225D63-E3B4-43E9-90D7-16A3F4940BBE> cl_kernels
           0x10b53c000 -        0x10b53dff3 +cl_kernels (??? - ???) <BC5B7433-B387-42FD-BD78-D8A3B45FA096> cl_kernels
           0x10b570000 -        0x10b574fff  com.apple.audio.AudioIPCPlugIn (1.2.1 - 1.2.1) <46DBC886-A984-36F8-BAC6-CFBAED880258> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x10b579000 -        0x10b57ffff  com.apple.audio.AppleHDAHALPlugIn (2.1.3 - 2.1.3f7) <25F21980-C114-3688-B6E7-FD83052D67B1> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10ba30000 -        0x10bac3ff7  unorm8_bgra.dylib (1.50.63 - compatibility 1.0.0) <35664BCC-4DCD-38B9-A17D-12A2DB77DCB8> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10bae2000 -        0x10bb73ff7  unorm8_rgba.dylib (1.50.63 - compatibility 1.0.0) <DD200456-247B-3C6D-9C7E-81546BFE4BF2> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
        0x7fff67a49000 -     0x7fff67a7dac7  dyld (195.5 - ???) <B372EB7D-DCD8-30CE-9342-E06CADD7CACA> /usr/lib/dyld
        0x7fff89163000 -     0x7fff89171ff7  libkxld.dylib (??? - ???) <B1BD4862-9D3F-3EEF-895C-A8E2E53684B6> /usr/lib/system/libkxld.dylib
        0x7fff8926f000 -     0x7fff892aafff  com.apple.LDAPFramework (3.1 - 120.2) <5633BDE9-BDCB-35CC-BC6B-B8E4CD011D51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff892ab000 -     0x7fff892d2ff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff892dc000 -     0x7fff895f5ff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff895f6000 -     0x7fff896f0ff7  com.apple.DiskImagesFramework (10.7.2 - 331) <C88025FC-2460-3F33-B808-CB1E8C2E5CB9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff896f1000 -     0x7fff89744fff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89745000 -     0x7fff8985dff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8985e000 -     0x7fff89887fff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff898cf000 -     0x7fff89937ff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89977000 -     0x7fff89a3eff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff89a46000 -     0x7fff89c1afff  com.apple.CoreFoundation (6.7.1 - 635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff89c1b000 -     0x7fff89c5bff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff89c92000 -     0x7fff89c92fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff89c93000 -     0x7fff89e95fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff89f41000 -     0x7fff89f82fff  com.apple.QD (3.12 - ???) <983D6E1E-B8BD-3260-A960-13727351D867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89f96000 -     0x7fff89fb3ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
        0x7fff89fd1000 -     0x7fff8a004ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a0a6000 -     0x7fff8a0f1ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a0f2000 -     0x7fff8a0f9ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8a177000 -     0x7fff8a279ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff8a27a000 -     0x7fff8a291fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8a292000 -     0x7fff8a2f4fff  com.apple.coreui (1.2.1 - 164.1) <F7972630-F696-3FC5-9FCF-A6E1C8771078> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a2f5000 -     0x7fff8a722fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a723000 -     0x7fff8a7b9ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8a7ba000 -     0x7fff8a81efff  com.apple.Symbolication (1.2 - 83.1) <A7E088DE-BC16-3C24-A0D0-30EEBA221659> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8a81f000 -     0x7fff8a81ffff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a830000 -     0x7fff8a90dfef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff8aa13000 -     0x7fff8aa14fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8aa62000 -     0x7fff8aa6bff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b0b0000 -     0x7fff8b10bff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b10c000 -     0x7fff8b10cfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8b10d000 -     0x7fff8b13dfff  com.apple.framework.Admin (11.0 - 11.0) <C72B49AD-9114-328D-A0FE-AE97111D0A78> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8b2aa000 -     0x7fff8b2abfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8b2ac000 -     0x7fff8b2d9ff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8b2da000 -     0x7fff8b2dffff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8b2e0000 -     0x7fff8b2f2ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8b2f3000 -     0x7fff8b319ff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b31a000 -     0x7fff8b353fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8b354000 -     0x7fff8b62cff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b8a9000 -     0x7fff8b9b6fff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8bb4e000 -     0x7fff8bba0ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8bfbe000 -     0x7fff8bfbffff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <37FEFE78-BCB5-37EC-8E99-747469BCA4C7> /usr/lib/system/libdnsinfo.dylib
        0x7fff8c022000 -     0x7fff8c02efff  com.apple.DirectoryService.Framework (10.7 - 146) <BB0240B0-69F7-38FA-A8D8-9C0079F8613F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8c044000 -     0x7fff8c049fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8c275000 -     0x7fff8c283fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff8c288000 -     0x7fff8c29aff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8c29b000 -     0x7fff8c2b1fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8c2da000 -     0x7fff8c307fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff8c308000 -     0x7fff8c31aff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8c31d000 -     0x7fff8c341ff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c3fc000 -     0x7fff8cffdff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8cffe000 -     0x7fff8cffffff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8d000000 -     0x7fff8d000fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8d001000 -     0x7fff8d03bfef  com.apple.DebugSymbols (2.1 - 85) <F45985E2-D1D0-3F47-861E-47904837B76F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d051000 -     0x7fff8d051fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8d052000 -     0x7fff8d519fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d577000 -     0x7fff8d584fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <2DCDCCA3-F1BF-3143-A243-83973F93C95C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8d585000 -     0x7fff8d588ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8d589000 -     0x7fff8d695fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d698000 -     0x7fff8d6a7ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d6c1000 -     0x7fff8d6c3fff  com.apple.EFILogin (1.0 - 1) <E806D2EA-BD93-302E-8F2C-6D33AE26E1BC> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8d6ee000 -     0x7fff8d6f0fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8dfa0000 -     0x7fff8e044fff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8e045000 -     0x7fff8e0e7ff7  com.apple.securityfoundation (5.0 - 55005) <2814D17E-E6BB-30A2-A62E-2D481AF514F2> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e0e8000 -     0x7fff8e13dfff  libCoreStorage.dylib (??? - ???) <BDF64435-2C7F-3127-8F41-E9A86FF943DA> /usr/lib/libCoreStorage.dylib
        0x7fff8e13e000 -     0x7fff8e1aefff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8e1af000 -     0x7fff8e1affff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8e1b0000 -     0x7fff8e1b4fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8e1d1000 -     0x7fff8e2b5def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff8e2b6000 -     0x7fff8e2e1ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
        0x7fff8e2e2000 -     0x7fff8e365fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8e366000 -     0x7fff8e3c6fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e3c7000 -     0x7fff8e435fff  com.apple.CoreSymbolication (2.1 - 66) <7CF9EF4A-262A-3009-8D42-A76F5614E372> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8e436000 -     0x7fff8e453fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <ABF4E917-A452-3B86-B071-948F4B6A3CD3> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8e454000 -     0x7fff8e507fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8e508000 -     0x7fff8e50ffff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <24F11710-FFA4-3324-ACBE-961B518D2780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8e5c0000 -     0x7fff8e5c1ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e5c2000 -     0x7fff8e5deff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e5df000 -     0x7fff8e745fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e77d000 -     0x7fff8e77fff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8e780000 -     0x7fff8e786fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8e787000 -     0x7fff8ec1bfff  com.apple.RawCamera.bundle (3.9.0 - 584) <CB295E3D-6E52-4E53-D553-A7C5FF960C01> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8ed05000 -     0x7fff8ed1afff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ef34000 -     0x7fff8ef6fff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
        0x7fff8ef70000 -     0x7fff8f554fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8f557000 -     0x7fff8f56aff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8f56b000 -     0x7fff8f649ff7  com.apple.DiscRecording (6.0 - 6000.4.1) <644A30D5-30EA-3681-A59C-6F0C3CC7A3C7> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8f64a000 -     0x7fff8f67ffff  com.apple.securityinterface (5.0 - 55004) <CFB4A542-7297-3159-8229-A5815EFE0EF5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8f680000 -     0x7fff8f681ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <001E87FF-97DF-328D-B22F-16E3ACEF8864> /usr/lib/system/libremovefile.dylib
        0x7fff8f682000 -     0x7fff8f785fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff8f786000 -     0x7fff8f7affff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f7b0000 -     0x7fff8fec3587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8fec4000 -     0x7fff8ff37fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8ffcb000 -     0x7fff8ffcefff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8ffcf000 -     0x7fff8ffecfff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff9011a000 -     0x7fff9011bfff  libodfde.dylib (??? - ???) <9725455E-BA0B-3371-8570-CFE50D3BDA84> /usr/lib/libodfde.dylib
        0x7fff90193000 -     0x7fff90194fff  libsystem_sandbox.dylib (??? - ???) <DC97E52F-C577-3A8A-A2F6-431AE3D40C40> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff905bf000 -     0x7fff905d6fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90830000 -     0x7fff90969fef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff9096b000 -     0x7fff909afff7  com.apple.MediaKit (11.0 - 585) <5672F5E1-B8DC-3B69-A8BE-E6A938E28B62> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff909b0000 -     0x7fff909d8ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff909d9000 -     0x7fff90abafff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff90b6d000 -     0x7fff90b6dfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff90b6e000 -     0x7fff90be3ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff90be4000 -     0x7fff90c23ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff90e93000 -     0x7fff90ee1fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff90ee6000 -     0x7fff90ef1ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff90ef2000 -     0x7fff91091fff  com.apple.QuartzCore (1.7 - 270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff91092000 -     0x7fff910a6ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff910a7000 -     0x7fff910eaff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <81435CC2-91BD-36E8-AF94-57D084293675> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff910eb000 -     0x7fff910f1fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff911a5000 -     0x7fff911c2ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff911c3000 -     0x7fff911c4fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff911c5000 -     0x7fff911c9fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff911d8000 -     0x7fff911ddfff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff911de000 -     0x7fff911e0fff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9168c000 -     0x7fff91699ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff9169a000 -     0x7fff916a4ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff916a5000 -     0x7fff916d5ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff91e43000 -     0x7fff91e49fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff91e52000 -     0x7fff91fabfff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff91fac000 -     0x7fff91facfff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff91fad000 -     0x7fff91fb3fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff91fb4000 -     0x7fff91fbfff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9807F306-4081-34DA-9970-83A136E1E53F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff920b1000 -     0x7fff921b6ff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff921b7000 -     0x7fff921c2fff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff92eea000 -     0x7fff92f09fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff92f96000 -     0x7fff92f9afff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff92f9b000 -     0x7fff93005fff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff93006000 -     0x7fff9305dfff  libTIFF.dylib (??? - ???) <FF0D9A24-6956-3F03-81EA-3EEAD22C9DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9305e000 -     0x7fff930b2ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff930b3000 -     0x7fff930b6fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff930b7000 -     0x7fff930bdff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff93853000 -     0x7fff93855fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff93856000 -     0x7fff93b7afff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff93b9b000 -     0x7fff93ba3fff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff93ba4000 -     0x7fff93bc4fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
        0x7fff93bc5000 -     0x7fff93bc9ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff93bca000 -     0x7fff93de4fef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff93de5000 -     0x7fff93de5fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff93de6000 -     0x7fff93e25fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff93e26000 -     0x7fff93e4afff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff93e4b000 -     0x7fff94167ff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff94168000 -     0x7fff9425dfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff946f2000 -     0x7fff946f6fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <36F75773-7380-3AC7-AF62-E1E6C07B7004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff946f7000 -     0x7fff946fafff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff946fb000 -     0x7fff94702fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff94703000 -     0x7fff94708fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff94709000 -     0x7fff947e7fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff94b29000 -     0x7fff94b30fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff94b31000 -     0x7fff94b36fff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff95272000 -     0x7fff952edff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff952ee000 -     0x7fff95561fff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff95593000 -     0x7fff95617ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <FE629F2D-6BC0-3A58-9844-D8B9A6808A00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff95725000 -     0x7fff9576bff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EAF61ADC-DC00-34CE-B23E-7238ED54E31D> /usr/lib/libcurl.4.dylib
        0x7fff9576c000 -     0x7fff9577afff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9577b000 -     0x7fff95815ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff95822000 -     0x7fff958a7ff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff958a8000 -     0x7fff95947fff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff95948000 -     0x7fff9595eff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9596f000 -     0x7fff9597aff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff9597b000 -     0x7fff959bdff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff959be000 -     0x7fff959c3ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff95d14000 -     0x7fff95d1efff  libcsfde.dylib (??? - ???) <49DD8C85-A3F9-36FB-BB63-ECAD4ABD8AF9> /usr/lib/libcsfde.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 5
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 495
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=148.3M resident=105.1M(71%) swapped_out_or_unallocated=43.2M(29%)
    Writable regions: Total=16.1G written=11.4M(0%) resident=18.7M(0%) swapped_out=0K(0%) unallocated=16.1G(100%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2040K
    CG image                             16K
    CG raster data                       56K
    CG shared images                   3416K
    CoreImage                            96K
    CoreServices                       1556K
    MALLOC                            334.6M
    MALLOC (reserved)                  15.8G        reserved VM address space (unallocated)
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       16K
    OpenCL                               36K
    STACK GUARD                        56.0M
    Stack                              11.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             13.7M
    __IMAGE                            1256K
    __LINKEDIT                         47.7M
    __RC_CAMERAS                        236K
    __TEXT                            100.6M
    __UNICODE                           544K
    mapped file                        35.2M
    shared memory                       312K
    ===========                      =======
    TOTAL                              16.4G
    TOTAL, minus reserved VM space    625.0M
    Model: MacBookPro8,1, BootROM MBP81.0047.B24, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.68f98
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: USB TO IDE Bridge, 0x058f  (Alcor Micro, Corp.), 0x6390, 0xfd120000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    Uh, that's a lot of info. Try contacting Apple about it, because I don't think anyone here knows how to decifer that.
    Also try doing the simple things... Restart your computer and restart System Preferences. What do you need to change in Date & Time anyways...

  • DID YOU KNOW?? - ABOUT DATE TIME CONVERTERS??

    Hi All,
    DID YOU KNOW??
    That the Creator IDE provides a set of converters that you can use to convert component data. If your input field is for numbers, then you most likely need a converter. Converters are also good for formatting dates, times, and currency values. The standard converters, which you can use are located in the Converters section of the Components Palette.
    The Date Time Converter
    A Date Time Converter Converts between java.lang.String values in your component properties and data types of java.util.Date. The conversion usually applies to the property of a component used to display values and to pick up values entered by users, such as the text property of a Text Field component.
    An example is binding a JavaServer Faces component to to a database column of type DATE. When you bind a component, the IDE normally identifies the data type for you and sets the appropriate converter when you establish a binding to the value property. However, you can also add this converter manually by setting the component's converter property.
    * Note: If you are using an Oracle database, use the SQL Timestamp converter instead.
    Learn more :-
    JDBC Type Conversions
    http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/connect_data/jdbc_type_conversions.html
    Using Converters
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/converters.html
    We would like to know the following from you :-
    1) Why and How are you using Converters in applications you are building?
    2) Did you face any challenges while using them?
    3) Did you find any cool ways of using these or build any cool custom converters?
    4) Any feedback you might want to share about converters to make it easier in using them.
    Thanks for all your inputs and for joining in the discussion.
    K

    did you know that sqlTimestamp converter returns value of java.sql.Date type if you are using sun's oracle jdbc driver. It will return the correct type if you use oracle's jdbc driver. Not sure why this happen, though. Bug?

  • How to keep date time line in  collected alert message in linux platform

    Hi Friends,
    In linux server for 11g oracle. how do I keep date time line for each error message?
    example as
    cat alert_test.log | grep 'ORA'
    grep 'ORA' alert_test.log
    I like output as
    Mon Aug 20 01:54:29 2012
    ORA-01560 caused by SQL...........
    I know we can use diag... But I want to some linux command for my debug.
    Thanks
    newdba

    Another option is to make your alert log accessible as an external table.
    Demo here:
    http://www.morganslibrary.org/reference/externaltab.html
    Find "alert log" on the page. Add a numeric column to the table and create a sequence and you can put in a surrogate row number that will allow you to pull sections using LEAD and LAG as you please.

  • Date / Time System fields - inconsistent

    This is a weird one...please bear with me
    Before I begin...note that this is not a problem that is difficult to fix, I'm just interested in better understanding why the system fields are behaving the way they are.
    We have 20 or so programs that use a function module to create a file header that includes a date/time stamp.  The programs also place a trailer with a date/time stamp that should match the one in the header.  However, the programmer used different system fields (after a GET TIME statement) to create the date/time stamp in the trailer.  On occasion, the date/time stamp comes out different. 
    Here's the code (sry about all caps):
      GET TIME.
      CONCATENATE SY-DATUM SY-UZEIT INTO BATCHID.
      CALL FUNCTION 'Z_YADAYADA'
           EXPORTING
                FILE_ID              = P_FILEID
                REFRESH_TYPE         = P_REFTYP
                START_PERIOD         = START_PER
                END_PERIOD           = END_PER
           IMPORTING
                STRING255            = OUTPUTSTRING
           EXCEPTIONS
                INVALID_REFRESH_TYPE = 1
                INVALID_BATCH_ID     = 2.
      ...sy-subrc check...
      TRANSFER OUTPUTSTRING TO P_FILE1.  <--header output
      CONCATENATE L_TRL BATCHID COUNT T_TOTAL SPACE
                  INTO OUTPUTSTRING SEPARATED BY L_DEL.
      CONDENSE OUTPUTSTRING NO-GAPS.
      TRANSFER OUTPUTSTRING TO P_FILE1.  <--trailer output
    inside function module *****
      CONCATENATE: SY-DATLO SY-TIMLO INTO DATESTAMP,
                   SY-SYSID SY-MANDT INTO MACHINE_NAME.
      CONDENSE: DATESTAMP, MACHINE_NAME NO-GAPS.
      CONCATENATE C_HDR DATESTAMP FILE_ID MACHINE_NAME
                  SY-CPROG ' ' REFRESH_TYPE START_PERIOD
                  END_PERIOD DATESTAMP
                  INTO STRING255 SEPARATED BY '~'.
      CONDENSE: STRING255 NO-GAPS.
    You can see that the function uses SY-DATLO and SY-TIMLO for creation of the header, while SY-DATUM and SY-UZEIT are used for the trailer.  What's wierd is that sometimes the trailer has a date/time stamp that is 1 second <b>greater</b> than the header, despite the fact that it is stored in the BATCHID variable <b>before</b> the header is created.
    Any help, references, explanations greatly appreciated (and rewarded with points)
    BMV

    Hi Brian
    Here is the related part from the weblog of ABAP expert Horst Keller. Hope it may help. For the full document, you can visit <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.wcm.compound.docs/library/uuid/f1391fc3-0301-0010-d384-fccd036f1c67">here</a>.
    The values of all system fields in this table are implicitly set when the program is started, every time a screen layout of a screen is sent, and when the internal mode is set. The GET TIME command explicitly updates the system fields, except for sy-dayst, sy-fdayw and sy-tzone.
    With the exception of sy-datlo and sy-timlo, all system fields refer to the local date and time of the current SAP system. The ABAP runtime environment clock is synchronized with the database server clock at regular intervals in order to calculate the local time of the SAP system. During the synchronization process, the ABAP runtime environment clock is set to the database server clock. Because this happens on all application servers in an SAP system, the ABAP runtime environment clock is synchronous with the clocks on all other application servers and with the database system clock, and thus shows the local time of the entire SAP system. The time zone on which the local time of an SAP system is based is the only entry in the database table TTZCU.
    The content of sy-zonlo is taken from the user master record of the current user. The values of sy-datlo and sy-timlo are calculated from sy-datum and sy-uzeit and from the time zone of the SAP system for the time zone in sy-zonlo. If the user master record does not contain a time zone, or if it contains an invalid or an inactive time zone, sy-datlo and sy-timlo are set to the values of sy-datum and sy-uzeit. All valid time zones are defined in table TTZZ.
    Is't the naming of sy-datum and sy-uzeit really geeky?
    Time Stamps
    The above system fields for date and time are not sufficient for many requirements of determining unique points in time: They represent local times and the values are measured in seconds. For more exact date and time determination, you use time stamps.
    A time stamp represents date and time in the form YYYYMMDDHHMMSS. YYYY is the year, MM the month, DD the day, HH the hour, MM the minutes and SS the seconds. There is a short form and a long form. In the long form, the format specified above additionally contains 7 decimal places for fractions of seconds, which allows for an accuracy of up to 100 ns. The maximum time resolution depends on the operating system of the application server and may be less.
    A valid time stamp must contain values whose date and time specifications before the decimal separator correspond to valid values for the data types d and t. Time stamps in this form are always considered as UTC (Universal Time Coordinated, basis for calculating worldwide time specifications; the UTC reference time is based on Greenwich Mean Time, GMT, but is not a time zone; it has no daylight saving time or summer time) time stamps when processed with the corresponding statements. You use the statement GET TIME STAMP to create a time stamp that represents the current UTC reference time.
    Regards
    *--Serdar <a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d">[ BC ]</a>

  • SSRS parameter date/time properties

    Hello,
    I wanted to see if someone could help me with a SSRS parameter issue.
    I’m using parameters to create user defined @BeginDate and @EndDate for the report.
     I’m formatting the parameter properties as a Date/Time format to get calendar controls in the report.
    The problem I’m having is the ‘date field’ in underlying data set is formatted as (char(8), not null). 
    I believe this is causing problems with the Date/Time format in SSRS parameter properties.
    The data field would look like this 20500401.
    Is there any way that someone could show me how to format my @BeginDate and @EndDate in my dataset query to work with the SSRS parameter properties Date/Time format?
    Any information would be greatly appreciated.
    x

    Hi Tracy,
    The dates aren't field that are in my SSRS dataset.  They filters in query though
    Originally my query was before I added parameters:
    ...Where TRANS_DATE between '20140101' and '20140331' 
    After adding parameters:
    ....Where TRANS_DATE between @BeginDate and @EndDate
    Is there anyway that I could convert the TRANS_DATE field in my dataset query to work with SSRS Date/Time format instead?
    If I was returning the TRANS_DATE field in my dataset I think I could use your expression in the filter.
    Thanks,
    x

Maybe you are looking for

  • Can anyone help with iPlayer and Sky Mobile?

    Ok, I'm so close to giving up with this useless phone. There are 3 apps on my N97 which give me a constant headache. BBC iPlayer Sky Mobile* YouTube *I should point out that I only use Sky Mobile to set recordings on my Sky+. I do not use it for, nor

  • Display a schematic view with icons (jpg, gif, etc).

    I'm trying to display a schematic view and use icons to represent the difference objects in this schematic view. For example: to show a 3 phones conference call. The description will be the phone number (or person's name) and the icon will be the per

  • Error message -50 ever since I installed new version of iTunes... weird!

    A few days ago I installed the new/updated version of iTunes from the 'automatic prompt' which informed me there was a newer version of the software available. Now, ever since I've been using iTunes upon start-up I get this weird thing happening: 1-

  • SAP NW7.01 ABAP Trial version installation error on windows 7

    I m trying to install SAP NW7.01 ABAP Trial version  on my PC having Windows 7 in it. Firstly i have configured MS Loopback Adapter and installed SAP Management Console as describe in Installation guide. Now when i just start to run setup.exe , it ju

  • Managed Mobile Home sync problems

    We have recently upgraded our servers from Leopard to Snow Leopard and I have rebound my macbook to the server. Whenever I synchronise it will upload all my new files to the server, however when I come to delete them from my macbook and proceed to sy