How to see statistics of percentages of total CPU time in ESXi 5.5 (using esxtop)?

Hi everyone,
I'm using ssh to connect to my ESXi server console. Using esxtop, I get the following result:
You can see below the CORE UTIL line, the CCPU line is not present here.
Is it missing? If not, how can I see percentages of CPU time (the "us", "sy", etc.)?
The ESXi version is VMware ESXi 5.5.0 build-2068190.
esxtop version is 5.5
Thanks in advance.

8 CPUs, load average 4, runqueue 0 and usage 30-35%
Does this indicate any issue with system resourcesNO. Not at all.
However a poor schema design or inefficient SQL execution can mean that a query that should do 100 'consistent gets' is doing 10,000 'consistent gets' -- in the buffer cache, consuming CPU and not waiting for I/O. This is a scenario where you have idle CPU but CPU usage is inefficient. (Thus, for example, adding more CPUs will not help your users at all).
So you should look at the queries and see if queries can be improved.
If, on the other hand, users are not complaining of performance and all response times are within expectations, than you have no issue at all.
Hemant K Chitale

Similar Messages

  • Total CPU time consumed by all Oracle sessions combined.

    Hello, I need to summarise total cpu time consumbed by all active Oracle sessions and below is the query thta I could come up with.
    However the problem: even if I execute query in a miliseconds duration, the value of total cpu time is always changing for a given session. Hence, is the query below right?
    SELECT SUM( c.value)
    FROM V$SESSION a,
    v$sesstat c,
    v$statname d
    WHERE a.sid = c.sid
    and c.statistic# = d.statistic#
    AND d.name = 'CPU used by this session'
    AND a.status = 'ACTIVE';
    Thanks,
    R

    Your findings are correct - the statistics is changing all the time. I don't see what is the problem here, you just have to add the time stamp and then you can measure the difference between them.
    If you are on 10g or 11g version then I would suggest you to look at V$SESS_TIME_MODEL which also gives interesting aggregated data for session level and for the database level the V$SYS_TIME_MODEL is probable the thing you are looking for.
    SQL> select stat_name,value from v$sys_time_model where stat_name='DB CPU';
    STAT_NAME                                                             VALUE
    DB CPU                                                           2125109375But I would like to warn you that there are some anomalies with time measurement in the database. Consider the following case:
    SQL> create or replace function f_cpu( p number) return number is
      2  m_date date;
      3  begin
      4    for a in 1..p loop
      5       m_date := sysdate;
      6    end loop;
      7    return 0;
      8  end;
      9  /
    Function created.
    SQL> alter session set events '10046 trace name context forever, level 8';
    Session altered.
    SQL> set arraysize 1
    SQL> select f_cpu(300000) from dual connect by level <= 10;
    F_CPU(300000)
                0
                0
                0
                0
                0
                0
                0
                0
                0
                0
    10 rows selected.
    SQL> alter session set events '10046 trace name context off';
    Session altered.From the other session you run your statement which just looks for the CPU usage in the first session. You will see that the CPU time is increased all the time, not just after every fetch call, but also between them.
    Now comes the funny thing - the SQL_TRACE shows the following ( I have removed all wait events to get more clear picture for my purpose):
    PARSING IN CURSOR #4 len=53 dep=0 uid=88 oct=3 lid=88 tim=347421772231 hv=2194474452 ad='230f2310' sqlid='2m7v6ua1cu1fn'
    select f_cpu(300000) from dual connect by level <= 10
    END OF STMT
    PARSE #4:c=0,e=124,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=347421772223
    EXEC #4:c=0,e=103,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=347421772446
    FETCH #4:c=671875,e=588199,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,tim=347422360764
    FETCH #4:c=1437500,e=1282871,p=0,cr=0,cu=0,mis=0,r=2,dep=0,og=1,tim=347423644892
    FETCH #4:c=1156250,e=1182013,p=0,cr=0,cu=0,mis=0,r=2,dep=0,og=1,tim=347424827769
    FETCH #4:c=1234375,e=1181276,p=0,cr=0,cu=0,mis=0,r=2,dep=0,og=1,tim=347426009910
    FETCH #4:c=1187500,e=1179318,p=0,cr=0,cu=0,mis=0,r=2,dep=0,og=1,tim=347427190068
    FETCH #4:c=593750,e=593217,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,tim=347427784188In this output "c=" is CPU time in 0.000001s (microseconds) and "e=" is elapsed time. There are many rows where CPU time > elapsed time, what is a well known problem of reporting for CPU timing. This was a single session so this result is unrealistic: how one can use 1.43s CPU time in only 1.28s time.
    FETCH #4:c=1437500,e=1282871,p=0,cr=0,cu=0,mis=0,r=2,dep=0,og=1,tim=347423644892The CPU time is bigger than elapsed time - and you can probably notice as well that CPU time is rounded to 00,25,50,75 .
    There are some interesting problems with time measuring in Oracle and one can easily be caught in this trap. I have written a post about this in my blog: http://joze-senegacnik.blogspot.com/2009/12/measurement-error-in-trace-file.html
    HTH, Joze
    Co-author of the forthcoming book "Expert Oracle Practices"
    http://www.apress.com/book/view/9781430226680
    Oracle related blog: http://joze-senegacnik.blogspot.com/
    Blog about flying: http://jsenegacnik.blogspot.com/
    Blog about Building Ovens, Baking and Cooking: http://senegacnik.blogspot.com

  • How to identify TOP 5 SQL consuming more CPU time without using statspack

    How to identify the TOP 5 SQL queries which are consuming more CPU time during the timespan of 24 hours for entire database. There are N number of users who have issued sql queries, out of which few users have disconnected and few user are still connected to the database(I need to consider all sessions). My database version is 9.0.1. I don't want to use statspack. Is there any way to identify TOP 5 SQL consuming more CPU time without affecting the performance of the database. Can any one help me on this? Its urgent!!.

    My database version is 9.0.1. I don't want
    to use statspack. Is there any way to identify TOP 5
    SQL consuming more CPU time without affecting the
    performance of the database. Can any one help me on
    this? Its urgent!!.I cant understand why you dont want to use statspack. As it is very easy to use and very quick to identify bottlenecks. Try using statspack. Its really wonderful.
    Particularly in your case statspack is the best.
    Regards,
    Sanju.

  • How to create a running percentage of total

    New to Report Builder 3.0
    I Have a column of values with the total at the bottom.  I want to add a column with the percentage of the total alongside as below.  How do I achieve this)
    value
    weight
    19,564
    54%
    12,394
    34%
    1,336
    4%
    1,114
    3%
    1,887
    5%
    36,294
    100%

    Hi cmcmac,
    According to your description, you want to add a column to show the percentage value of the total values in the right of the value column. In this scenario, we can use division to get the result, and format the result to percentage format.
    To achieve your requirement, we can refer to the following steps:
    Right-click the value column to insert a column right of it.
    Right-click the second cell to open the Text Box Properties dialog box in the new column.
    Modify the expression of Value to like this:
    =Fields!value.Value/Sum(Fields!value.Value,"DataSet_name")
    Click the Number in the left pane, select Percentage format under Category, then type “0” as Decimal places.
    Repeat from setp2 to step4 in the third cell in the new column, but modify the expression of Value as below:
    =Sum(Fields!value.Value,"DataSet_name")/Sum(Fields!value.Value,"DataSet_name")
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to see which perners are rejected/skipped in Time Run

    Hi!
    We Run Time in background for all employee everyday and then can see no of employee get rejected/processing has not completed for in Time Run Statistics.My Question is How to get to know which employee (employee ID)got rejected/skipped.
    PT_ERL00 is not helpful as we cant guess which message might have terminated Time Run for an employee.
    It must be a usual need in any company.There would be some solution of it.Please help.
    Regards
    Sunita

    Since Time Evaluation was run "LIVE" in the background up to dd.mm.yyyy, you can repeat the execution up to the same date and the system will only pick up the employees whose Time Evaluation was not completed or for whom new Absences/Attendences were entered. 
    So if you re-execute the Time Evaluation with the "Display Log" box checked (as mentioned by Howard), you will be able to see the error messages for the first few employees that are in error, and you will be able to drill down into your Log to identify the source of the error).  After correcting the problem, it is always best to re-execute Time Evaluation "LIVE" (without the Log/Protocol turned "ON") to see if any other employees are still in error.

  • With Guide - How to see all movies starting at a specific time ????

    Does anyone know how to use the remote/guide to identify all movies starting at a certain time.  I see a ton of movie channels but its next to impossible to wade through all the channels looking for movies starting at a specific time.
    All of my previous digital cable services had a similar serach function?
    Help ?

    I believe you can using the modes.....click on the right arrow on the remote and should bring up modes select Movies just remember to change it back or all you will see in the guide is movies

  • How to get statistics (or precise data) about cpu speed and RAM

    My problem is I want to determine the CPU speed of the computer is running the applet.
    I know there's no way to obtain in a simply (and standar) way this property, so I've thinked about generating statistic methods for do it (something like executing a loop a defined iterations)
    My doubt is what to put inside this loop, beacuse I would like to know just not CPU speed (or satistics about it), I need also free RAM statistics, so I've thinked there would be some specific java instructions to give a relationship of these data I need.
    My question is if someone has done (or has thinked about) this kind of classes before me, and can tell me what is the best way to make the same.
    Tanks

    http://www.javaworld.com/javaworld/javaqa/2002-11/01-qa-1108-cpu.html
    http://java.sun.com/products/jdk/1.2/docs/guide/jvmpi/jvmpi.html#hprof-cpu

  • HT4157 Will be traveling overseas next week how do I suspend the data plan for the time I will not be using it?

    Would like to suspend the at&amp;t data plan I signed up for when I bought the miniIpad because I will not use it during overseas trip how do I go about it? Can I just cancel and sign back on when I need it again?

    Contact AT&T to see if they offer this. As far as I know (and I could
    be misinformed), your AT&T will automatically renew every month unless
    you let AT&T know you do not want it to renew. I believe this can be
    done via AT&T website or phone call to Customer Service. I suggest
    you contact AT&T as soon as possible to get it straightened out rather
    than wait until right before your trip when you will already have enough
    to deal with.

  • HT4500 How long will it take to transfer 400gb from time capsule to my iMac using mountain lion

    I did a clean install on my iMac. Now I cannot access my backups. I can see the time capsule, but when I open time machine, I only have today  which is the newly installed system. I am now trying to use migration assistant to grab my files. I got to where I choose my time machine and entered my password. Now I don't see any action. How long will the transfer take?  My 500 gb time capsule is full. Should I be seeing something on my screen.

    This depends on what the connection type is for the computer to the Time Capsule - wireless or Ethernet, how much data are involved, what generation of Time Capsule, and whether the transfers are to an HDD or SSD.

  • How can I stop Acrobat 11 from crashing each time I try to scan & use OCR? [MacOS 10.9] [Attached fi

    Question in the title...
    Here is a video of me trying to scan and use OCR on two pages. I simply can't scan pages with the software. I bought it a few months ago in order to archive some paper documents, but I never managed to use it because Acrobat crashes every single time!
    Also, here are two crash logs (one being an old one, and the second one being the last one from the video [I forgot to copy the first one from this video]):
    Process:         AdobeAcrobat [513]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         11.0.06 (11.0.06)
    Code Type:       X86 (Native)
    Parent Process:  launchd [165]
    Responsible:     AdobeAcrobat [513]
    User ID:         501
    Date/Time:       2014-02-08 15:48:08.906 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  [Oops! What's that?]
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    VM Regions Near 0x1:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        VM_ALLOCATE            0000000000001000-0000000000064000 [  396K] ---/--- SM=NUL 
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x034164a4 objc_msgSend + 20
    1   com.apple.Foundation                    0x0360ad30 -[NSObject(NSDelayedPerforming) performSelector:withObject:afterDelay:inModes:] + 305
    2   com.apple.imageKit                      0x0d352691 -[IKDeviceBrowserHandler deviceBrowser:requestsDeselectDevice:] + 77
    3   libobjc.A.dylib                         0x0342c2af -[NSObject performSelector:withObject:] + 70
    4   com.apple.ImageCaptureCore              0x0f2218b0 -[ICMasterDeviceBrowser handleNetworkDeviceRemoved:] + 394
    5   com.apple.Foundation                    0x035ec692 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke + 49
    6   com.apple.CoreFoundation                0x046de7e4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
    7   com.apple.CoreFoundation                0x045c03fb _CFXNotificationPost + 3435
    8   com.apple.Foundation                    0x035daebf -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    9   com.apple.ImageCaptureCore              0x0f22c1bb -[ICScannerDevice handleImageCaptureEventNotification:] + 425
    10  com.apple.Foundation                    0x035ec692 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke + 49
    11  com.apple.CoreFoundation                0x046de7e4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
    12  com.apple.CoreFoundation                0x045c03fb _CFXNotificationPost + 3435
    13  com.apple.Foundation                    0x035daebf -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    14  com.apple.ImageCaptureCore              0x0f1ebfe6 -[ICCommandCenter handleNotificationEvent:replyEvent:] + 712
    15  com.apple.ImageCaptureCore              0x0f1ec90e -[ICCommandCenter handleMachMessage:] + 377
    16  com.apple.Foundation                    0x036488b7 __NSFireMachPort + 415
    17  com.apple.CoreFoundation                0x046362c8 __CFMachPortPerform + 440
    18  com.apple.CoreFoundation                0x046360f5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    19  com.apple.CoreFoundation                0x0463605b __CFRunLoopDoSource1 + 523
    20  com.apple.CoreFoundation                0x04626822 __CFRunLoopRun + 2130
    21  com.apple.CoreFoundation                0x04625d5a CFRunLoopRunSpecific + 394
    22  com.apple.CoreFoundation                0x04625bbb CFRunLoopRunInMode + 123
    23  com.apple.HIToolbox                     0x0875fe2d RunCurrentEventLoopInMode + 259
    24  com.apple.HIToolbox                     0x0875fbb2 ReceiveNextEventCommon + 526
    25  com.apple.HIToolbox                     0x0875f98d _BlockUntilNextEventMatchingListInModeWithFilter + 92
    26  com.apple.AppKit                        0x021d55a9 _DPSNextEvent + 1602
    27  com.apple.AppKit                        0x021d4ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    28  com.apple.AppKit                        0x021c735c -[NSApplication run] + 727
    29  com.adobe.Acrobat.framework             0x000731e2 0x6a000 + 37346
    30  com.adobe.Acrobat.framework             0x0007195f RunAcrobat + 307
    31  com.adobe.Acrobat.Pro                   0x00064ed5 main + 91
    32  com.adobe.Acrobat.Pro                   0x00064e71 start + 53
    Thread 1:: Dispatch queue: NSOperationQueue 0x7ce0e9d0
    0   libsystem_kernel.dylib                  0x05505b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x0545a05b nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x03672641 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00e6b4c1 0x6a000 + 14685377
    4   com.apple.Foundation                    0x035dffec -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x035dfd21 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x035dfc48 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x05356e21 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x053523a6 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x05354467 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x05355732 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x055fddab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x05601cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x05506992 kevent64 + 10
    1   libdispatch.dylib                       0x053548bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x05354556 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x05506046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x055fddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x05601cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x05506046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x055fddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x05601cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x07212922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x07212b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x071def92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x03ab34dc 0x3ab1000 + 9436
    7   com.adobe.ACE                           0x03ab3441 0x3ab1000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x071df56e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x07212922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x07212b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x071def92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x03ab34dc 0x3ab1000 + 9436
    7   com.adobe.ACE                           0x03ab3441 0x3ab1000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x071df56e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x07212922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x07212b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x071def92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x03ab34dc 0x3ab1000 + 9436
    7   com.adobe.ACE                           0x03ab3441 0x3ab1000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x071df56e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x03c1bf67 0x3c10000 + 48999
    4   com.adobe.AGM                           0x03c1bea6 0x3c10000 + 48806
    5   com.adobe.AGM                           0x03c1be44 0x3c10000 + 48708
    6   com.adobe.AGM                           0x03c1bae4 0x3c10000 + 47844
    7   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x03c1bf67 0x3c10000 + 48999
    4   com.adobe.AGM                           0x03c1bea6 0x3c10000 + 48806
    5   com.adobe.AGM                           0x03c1be44 0x3c10000 + 48708
    6   com.adobe.AGM                           0x03c1bae4 0x3c10000 + 47844
    7   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x03c1bf67 0x3c10000 + 48999
    4   com.adobe.AGM                           0x03c1bea6 0x3c10000 + 48806
    5   com.adobe.AGM                           0x03c1be44 0x3c10000 + 48708
    6   com.adobe.AGM                           0x03c1bae4 0x3c10000 + 47844
    7   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x05500f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0550016c mach_msg + 68
    2   com.apple.CoreFoundation                0x04626f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x04626541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x04625d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x04625bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x0237ef18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x05506976 kevent + 10
    1   com.adobe.Acrobat.framework             0x0147ecd1 0x6a000 + 21056721
    2   com.adobe.Acrobat.framework             0x013ddd6f 0x6a000 + 20397423
    3   com.adobe.Acrobat.framework             0x013da7e5 0x6a000 + 20383717
    4   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 13:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x055057ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x055fed1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x05600bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x091fe540 CVDisplayLink::runIOThread() + 936
    4   com.apple.CoreVideo                     0x091fe180 startIOThread(void*) + 159
    5   libsystem_pthread.dylib                 0x055fc5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x055fc485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x05601cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x05506046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x055fddcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x05601cce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x7eef8cb0  ecx: 0x03432160  edx: 0x0000030e
      edi: 0x0360ac10  esi: 0xbff99958  ebp: 0xbff99a08  esp: 0xbff9989c
       ss: 0x00000023  efl: 0x00010202  eip: 0x034164a4   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000001
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0x64000 -    0x64fff +com.adobe.Acrobat.Pro (11.0.06 - 11.0.06) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x6a000 -  0x2013fe7 +com.adobe.Acrobat.framework (11.0.06 - 11.0.06) <AC8EA313-1D4C-344E-9595-6F9F4633FE66> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x21ae000 -  0x2dc9ff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x3357000 -  0x33a8ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x3409000 -  0x340afff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x3412000 -  0x35ba4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x35d8000 -  0x3903ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x3a9c000 -  0x3aaaff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x3ab1000 -  0x3c03fe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x3c10000 -  0x41e5ff7 +com.adobe.AGM (AdobeAGM 4.28.134.1 - 4.28.134.1) <4EE50823-6517-3CEE-8154-05D8AE487BE8> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x4250000 -  0x426eff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x4274000 -  0x4571ffb +com.adobe.CoolType (AdobeCoolType 5.11.135.1 - 5.11.135.1) <36BDB79D-825C-3144-88D5-D9A26F756621> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x45a3000 -  0x45a3fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x45ac000 -  0x45acfff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x45b0000 -  0x47b2ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x48ee000 -  0x48eefff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x48f8000 -  0x496dffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x499d000 -  0x4b49ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x4c00000 -  0x4c55ff7  com.apple.QuickLookFramework (5.0 - 622.3) <3C6ADC02-2C67-361B-B042-47DDCC0EDA5F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x4c88000 -  0x4ef5ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x5019000 -  0x5130ffb  com.apple.WebKit (9537 - 9537.73.11) <74634980-1AC4-3874-9BC2-72E1ED8FB534> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x51e6000 -  0x51feff7  com.apple.ScriptingBridge (1.3.1 - 63) <6A12D8A2-A60D-3304-B3A8-DFE3901CC94A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x520e000 -  0x520efff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x5212000 -  0x527bfff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x52ad000 -  0x52b1ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x52b7000 -  0x52c2ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x52d0000 -  0x52d5ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x52e1000 -  0x52e9fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x52f1000 -  0x5341ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x5351000 -  0x5369ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x537d000 -  0x5380fff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x5388000 -  0x5388fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x538e000 -  0x5396fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x539f000 -  0x53a3ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x53a9000 -  0x53abfff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x53b2000 -  0x53b3fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x53ba000 -  0x53ccfff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x53d7000 -  0x53d8fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x53de000 -  0x5470ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x5499000 -  0x549bfff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x54a2000 -  0x54aafff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x54b1000 -  0x54d9fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x54ee000 -  0x550bff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x552d000 -  0x555effa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x556a000 -  0x5582ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x558c000 -  0x55b7ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x55d2000 -  0x55dbfff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x55e4000 -  0x55e9ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x55fb000 -  0x5602ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x560d000 -  0x560effa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x5614000 -  0x5615ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x561c000 -  0x5622ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x562a000 -  0x564efff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x5665000 -  0x5665fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x5669000 -  0x5953fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x5991000 -  0x5991fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x5995000 -  0x5a65fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x5a72000 -  0x5ac7fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x5b1f000 -  0x5b42ff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x5b4f000 -  0x5bfbffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x5c07000 -  0x5fccff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x6024000 -  0x617aff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x61a0000 -  0x6598ff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x6634000 -  0x66f7ff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x675a000 -  0x6866fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x68c1000 -  0x6936ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x695e000 -  0x69effff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x6a2e000 -  0x6a7cff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x6aad000 -  0x6abdff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x6aca000 -  0x6b26ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x6b52000 -  0x6beefff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x6c1b000 -  0x6c25ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x6c36000 -  0x6c48fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x6c50000 -  0x6c54ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x6c5c000 -  0x6c68ffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x6c6d000 -  0x6caaff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x6cc0000 -  0x6cc1fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x6cc6000 -  0x6e8cffb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x6f20000 -  0x7082ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7153000 -  0x7454ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x74cb000 -  0x7563ff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x75b4000 -  0x7634ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x76c9000 -  0x773cfff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7777000 -  0x77d5ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7801000 -  0x78dcff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7945000 -  0x7971ff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7991000 -  0x7aa3ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x7aba000 -  0x7ba6ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x7bd5000 -  0x7be3fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x7beb000 -  0x7befffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x7bf4000 -  0x7bf4ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x7bf8000 -  0x7c04ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x7c0a000 -  0x7c13fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7c1d000 -  0x7c24ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7c2b000 -  0x7c36ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7c42000 -  0x7c43fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x7c47000 -  0x7c63fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x7c6d000 -  0x7cd6fff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x7d06000 -  0x7d09ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7d0f000 -  0x7d27fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7d3f000 -  0x7d49fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7d52000 -  0x7d7cfff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x7d88000 -  0x7e7cfff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7ed5000 -  0x7f1bff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x7f3c000 -  0x7f60fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7f68000 -  0x7fc1ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fcf000 -  0x7feaff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7ff2000 -  0x7ff6ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7ffb000 -  0x80f9fff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x811f000 -  0x8121ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x8125000 -  0x8171ff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0x8183000 -  0x819cfff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x81b4000 -  0x81e5ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x8200000 -  0x821dffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x8228000 -  0x8318ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x8326000 -  0x8391ff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x83b6000 -  0x83b7ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x83bc000 -  0x83c0fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x83c6000 -  0x83d2ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x83e2000 -  0x83ebffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x83f2000 -  0x8468ff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x8499000 -  0x84eeff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x8511000 -  0x8683ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x870d000 -  0x8716fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x871f000 -  0x8723fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x872b000 -  0x872eff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x8734000 -  0x8aa9ff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x8c0f000 -  0x8c62fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x8c89000 -  0x8c9cfff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x8cb5000 -  0x8d4cff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x8d76000 -  0x8db4ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x8ddb000 -  0x8df6ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x8e08000 -  0x8e0dff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x8e15000 -  0x8e17fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x8e1c000 -  0x8e25fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x8e2e000 -  0x8f14ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x8f9e000 -  0x90d5ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x914b000 -  0x915fff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x916d000 -  0x9187ff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9195000 -  0x91d4ff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91e6000 -  0x91f4ff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91fc000 -  0x9223fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x923c000 -  0x952eff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x95d4000 -  0x962aff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9643000 -  0x9685fff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9693000 -  0x969bffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x96a2000 -  0x96b1fff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96c4000 -  0x9701ffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9709000 -  0x970bffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9710000 -  0x9714ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x971a000 -  0x9b4eff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x9d63000 -  0x9d6efff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x9d7b000 -  0x9dcafff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9ddc000 -  0x9de9ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9df1000 -  0x9e0dff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9e1f000 -  0x9e2dff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x9e3d000 -  0x9e73fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x9e9b000 -  0x9ec6ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9ed2000 -  0x9f0eff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9f37000 -  0x9f37ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9f3d000 -  0xa1a1fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0xa264000 -  0xa2acfff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0xaae7000 -  0xabb4ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0xac25000 -  0xacaefff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0xacc6000 -  0xad27ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0xad56000 -  0xad84ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0xad9d000 -  0xb0c3ffd  com.apple.JavaScriptCore (9537 - 9537.73.10) <B5331B86-DEBC-387A-8F3E-5B9FC28E8055> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xb18e000 -  0xc029ffb  com.apple.WebCore (9537 - 9537.73.13) <85E27D26-9FA4-3CB0-9355-DDD7E3BBFBD7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0xc84d000 -  0xc84dfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xc850000 -  0xc850fff  libffi.dylib (18.1) <7A14A976-B202-3074-8B0D-FB718DF172DA> /usr/lib/libffi.dylib
    0xc854000 -  0xcdc1fff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0xd02a000 -  0xd0c8ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0xd112000 -  0xd137ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0xd155000 -  0xd3d3ff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0xd577000 -  0xd650ff6  com.apple.QuickLookUIFramework (5.0 - 622.3) <41D10880-AD68-3DE3-94F0-4CA9F44EBD5B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0xd6ca000 -  0xd83afff  com.apple.QTKit (7.7.3 - 2826.0.1) <2C936219-2C31-3912-8CD3-42A16844AFE2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0xd912000 -  0xd915ff3  com.apple.AppleSystemInfo (3.0 - 3.0) <99A923AE-121B-307D-AC1C-968976FBA225> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0xd91b000 -  0xda48ff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0xdb07000 -  0xdb58ffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0xdb82000 -  0xdec8ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0xdf5c000 -  0xe381fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0xe3cf000 -  0xe64bff7  com.apple.QuickTime (7.7.3 - 2826.0.1) <42542002-DCFF-3675-B919-440EC5057D56> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0xe6f4000 -  0xe70bff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0xe721000 -  0xe774ff3  com.apple.CoreMediaIO (401.0 - 4544) <867D01AF-3326-39CB-A136-48AFE4BE9802> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0xe798000 -  0xe7b1fff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0xe7c1000 -  0xe8cefe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0xe900000 -  0xe932ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0xe93c000 -  0xe941fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0xe94c000 -  0xedf3fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0xee01000 -  0xee20ff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0xee2b000 -  0xee89ff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0xeead000 -  0xef14ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0xef43000 -  0xef6eff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0xef7a000 -  0xefe4ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0xf022000 -  0xf076fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xf080000 -  0xf087ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0xf090000 -  0xf09aff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0xf0a3000 -  0xf0cdff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0xf0d4000 -  0xf0e9ff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0xf0f9000 -  0xf0fbfff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0xf102000 -  0xf109fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0xf10e000 -  0xf193ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0xf1d3000 -  0xf1ddff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0xf1e7000 -  0xf23cff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x10a02000 - 0x10a32ff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
    0x10aa0000 - 0x10aadfff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
    0x10ba1000 - 0x10bacffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x10bb6000 - 0x10bb6fff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x11cda000 - 0x11cffff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x11d14000 - 0x11d43fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <05E81260-7DC7-3546-B45D-15B3E5DF056D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x11d63000 - 0x11d6dff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x11d76000 - 0x11e61ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x11eb2000 - 0x11eb5ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x11ebd000 - 0x11f5cff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x11f81000 - 0x11f8cfff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x11f96000 - 0x1205dff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x120b5000 - 0x120fbfff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x1210a000 - 0x12142ff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x12152000 - 0x12154ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x1215b000 - 0x1215effb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x12164000 - 0x1216aff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x12174000 - 0x121acfff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x121b9000 - 0x121c9ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x121d0000 - 0x122b3ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x12306000 - 0x1233bffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x1287b000 - 0x12883ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x12ad7000 - 0x12affff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x1340b000 - 0x1340effa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x13def000 - 0x13e57ffa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x13f1f000 - 0x13f89fff +com.druide.Antidote.TexteursOSAX (4.1.6 - 416) <DEC2C5F2-29BA-3BF9-9EE0-C7C5C9FEC2DB> /Library/ScriptingAdditions/Antidote - Texteurs.osax/Contents/MacOS/Antidote - Texteurs
    0x14003000 - 0x1402cff5  com.apple.shortcut (2.6 - 2.6) <F9F32E6F-E641-36D0-B648-058D5E146D38> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x14046000 - 0x14053ff7  com.apple.HelpData (2.1.4 - 90) <5BACC236-5B40-33AC-B088-87EDEFAF1D3E> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x1405d000 - 0x1408dff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x140a3000 - 0x140a9ffc  libCGXCoreImage.A.dylib (599.7) <87F9F4B2-487E-3B11-A869-D6CBDAB39055> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A. dylib
    0x140b1000 - 0x140b9fee  libcldcpuengine.dylib (2.3.58) <713322D8-A643-3B9F-8194-9C4020D8A4D6> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x140c9000 - 0x140cafff  com.apple.AddressBook.ContactsData (8.0 - 1365) <3A9C53C8-07EC-310D-80AD-0B6E2492F021> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
    0x140d0000 - 0x140d0ffd +cl_kernels (???) <5EE017CF-B172-4C2E-B342-C8033E7BE743> cl_kernels
    0x140d2000 - 0x141bdff7  unorm8_bgra.dylib (2.3.58) <44644D3C-3D0E

    Hello, and thank you very much for the reply!
    I just tried with the HP Scan app and I managed to use some kind of "Adobe Mac PDF Plug-in" in order to convert everything. I had no crash... Here's a video of what I did once every pages were scan :
    Also, I retried scanning with Acrobat and I had an other crash...
    Yesterday, after posting here, I uninstalled my drivers and HP softwares, and tested with Apple's App Store automatic updates... I also reinstalled HP own drivers and softwares... Anyway... Nothing seems to make this work...
    I guess using HP Scan and the "Adobe Mac PDF Plug-in" would be a good workflow. I can easily bring scan documents to PDF/A, but I can't apply OCR. I have to apply OCR once I'm in Acrobat.
    However, this workflow is broken, because HP Scan doesn't seem to understand that us, French-Canadian, use Letter format by default, not this unknown A4 format... ... And I don't know how to change to format, neither the default format... The result is that all my scanned documents with HP Scan have A4 sizes...
    I guess I'll have to call HP support or sumbit a ticket somewhere for this particular issue...
    Also, maybe I should try plugging my printer directly into my Airport Extreme USB port, but I'll have to use Apple-certified manager (drivers? I don't really understand) instead of the one on HP website... Maybe Acrobat wouldn't crash with my printer plugged that way... ... This is complicated...

  • How do I create a one-field-at-a-time GUI to enter data using Numbers?

    'Doing inventory.  Recording numbers and text in 9 different fields for about 10,000 items.
    I want to have the iPad only display one large data entry screen for one field at a time rather than use a spreadsheet tabbing over to each data entry field.
    Kind'a like a survey.

    Generally, you are more likely to get an answer if you post in the iWork for iOS forum at
    https://discussions.apple.com/community/app_store/iwork_for_ios
     Cheers, Tom 

  • AE CS6: How to Ram preview or playback in smooth real-time everytime?

    Hi guys,
    I would  like to know how to Ram preview or playback in smooth real-time everytime? I'm using a videohive template and adding in my footages to the media holder comps. The AE template is complex I guess.
    Hee's the problem, everytime I make a change to text, add a footage replacement or make any change at all, I have to completely render and wait a long time to see my final product in "Real-time"/smooth. Is there someway that I can render out the whole thing once and even though I make a change the entire video will play smoothly without rendering time? 
    PC Specs:
    HP 510t
    Windows 8 Pro x64 bit
    16GB Ram
    i7 2600 CPU @3.4 GHz
    GTX 660Ti

    Proxies don't affect rendering beyond the point of reducing the resolution and thus the nuimer of pixels that need to be processed, but since the retain the effect properties at full resolution, e.g. a large blur still renders just as slow. They are more a means of reducing file I/O bandwidth while working really.... As I said, the best way to optimize this would probably be to restructure the project so parts that don't change reside in separate pre-compositions and can use the disk cache.
    Mylenium

  • My Apple ID and rescue email are reversed. How can I change them both at the same time

    My Apple ID and rescue email are reversed. How can I change them both at the same time?

    I'd already used this standard tool (exhaustively!), but for the problem encountered it operated in Catch 22 mode - you had to do two things but neither order was permitted. I did find an answer eventually, but am not sure what it was I did that solved it! Thanks, anyway.

  • How could i get the kernel and user cpu usage for each process

    Hi all,
    In order to monitor the system CPU usage, I would like write a script to gather the kernel and user CPU usage for each process, like the prstat or top does. As always missing the shortlived kernel usage, prstat or top cann't get the precise CPU usage. I checked with the dtrace syscall, proc and fbt provider, but don't get which one is useful.
    Please provide your comments and suggestion.
    Thanks in adv

    mail2sleepy wrote:
    As I've studied the "dtrace" for a while, and seems Sun gives a pretty high score on this new feature.....I do want to know whether there's some probe can work for it, like writing a "dtrace" version prstat.You can write a prstat without dtrace. Because that's just polling at specific intervals and reading some process structures from /proc. You could have dtrace fire a probe every 5 seconds and read the same thing, but it wouldn't really be using any features of dtrace. Trhying to write it "in dtrace" doesn't make much sense.
    What you could do that would be harder via other methods is to fire a probe at process exit that displayed the process information including total CPU time. They could print exactly when processes exited. Doing that without dtrace would be very difficult.
    Darren

  • How to find top 10  SQL statments which are consuming more cpu time.

    hi all,
    Is there any command or script to monitor the top 10 sql statments which are consuming more cpu time.
    I know by using AWR REPORT we can find it, i want the command or script to find the top cpu utilization sql statments.
    Regards
    Subhash.

    Subhash,
    A quick and dirty Google search could have get you started with the following:
    Thread: how to get top CPU consuming sql oracle 10g
    Re: how to get top CPU consuming sql oracle 10g
    Oracle SQL top sessions
    http://www.dba-oracle.com/oracle10g_tuning/t_sql_top_sessions.htm
    "How to Find top 10 expensive sql's", version 9.2.0
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:73325450402303
    HTH,
    Thierry

Maybe you are looking for

  • Tax Accounts - Is it necessary to have separate tax acct. for each state

    I am new at this: Is it necessary to have separate AR/AP/ account for each tax jurisdiction like state county etc?\ Or do the sales tax reports for payments in SAP produce outstanding taxes per jurisdiction. I would prefer only one Sales Tax account

  • Changes to be done in RFUSVB10 (Annual tax reporter)

    Hi , SUB:Changes to be done in RFUSVB10 (Annual tax reporter) to delete two VAT no's in the output XML list . In Programm: RFUSVB10 Annual Tax Report(Belgium)----> on Tape paper After executing the output XML file which has the content with VAT no's

  • How to clone Notification Subscription in SCSM 2012 Sp1

    Hi Team, Do we have any method to clone/duplicate subscriptions in Service manager 2012. Thanks Dinesh Thanks & Regards, Dinesh

  • Safari cranky, loads google, but...

    am at home, on my home network (on my mac); airport works fine. on my new ipod touch (with the january update), a lot of web pages will not finish loading; they start, then...nothing. google loads, searches. my yahoo page loads. but most others, no.

  • Error message - cannot sync ipod

    I am getting the following error message "The ipod "my name" ipod cannot be synced. The required file cannot be found." I downloaded the newest version of iTunes 7.0 today. Can anyone help me? Thank you. iPod 60 GB   Windows XP