Quick-Sort Algorithm HELP !!!

hi there, I wrote a method to sort an 2D-Vector. I used the Bubble-Algorithm.
Here the code:
Vector == [Micky, Niko, Tete] ; [Lilo, Eli, Micha];
public static void bubbleSort( Vector v,
int sortColumn,
boolean ascending )
int i = 0,
j = 0,
length = v.size();
Vector tmp1,
tmp2;
for (i = 0; i < (length - 1); i++)
for (j = i+1; j < length; j++)
tmp1 = (Vector) v.elementAt(i);
tmp2 = (Vector) v.elementAt(j);
if (SortUtil.isGreaterThan(tmp1.elementAt(sortColumn), tmp2.elementAt(sortColumn)) > 0)
// swap
SortUtil.swap2D(v, i, j);
public class SortUtil
public static int isGreaterThan(Object obj1, Object2)
// String
if ( (obj1 instanceof String) && (obj2 instanceof String) )
return ( ((String) obj1).compareTo((String) obj2) );
public static void swap2D(Vector v, int i)
Vector tmp = (Vector) v.elementAt(i);
v.setElementAt((Vector) v.elementAt(i+1), i);
v.setElementAt(tmp, i+1);
I want now to write a method to use the quick-sort-algorithm.
How can I do this.
thanks a lot.
micky z.

Hi
You can use java.util.Arrays.sort() method to sort an array of data in quick sort algo. May be you will have to use a n array insted of the Vector.
Use vector.toArray() method to get an array from the vector.
But if you want to use a dynamically resizing container like the Vector, use a java.util.LinkedList insted of the Vector and use Collections.sort() method
Good luck.

Similar Messages

  • Quick Searches sort algorithm

    Hello,
    I'm defining some Quick Search queries to be used in Agent Inbox (through SAP Menu>Interaction Center>Administration>Agent Inbox>Define Quick Searches (CRMC_IC_AUI_QUICKS)
    There is field for defining 'Special Sort' for search results which can be used to define sort algorithm in addition to default options.
    My question is, how can I define sort algorithm? I think it is some xml algorithm but I have no idea how? Does anyone have any examples?
    Thanks,

    Hi John,
    Thanks for your response. I saw page 48 in the Inbox FAQ doc. It does talk about method for Custom sort by doesn't say anything about how?
    I need more details. Someone mentioned that we can write xml sort queries in Custom sort field but I'm looking for more information on how it can be done.
    Thanks,

  • Hi how to find runtime for sorting algorithms

    I am new to java.......please help me out by taking a sorting algorithm and find the run time of it ......
    Thanks in Advance

    If by "runtime" you just mean the amount of time it takes to execute across some set of input...then you can use java.lang.System.currentTimeMillis() to get the current time in milliseconds since Jan 1 1970. Do that both before and after you run the code that implements the algorithm, and subtract to get the difference as running time in milliseconds. Or, if this weren't part of a homework assignment, you could just use a profiler.
    If by "runtime" you mean the execution environment, then you want to use java.lang.Runtime.getRuntime(). This has nothing to do with algorithms.
    If you mean that you want to analyze the efficiency of the algorithm (eg it's "big-O" notation), then read a textbook on algorithms. This has nothing to do with Java, apart from that Java is just one computer language out of many in which algorithms can be implemented.

  • [SOLVED] What is this sorting algorithm? (or a new one?)

    Hello everyone!
    Just before starting, i apologize for my grammar mistakes.
    I found a new sorting algorithm but i'm not sure if i really found it. There are too many sorting algorithms and mine is a really simple one; so, i belive that it can be found years ago.
    I searched popular sorting algorithms, but none of the them is the answer.
    Here is algorithm:
    * Search the numbers between brackets
    [24 12 12 55 64 18 32 31]
    * Find smallest one
    [24 12 12 55 64 18 32 31]
    ^S
    * Swap the first item between brackets with smallest one
    [12 12 24 55 64 18 32 31]
    * Find largest one
    [12 12 24 55 64 18 32 31]
    ^L
    * Swap the last item between brackets with largest one
    [12 12 24 55 31 18 32 64]
    * Move brackets by one.
    12[12 24 55 31 18 32]64
    * Continue from step one until the array is sorted
    /* rottsort
    Copyright (c) 2013 Bora M. Alper
    #include <stdio.h>
    void print_array (const int *array, const int length);
    int rottsort_swap (int *x, int *y);
    void rottsort (int *array, const int length);
    int rottsort_largest (const int *array, const int start, const int end);
    int rottsort_smallest (const int *array, const int start, const int end);
    void print_array (const int *array, const int length) {
    int i;
    for (i=0; i < length; ++i)
    printf ("%d ", array[i]);
    putchar ('\n');
    int main (void) {
    int array[] = {24, 12, 12, 55, 64, 18, 32, 31};
    print_array(array, 8);
    rottsort(array, 8);
    print_array(array, 8);
    return 0;
    int rottsort_swap (int *x, int *y) {
    const int temp = *x;
    *x = *y;
    *y = temp;
    void rottsort (int *array, const int length) {
    int i, largest_pos, smallest_pos;
    for (i=0; i < length/2; ++i) {
    largest_pos = rottsort_largest(array, i, length-1-i);
    rottsort_swap(&(array[largest_pos]), &(array[length-1-i]));
    smallest_pos = rottsort_smallest(array, i, length-1-i);
    rottsort_swap(&(array[smallest_pos]), &(array[i]));
    int rottsort_largest (const int *array, const int start, const int end) {
    int i, largest_pos = start;
    for (i=start; i <= end; ++i)
    if (array[i] >= array[largest_pos])
    largest_pos = i;
    return largest_pos;
    int rottsort_smallest (const int *array, const int start, const int end) {
    int i, smallest_pos = start;
    for (i=start; i <= end; ++i)
    if (array[i] <= array[smallest_pos])
    smallest_pos = i;
    return smallest_pos;
    P.S.: If this is a new sorting algorithm, i name it as "rottsort". :)
    Last edited by boraalper4 (2013-08-11 19:08:17)

    Trilby wrote:
    Because you already have two variables for largets and smallest, there is no reason to loop through the whole list twice to get each.  Loop through the list (or list subset) once, and in each loop check if the current item is smaller than smallest_pos or larger than largest_pos.
    This will increase efficiency by a factor of two.
    As written I believe it'd be less efficient than even a simple bubble sort.  With the above revision it may be comparable to a bubble sort.
    Thanks for quick answer and advice. :) I will try to do that. When i'm done, i will post the new code.
    Code is tested on codepad. (I edited the code on my phone so, sorry for formatting)
    /* rottsort
    Copyright (c) 2013 Bora M. Alper
    #include <stdio.h>
    void print_array (const int *array, const int length);
    int rottsort_swap (int *x, int *y);
    void rottsort (int *array, const int length);
    void rottsort_find (int *smallest_pos, int *largest_pos, const int *array, const int start, const int end);
    void print_array (const int *array, const int length) {
    int i;
    for (i=0; i < length; ++i)
    printf ("%d ", array[i]);
    putchar ('\n');
    int main (void) {
    int array[] = {24, 12, 12, 55, 64, 18, 32, 31};
    print_array(array, 8);
    rottsort(array, 8);
    print_array(array, 8);
    return 0;
    int rottsort_swap (int *x, int *y) {
    const int temp = *x;
    *x = *y;
    *y = temp;
    void rottsort (int *array, const int length) {
    int i, largest_pos, smallest_pos;
    for (i=0; i < length/2; ++i) {
    rottsort_find (&smallest_pos, &largest_pos, array, i, length-1-i);
    rottsort_swap(&(array[largest_pos]), &(array[length-1-i]));
    if (smallest_pos == length-1-i)
    smallest_pos = largest_pos;
    rottsort_swap(&(array[smallest_pos]), &(array[i]));
    void rottsort_find (int *smallest_pos, int *largest_pos, const int *array, const int start, const int end) {
    int i;
    *smallest_pos = start;
    *largest_pos = start;
    for (i=start; i <= end; ++i) {
    if (array[i] >= array[*largest_pos])
    *largest_pos = i;
    if (array[i] <= array[*smallest_pos])
    *smallest_pos = i;
    Last edited by boraalper4 (2013-08-11 15:21:48)

  • Quick Select algorithm - implementation seems not to function- why?

    Hello! I have to work out a essay about the Quick Select algorithm. For this I found a book with implementation code.
    But if I implement it in java it does not work.
    Here is the code, could you please tell me what's wrong with it?
    public class QuickS {
    public static void main(String[] args) {
              int [] int_array = {4,0,6,5,3,9,8,2,1,7};
                    System.out.println("\n"+quickselect(int_array,9,2));
    } //endmethod main
    public static int quickselect (int [] array, int len, int k)
              int pivot = len - 1;
              pivot = partition(array, 0, len -1, pivot);
              int rank = pivot + 1;
              if (k == rank)
              {           for (int m= 0; m < array.length; m++)
                        System.out.print(array[m]+" ");
                   return pivot;
              if (k < rank)
                   return quickselect(array, rank - 1, k);
              else
                   return pivot + 1 + quickselect(partArr(array, pivot+1), len - rank, k - rank);
         }  //endmethod quickselect
         public static int partition(int [] array, int l, int r, int pivot)
          int i = l-1;
          int j = r;
          swap(array, pivot, r);
          pivot = r;
          while(i < j)
               do i++; while ((i < j) && (array[i] < array[pivot]));
               do j--; while ((j > i) && (array[j] > array[pivot]));
               if (i >= j)
                    swap(array, i, pivot);
               else
                    swap(array, i, j);
          } //endwhile
          return i;
       } //endmethod partition
         public static int [] swap(int [] arr, int index1, int index2)
              int tmp = arr[index2];
              arr[index2] = arr[index1];
              arr[index1] = tmp;
              return arr;
         } //endmethod swap
         public static int [] partArr(int [] arr, int index)
              int [] newArr = new int [arr.length-index];
              for (int i = 0, j = index; i < newArr.length; i++, j++)
              newArr[i] = arr[j];
              return newArr;
         } //endmethod partArr
    } //endclass QuickS  Please help me! What do you think is sense of the quickselect method? I thought to find out the index of a searched value? e.g. in this case k=2 and the returned value has to be 2 then. But this doesn't work...

    Oracle9i Database Concepts
    Release 1 (9.0.1)
    Part Number A88856-02
    PL/SQL Blocks and Roles
    The use of roles in a PL/SQL block depends on whether it is an anonymous block or a named block (stored procedure, function, or trigger), and whether it executes with definer rights or invoker rights.
    Named Blocks with Definer Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer rights. Roles are not used for privilege checking and you cannot set roles within a definer-rights procedure.
    The SESSION_ROLES view shows all roles that are currently enabled. If a named PL/SQL block that executes with definer rights queries SESSION_ROLES, the query does not return any rows.
    Anonymous Blocks with Invoker Rights
    Named PL/SQL blocks that execute with invoker rights and anonymous PL/SQL blocks are executed based on privileges granted through enabled roles. Current roles are used for privilege checking within an invoker-rights PL/SQL block, and you can use dynamic SQL to set a role in the session.

  • Sort Algorithm Analysis

    I am currently performing analysis on many sorting algorithms. I am having a little bit of trouble and I was wondering if anyone knew of any good reference internet sites or books that could help me. Thank you.
    John

    I am actually currently using that book with some success. I was wondering if there are any internet resources that you know about. Although Weiss's analysises are extensive, I'm just trying to find different sources.
    John

  • Sort algorithm interface

    Hi all,
    As part of a project, I'm required to implement a sorting algorithm that follows a specified simple interface, which is:
    public interface Sort<T extends Comparable<T>>
         void sort(T[] array,int size);
    }The implementation of the algorithm isn't a problem (and I would be cheating if I asked for assistance with that), but I keep getting compile errors when I try to link it to the interface.
    For example:
    public class Sorting<T> implements Sort<T extends Comparable<T>>
         Sorting Algorithm
    }gives "> expected" as an error message". I've tried a few slight variations on the above, but all are giving similar errors.
    Thanks for any help in advance,
    Phil.
    Edited by: pg548 on Apr 15, 2010 6:08 AM

    pg548 wrote:
    Another question (which I'm sure is embarassingly obvious..).Well, thankfully this is New To Java.
    How do I call this sort method from somewhere else in the application?First you create your class.
    Sort<WordOccurrences> mySorter = new Sorting<WordOccurrences>();Then you call the sort method.
    mySorter.sort(wordFrequencyArray, wordFrequencyArray.length);And that's how interfaces work like magic. If you come up with a better sorter class that still follows the Sort<T> interface, you can just replace it in the "new Sorting<WordOccurrences>();" part and the code will work without further changes.

  • Sorting Algorithms

    Does anyone have a program that contains a way of analysing the speed at which data from a file is sorted, implemented using teh following algorithms - bubble sort, shell sort and Quick Sort. The file with the elements to be sorted is a simple text file and it has six figure numbers in one single coloumn.
    Cheers
    Grant

    Does anyone have a program that contains a way of
    analysing the speed at which data from a file is
    sortedSorts are typically analyzed mathematically, based on the number of loops, recursions, whatever. From memory, and I'm sure someone will correct me if/where I'm wrong:
    Bubble = O(n^2) -- ie, for a set of N items, it performs the
    innermost code N*N
    Shell = O(N*log2(N)) -- I don't think this is quite right, but
    Shell is one of the faster sorts around
    Quick = varies -- on random input, I think it's N*log2(N),
    but on already-sorted input it is N*N

  • Pbit sorting algorithm

    Hello everyone,
    i'm university student and i need to implement PBIT sorting algorithm in Java. PBIT is 'profit before interest and taxe'.
    Pesudocode for this algorithm in C++:
    Node Pbit(Node L, unsigned M, Node *P=NULL)
    if(L)
    {  M=M-K;
    Node *tab[]={NULL};
    for(Node i,*in; i=L; i->next=*in,*in=i)
    { in=&tab[(L->data>>M) %];
    L=L->next;
    if(M) for(int i=0; i<; i++) P=Pbit(tab, M, P);
    else for(int i=0; i<; i++) P=merge(tab[i], P);
    return P;
    The pattern of this algorithm is grouping element by variable K,
    where K = n bit pattern. So, this algorithm break the list by it's pattern
    of bit. I give example :
    We have a list consisting of eight one-byte element.
    21 -> 3 -> 200 -> 14 -> 156 -> 47 -> 3 -> 214 -> NULL
    We put element of the list in relation to the first four bits (K = 4) from the
    right (the most important � little-endian order of byte):
    {3,14,3} � {21} � {47} � {156} � {209,214}
    Next, we put elements in each groups separately looking at the following four bits (in case of one-byte type - the last ones):
    { {3} � {3} � {14} } � {21} � {47} � {156} � { {209} � {214} }
    In �two steps� n one-byte elements are sorted.
    For completer reference of this algorithm is available at
    http://arxiv.org/PS_cache/cs/pdf/0511/0511020.pdf
    Thank you for your help :)

    i'm university student and i need to implement PBIT
    sorting algorithm in Java. PBIT is 'profit before
    interest and taxe'.
    For completer reference of this algorithm is
    available at <<Link to paper that has nothing to do with finance>>
    Congratulations on making it to college before learning how to read!

  • Best sorting algorithm

    What would be the best sorting to algorithm for a list that is probably 90% sorted? I assume that quick sort wouldn't be the most efficient in this case.
    EDIT: the list is made of strings. So i don't think any of the linear sorts will work.
    Also, what sorting algorithm does Collections.sort() use?

    Quote from the javadocs:
    The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n log(n) performance.
    http://java.sun.com/javase/6/docs/api/java/util/Collections.html#sort(java.util.List)

  • Which sorting algorithm Oracle use?

    Hi ,
    May i know which sorting algorithm oracle use ?
    Because when i am using order by with an sorted or unsorted data it is taking same time.
    Thanks in advance

    Pradeep Dewani wrote:
    Hi ,
    But i want to know that whether oracle consider sorted and unsorted data in same way or not ?
    Please help if any body know because i cant decrease number of rows but i can sorted them in a temp table .Pradeep,
    a SORT is usually an additional operation that can be quite costly depending on the amount of data to sort and the available memory for sorting. It would show up in the execution plan as SORT operation.
    Note that the optimizer can take various shortcuts to minimize the impact of a sort operation. If you e.g. use a "top-N" query properly, it can take advantage of a "SORT ORDER BY STOPKEY" operation that only keeps the top N rows sorted in memory.
    If you have suitable indexes, the optimizer might also come to the conclusion that a SORT operation can be eliminated by traversing an index in the requested order, so you could have a query that uses an ORDER BY but the execution plan doesn't show any explicit SORT operations.
    So to answer your question: Oracle doesn't consider sorted and unsorted data in the same way. Sorting is an additional operation that needs to be handled somehow.
    If you have a query that takes the same time whether sorted or not the execution time is probably driven by other factors and the SORT operation is negligible in terms of performance.
    But there are other scenarios possible where a SORT operation takes significant time and influences the execution time. SORTs can also lead to overall changes in the execution plan that are not directly related to the SORT operation.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Quick sort recursion

    this is my version of quick sort
    i cant seem to figure out how to make it a recursive code
    any line of code that helps me do this, along with an explanation of why it works will be welcomed. Recursion is just too hard to picture inside my head
        public static String[] quickSort (String[] A, int start, int end){
            //if size is 1 return
            if (A.length < 2 ) return A;
            int pivotIndex = start;
                //do the partition
                for (int i=pivotIndex+1; i<end; i++){
                    if (compareStrings(A,A[pivotIndex])){
    swapString(A, pivotIndex+1, i);
    swapString(A, pivotIndex, pivotIndex+1);
    pivotIndex++;
    return A;

    when i take the return type out of the method, aka i make it void, and i write those two lines i am getting a runtime error
    this is the code
        public static void quickSort (String[] A, int start, int end){
            //if size is 1 return
            if (A.length < 2 ) return;
            int pivotIndex = start;
                //do the partition
                for (int i=pivotIndex+1; i<end; i++){
                    if (compareStrings(A,A[pivotIndex])){
    swapString(A, pivotIndex+1, i);
    swapString(A, pivotIndex, pivotIndex+1);
    pivotIndex++;
    quickSort(A, start, pivotIndex);
    quickSort(A, pivotIndex+1, end);
    this is how i call it
            String[]  data2 = new String[10];
            data2[0]= "5";
            data2[1]= "2";
            data2[2]= "9";
            data2[3]= "7";
            data2[4]="8";
            data2[5]= "0";
            data2[6]="3";
            data2[7]= "1";
            data2[8]="4";
            data2[9]= "6";
            quickSort(data2);
            System.out.println("");
            System.out.println("============================================");
            System.out.println("");
            for (int i=0; i < data.length; i++) {System.out.println(data2);}

  • I uploaded that new IOS 8.0 and now I cannot open my mail, Safari, or the new "TIPS" app. Does Apple have some sort of help, other than going to a store that is over 40 miles away?

    I uploaded that new IOS 8.0 and now I cannot open my mail, Safari, or the new "TIPS" app. Does Apple have some sort of help, other than going to a store that is over 40 miles away?

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • How to display the steps of a sort algorithm??

    I'm having a lot of trouble trying to display the results of applying a merge sort to a set of 10 integers. The problem is not that I can't see anything on the text area within the applet, the problem is that I am getting a lot of repetitions and duplicates occuring. I have tried inserting the Display() method in various positions in the sort, I have set up a temporary array to compare the elements of the array before and after the particular step of the sort is applied and an if statement to display only if there are changes have happened to the array. Can anyone advise?? Here's the code for the sort, including my current attempt to get the sort diplayed in steps:
    public class MSort extends JFrame
    public MSort(int[] anArray, JApplet anApplet)
    a = anArray;
    applet = anApplet;
    ArrayUtil.Display(a,textArea);
    JumpLine(textArea);
    Sorts the array managed by this merge sorter
    public void sort()
    throws InterruptedException
    mergeSort(0, a.length - 1);
    textArea.append("End of Merge Sort");
    Sorts a range of the array, using the merge sort
    algorithm.
    @param from the first index of the range to sort
    @param to the last index of the range to sort
    public void mergeSort(int from, int to)
    throws InterruptedException
    if (from == to) return;
    int mid = (from + to) / 2;
    mergeSort(from, mid);
    mergeSort(mid + 1, to);
    merge(from, mid, to);
    Merges two adjacent subranges of the array
    @param from the index of the first element of the
    first range
    @param mid the index of the last element of the
    first range
    @param to the index of the last element of the
    second range
    public void merge(int from, int mid, int to)
    throws InterruptedException
    startPosition = from;
    endPosition = to;
    int n = to - from + 1;
    // size of the range to be merged
    // merge both halves into a temporary array b
    int[] b = new int[n];
    int i1 = from;
    // next element to consider in the first range
    int i2 = mid + 1;
    // next element to consider in the second range
    int j = 0;
    // next open position in b
    int[] oldArray = new int[a.length];
    System.arraycopy(a, 0, oldArray, 0, oldArray.length);
    // as long as neither i1 nor i2 past the end, move
    // the smaller element into b
    while (i1 <= mid && i2 <= to)
    if (a[i1] < a[i2])
              b[j] = a[i1];
    for (int m=0; m < a.length-1; m++) {
    if (a[m] != oldArray[m]){
    ArrayUtil.Display(a,textArea);// method I've put in to try and compare the array b4 and after the sort
    JumpLine(textArea);
    i1++;
    else
    b[j] = a[i2];
    for (int m=0; m < a.length-1; m++) {
    if (a[m] != oldArray[m]){
    ArrayUtil.Display(a,textArea);// method I've put in to try and compare the array b4 and after the sort
    JumpLine(textArea);
    i2++;
         pause(2);
    j++;
         for (int k=0; k < a.length-1; k++) {// method I've put in to                  try and compare the array b4 and after the sort
    if (a[k] != oldArray[k]){
    ArrayUtil.Display(a,textArea);
    JumpLine(textArea);
    // note that only one of the two while loops
    // below is executed
    // copy any remaining entries of the first half
    while (i1 <= mid)
    b[j] = a[i1];
    for (int m=0; m < a.length-1; m++) {
    if (a[m] != oldArray[m]){
    ArrayUtil.Display(a,textArea);// method I've put in to try and compare the array b4 and after the sort
    JumpLine(textArea);
    //ArrayUtil.Display(a,textArea);
                        //JumpLine(textArea);
    pause(2);
    i1++;
    j++;
    // copy any remaining entries of the second half
    while (i2 <= to)
    b[j] = a[i2];
    for (int m=0; m < a.length-1; m++) {
    if (a[m] != oldArray[m]){
    ArrayUtil.Display(a,textArea);// method I've put in to try and compare the array b4 and after the sort
    JumpLine(textArea);
         } pause(2);
    i2++;
    j++;
    // copy back from the temporary array
    for (j = 0; j < n; j++)
    a[from + j] = b[j];
    for (int m=0; m < a.length-1; m++) {
    if (a[m] != oldArray[m]){
    ArrayUtil.Display(a,textArea);// method I've put in to try and compare the array b4 and after the sort
    JumpLine(textArea);
    pause(2);
    public void pause(int steps)
    throws InterruptedException
    if (Thread.currentThread().isInterrupted())
    throw new InterruptedException();
    applet.repaint();
    Thread.sleep(steps * DELAY);
    private int[] a;
    private int startPosition = -1;
    private int endPosition = -1;
         private JTextArea textArea = SortApplet1.getTextArea2();
    private JApplet applet;
    private static final int DELAY = 100;
    public static void JumpLine(JTextArea t){
         JTextArea TxtArea = t;
         TxtArea.append("\n\n");
    }

    see sample at http://lwh.free.fr/pages/algo/tri/tri.htm
    marvinrouge

  • Quick look ui helper unexpectedly quit

    Please Help!
    Every time I try to use Quick Look on a pdf file - appears only to happen with pdf files - I get a Quick Look UI Helper unexpectedly quit error. Here's info returned in error message:
    Process:               QuickLookUIHelper [394]
    Path:                  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/QuickLookUIHelper.app/Contents/MacOS/QuickLookUIHe lper
    Identifier:            com.apple.quicklook.ui.helper
    Version:               5.0 (675)
    Build Info:            QuickLook_executables-675000000000000~2
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           QuickLookUIHelper [394]
    User ID:               501
    Date/Time:             2014-12-18 18:46:15.268 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        A9B52B51-2494-1E1A-76F9-D54FB1DC5C3E
    Time Awake Since Boot: 140 seconds
    Crashed Thread:        7  Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd3260d860 (QOS: USER_INITIATED)
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000111ed7080
    VM Regions Near 0x111ed7080:
        MALLOC_LARGE           0000000111de4000-0000000111ec7000 [  908K] rw-/rwx SM=PRV
    -->
        VM_ALLOCATE            0000000112259000-000000011225a000 [    4K] rw-/rwx SM=PRV
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff9881252e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9881169f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff99971b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff99970fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff99970838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8effd43f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8effd1ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8effcffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff95ce26d1 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff95ce1e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff95cd5e23 -[NSApplication run] + 594
    11  com.apple.quicklook.ui.helper 0x000000010ce22e06 0x10ce1f000 + 15878
    12  libdyld.dylib                 0x00007fff935175c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff9881822e kevent64 + 10
    1   libdispatch.dylib             0x00007fff97329a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd3260d860 (QOS: USER_INITIATED)
    0   libCMaps.A.dylib               0x00000001153c8991 cmap_bf_set_get_unichars + 24
    1   libCMaps.A.dylib               0x00000001153ca19a cmap_csr_set_write_to_zapf_stream + 637
    2   libCMaps.A.dylib               0x00000001153cad42 cmap_zapf_table + 133
    3   com.apple.CoreGraphics         0x00007fff92b6eaec CGPDFFontCIDType0Load + 113
    4   com.apple.CoreGraphics         0x00007fff92b599f6 load_font + 255
    5   com.apple.CoreGraphics         0x00007fff92b599c3 load_font + 204
    6   com.apple.CoreGraphics         0x00007fff92b59e79 CGPDFFontGetFont + 33
    7   com.apple.CoreGraphics         0x00007fff92b6e942 cid_draw + 227
    8   com.apple.CoreGraphics         0x00007fff92b59137 CGPDFTextLayoutDrawGlyphs + 81
    9   com.apple.CoreGraphics         0x00007fff92d48150 op_Tj + 68
    10  com.apple.CoreGraphics         0x00007fff92af1aea pdf_scanner_handle_xname + 110
    11  com.apple.CoreGraphics         0x00007fff92af0e26 CGPDFScannerScan + 285
    12  com.apple.CoreGraphics         0x00007fff92aef4ef CGPDFDrawingContextDrawPage + 502
    13  com.apple.CoreGraphics         0x00007fff92aef2cc pdf_page_draw_in_context + 89
    14  com.apple.CoreGraphics         0x00007fff92aef26a CGContextDrawPDFPage + 50
    15  com.apple.QuickLookFramework   0x00007fff9286d95c QLDrawPDFPageInRect + 192
    16  com.apple.QuickLookFramework   0x00007fff9286d86d QLDrawPDFPage + 271
    17  com.apple.qldisplay.PDF       0x00000001115d7c09 0x1115d2000 + 23561
    18  com.apple.qldisplay.PDF       0x00000001115de1db 0x1115d2000 + 49627
    19  com.apple.Foundation           0x00007fff8fd5c59c -[__NSOperationInternal _start:] + 653
    20  com.apple.Foundation           0x00007fff8fd5c1a3 __NSOQSchedule_f + 184
    21  libdispatch.dylib             0x00007fff97326c13 _dispatch_client_callout + 8
    22  libdispatch.dylib             0x00007fff9732a365 _dispatch_queue_drain + 1100
    23  libdispatch.dylib             0x00007fff9732becc _dispatch_queue_invoke + 202
    24  libdispatch.dylib             0x00007fff973296b7 _dispatch_root_queue_drain + 463
    25  libdispatch.dylib             0x00007fff97337fe4 _dispatch_worker_thread3 + 91
    26  libsystem_pthread.dylib       0x00007fff903526cb _pthread_wqthread + 729
    27  libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 8:: Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd32615b90 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff98812462 _kernelrpc_mach_vm_deallocate_trap + 10
    1   libsystem_kernel.dylib         0x00007fff98816167 mach_vm_deallocate + 25
    2   libsystem_malloc.dylib         0x00007fff8eda8d88 deallocate_pages + 74
    3   libsystem_malloc.dylib         0x00007fff8eda82fe free_large + 720
    4   libCMaps.A.dylib               0x00000001153c8d4d cmap_bf_set_release + 23
    5   libCMaps.A.dylib               0x00000001153c965f cmap_csr_set_release + 112
    6   libCMaps.A.dylib               0x00000001153cac05 cmap_release + 61
    7   com.apple.CoreGraphics         0x00007fff92e3ccf0 CGPDFCMapRelease + 22
    8   com.apple.CoreGraphics         0x00007fff92b59981 load_font + 138
    9   com.apple.CoreGraphics         0x00007fff92b59e79 CGPDFFontGetFont + 33
    10  com.apple.CoreGraphics         0x00007fff92b6e942 cid_draw + 227
    11  com.apple.CoreGraphics         0x00007fff92b59137 CGPDFTextLayoutDrawGlyphs + 81
    12  com.apple.CoreGraphics         0x00007fff92d48150 op_Tj + 68
    13  com.apple.CoreGraphics         0x00007fff92af1aea pdf_scanner_handle_xname + 110
    14  com.apple.CoreGraphics         0x00007fff92af0e26 CGPDFScannerScan + 285
    15  com.apple.CoreGraphics         0x00007fff92aef4ef CGPDFDrawingContextDrawPage + 502
    16  com.apple.CoreGraphics         0x00007fff92aef2cc pdf_page_draw_in_context + 89
    17  com.apple.CoreGraphics         0x00007fff92aef26a CGContextDrawPDFPage + 50
    18  com.apple.QuickLookFramework   0x00007fff9286d95c QLDrawPDFPageInRect + 192
    19  com.apple.QuickLookFramework   0x00007fff9286d86d QLDrawPDFPage + 271
    20  com.apple.qldisplay.PDF       0x00000001115d7c09 0x1115d2000 + 23561
    21  com.apple.qldisplay.PDF       0x00000001115de1db 0x1115d2000 + 49627
    22  com.apple.Foundation           0x00007fff8fd5c59c -[__NSOperationInternal _start:] + 653
    23  com.apple.Foundation           0x00007fff8fd5c1a3 __NSOQSchedule_f + 184
    24  libdispatch.dylib             0x00007fff97326c13 _dispatch_client_callout + 8
    25  libdispatch.dylib             0x00007fff9732a365 _dispatch_queue_drain + 1100
    26  libdispatch.dylib             0x00007fff9732becc _dispatch_queue_invoke + 202
    27  libdispatch.dylib             0x00007fff973296b7 _dispatch_root_queue_drain + 463
    28  libdispatch.dylib             0x00007fff97337fe4 _dispatch_worker_thread3 + 91
    29  libsystem_pthread.dylib       0x00007fff903526cb _pthread_wqthread + 729
    30  libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000032611fe7  rcx: 0x0000000000002010  rdx: 0x00007fbd3260bca0
      rdi: 0x00007fbd32613c40  rsi: 0x0000000000002010  rbp: 0x0000000114fc74a0  rsp: 0x0000000114fc74a0
       r8: 0x0000000111ec7000   r9: 0x00007fbd3400de80  r10: 0x0000000000000000  r11: 0x00007fbc1f099592
      r12: 0x00007fbd3260ee70  r13: 0x00000000000380e4  r14: 0x0000000114fc7504  r15: 0x00007fbd3403da20
      rip: 0x00000001153c8991  rfl: 0x0000000000010293  cr2: 0x0000000111ed7080
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10ce1f000 -        0x10ce43fff  com.apple.quicklook.ui.helper (5.0 - 675) <2350AA90-6881-3407-A556-AF68F3239E54> /System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework/Re sources/QuickLookUIHelper.app/Contents/MacOS/QuickLookUIHelper
           0x1115d2000 -        0x1115e3fff  com.apple.qldisplay.PDF (5.0 - 675) <8EE49A35-37B3-3B69-849E-FA469D28B24F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/PDF.qldisplay/Contents/MacOS/PDF
           0x1153c5000 -        0x115578ff3  libCMaps.A.dylib (772) <FC49455E-AD9D-3D60-9642-39CC52E34C89> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCMaps .A.dylib
        0x7fff6a132000 -     0x7fff6a168837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8d7f4000 -     0x7fff8d80dfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8d80e000 -     0x7fff8d816fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8db49000 -     0x7fff8dbbffe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8dbc0000 -     0x7fff8dc0dff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8dc0e000 -     0x7fff8dc15fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8dc16000 -     0x7fff8dc16fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8dc24000 -     0x7fff8dc41ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8dc42000 -     0x7fff8dc54ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff8dc55000 -     0x7fff8dce3ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8dce4000 -     0x7fff8df90fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8df91000 -     0x7fff8df91fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8df92000 -     0x7fff8e1fcff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8e1fd000 -     0x7fff8e1fffff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8e200000 -     0x7fff8e403ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8e409000 -     0x7fff8e420ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8e43d000 -     0x7fff8e457ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8e458000 -     0x7fff8e478fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8e485000 -     0x7fff8e998ff3  com.apple.JavaScriptCore (10600 - 10600.1.17) <CE5255CC-E13F-3694-B6DD-5285356BFCC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8e9a0000 -     0x7fff8e9cbff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8e9cc000 -     0x7fff8e9d7fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8e9ed000 -     0x7fff8e9f7ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8ea38000 -     0x7fff8ea3afff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8ea7c000 -     0x7fff8eb1bdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8eb1c000 -     0x7fff8eb24ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8eb25000 -     0x7fff8ed0aff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff8ed0b000 -     0x7fff8ed10ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8ed1c000 -     0x7fff8ed55fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8ed56000 -     0x7fff8ed9cff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8ed9d000 -     0x7fff8edb9ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8edba000 -     0x7fff8edbdfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8edbe000 -     0x7fff8ee1dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8ee1e000 -     0x7fff8ee9bfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8ee9c000 -     0x7fff8efccfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8efcd000 -     0x7fff8efcefff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8efcf000 -     0x7fff8f2d1fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8f2d2000 -     0x7fff8f2dcff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f2dd000 -     0x7fff8f2f1ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f30e000 -     0x7fff8f30efff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8f30f000 -     0x7fff8f30ffff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f310000 -     0x7fff8f311fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8f337000 -     0x7fff8f35dff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8f368000 -     0x7fff8f3e0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f71c000 -     0x7fff8f76dff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f76e000 -     0x7fff8f770ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8f772000 -     0x7fff8f79dfff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8f79e000 -     0x7fff8f79fff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8f873000 -     0x7fff8f965fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8f966000 -     0x7fff8f9c0ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8fbe4000 -     0x7fff8fbe8fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8fc8e000 -     0x7fff8fc8efff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8fd4c000 -     0x7fff8fd53fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8fd54000 -     0x7fff90082ff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff900bb000 -     0x7fff9026bff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff9026c000 -     0x7fff9030dff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff9030e000 -     0x7fff9034eff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9034f000 -     0x7fff90358fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff90359000 -     0x7fff9035eff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff90367000 -     0x7fff9045bff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9045c000 -     0x7fff904c3ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff9077f000 -     0x7fff907afff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff907b0000 -     0x7fff907b0fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff907b1000 -     0x7fff908c3ff7  libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff908c4000 -     0x7fff908dfff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff908e0000 -     0x7fff9092cfff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9092d000 -     0x7fff9097afff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff9097b000 -     0x7fff9098bff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff9098c000 -     0x7fff90a00fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90a01000 -     0x7fff90a25fef  libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff90a2f000 -     0x7fff90b51ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90b52000 -     0x7fff90b58ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90b72000 -     0x7fff90bacffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90bad000 -     0x7fff90baeff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff90c86000 -     0x7fff90de4ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90e4b000 -     0x7fff90eccff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff90ecd000 -     0x7fff90efafff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff90efb000 -     0x7fff90f0cff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff90f0d000 -     0x7fff90f0ffff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9107e000 -     0x7fff911e9ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff911f5000 -     0x7fff911f9ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff911fa000 -     0x7fff91462ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff914aa000 -     0x7fff91569fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff917f7000 -     0x7fff9181ffff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff9188b000 -     0x7fff91890ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff9189c000 -     0x7fff9189dfff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff9189e000 -     0x7fff918aaff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff9192f000 -     0x7fff91a47ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff91a48000 -     0x7fff91a62ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff91a63000 -     0x7fff91b72ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91b73000 -     0x7fff91bc4ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff91bda000 -     0x7fff91c48ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff91de4000 -     0x7fff91df5fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff91df6000 -     0x7fff91dfdff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91dfe000 -     0x7fff91e29fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff91e3d000 -     0x7fff91e44fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91e45000 -     0x7fff91e47fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff91e48000 -     0x7fff91e63ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff91e64000 -     0x7fff91e66fff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff91e67000 -     0x7fff91e6bfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff91e6c000 -     0x7fff92358fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff923db000 -     0x7fff923e9ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff923ea000 -     0x7fff923f5ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff92453000 -     0x7fff924a6ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff924a7000 -     0x7fff92635fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff92636000 -     0x7fff92650ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff92651000 -     0x7fff926bdfff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff926be000 -     0x7fff92753ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff9283a000 -     0x7fff92895fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff92896000 -     0x7fff928a7ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff928a8000 -     0x7fff928c4fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff928c5000 -     0x7fff9296bfff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff92a87000 -     0x7fff932c0ff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff932c1000 -     0x7fff932f1fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff932f2000 -     0x7fff932f8ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff932f9000 -     0x7fff93326fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93327000 -     0x7fff9332bfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9332c000 -     0x7fff9332fff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff93330000 -     0x7fff9337cff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff9339c000 -     0x7fff934e0ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff934e1000 -     0x7fff93513ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff93514000 -     0x7fff93517ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff93518000 -     0x7fff93525ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff9352f000 -     0x7fff9357eff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff93c0a000 -     0x7fff93c0aff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff93c0b000 -     0x7fff9403bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff9403c000 -     0x7fff9411ffff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94120000 -     0x7fff94121ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff94122000 -     0x7fff94126fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff94168000 -     0x7fff944d3fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff944d4000 -     0x7fff944eeff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff94d97000 -     0x7fff94da0fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff94f20000 -     0x7fff94facfff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff94fad000 -     0x7fff94fb6fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff94fb7000 -     0x7fff95231fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95296000 -     0x7fff95296fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff95297000 -     0x7fff952d2fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff952d5000 -     0x7fff952e0ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff952e1000 -     0x7fff952f7ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff95c3e000 -     0x7fff95c5dfff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff95c5e000 -     0x7fff95c61fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff95ca8000 -     0x7fff95cbaff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff95cbb000 -     0x7fff95cbdfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff95cbe000 -     0x7fff967fffff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff96800000 -     0x7fff96800fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff96814000 -     0x7fff96814ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff96815000 -     0x7fff96828ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff9682e000 -     0x7fff968b0fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96949000 -     0x7fff96d20fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff96e60000 -     0x7fff96ef1fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff96ef2000 -     0x7fff96f22ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff96f3b000 -     0x7fff96f3dff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff96fd7000 -     0x7fff96fd9ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff96fe2000 -     0x7fff96fefff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff96ff0000 -     0x7fff96ff2ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff96ff3000 -     0x7fff970d0ff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff970d1000 -     0x7fff972b6267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff97325000 -     0x7fff9734fff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff97381000 -     0x7fff97381ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff973d7000 -     0x7fff97418fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff97496000 -     0x7fff974dfff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff974e0000 -     0x7fff97574fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff97575000 -     0x7fff9757afff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff97596000 -     0x7fff97865ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff97866000 -     0x7fff9786afff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff9797b000 -     0x7fff97983fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff97984000 -     0x7fff97989ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff9798a000 -     0x7fff97a28fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff97cea000 -     0x7fff97cf2fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff97f8a000 -     0x7fff97fc2ffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff97fdd000 -     0x7fff98506ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff985fd000 -     0x7fff9860afff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff9860b000 -     0x7fff9862fff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff98790000 -     0x7fff98790fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff98791000 -     0x7fff98800fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff98801000 -     0x7fff9881efff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9882e000 -     0x7fff98856fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff9918f000 -     0x7fff99193ff7  libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff99194000 -     0x7fff99286ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff99287000 -     0x7fff99294fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff992a4000 -     0x7fff995d7ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff995d8000 -     0x7fff995eeff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff995ef000 -     0x7fff9962ffff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff99630000 -     0x7fff99659ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff9965a000 -     0x7fff9967dfff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9967e000 -     0x7fff99707fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff99708000 -     0x7fff9983aff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9983b000 -     0x7fff998d1ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff998ff000 -     0x7fff99c95fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff99c96000 -     0x7fff99cdcffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff99d3c000 -     0x7fff99debfe7  libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff99dec000 -     0x7fff99e05ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff99e06000 -     0x7fff99f2dfff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9af06000 -     0x7fff9af0cfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff9af0d000 -     0x7fff9af13fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff9af14000 -     0x7fff9af35fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9af36000 -     0x7fff9afa7ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff9afa8000 -     0x7fff9b28fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9b3f5000 -     0x7fff9b469ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff9b4b4000 -     0x7fff9b4bcff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff9b51a000 -     0x7fff9b51dfff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9b51e000 -     0x7fff9b60efef  libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9b60f000 -     0x7fff9b617ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff9b618000 -     0x7fff9b621ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9b622000 -     0x7fff9b624ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff9b625000 -     0x7fff9b940fcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff9b99c000 -     0x7fff9b9f7fef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9ba20000 -     0x7fff9ba21fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff9ba22000 -     0x7fff9ba89ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9bd6c000 -     0x7fff9bd75ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff9bd76000 -     0x7fff9bd79ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff9bd7a000 -     0x7fff9bd85fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9be39000 -     0x7fff9be44ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff9be45000 -     0x7fff9c252ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff9c253000 -     0x7fff9c2a0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff9c31f000 -     0x7fff9c459ff7  com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9c49c000 -     0x7fff9c4c1fff  libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff9c548000 -     0x7fff9c557fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff9c586000 -     0x7fff9c5b4fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff9c5b5000 -     0x7fff9c5ddffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff9c5de000 -     0x7fff9c619fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff9c61f000 -     0x7fff9c673fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff9c674000 -     0x7fff9c689ff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff9c877000 -     0x7fff9c891ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff9c96a000 -     0x7fff9c96cffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff9c979000 -     0x7fff9c97dfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff9c9cd000 -     0x7fff9ca05fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9ca06000 -     0x7fff9cb4cfef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff9cd1a000 -     0x7fff9cd46fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff9d0ac000 -     0x7fff9d0adfff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 219
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=213.0M resident=184.8M(87%) swapped_out_or_unallocated=28.2M(13%)
    Writable regions: Total=92.2M written=14.6M(16%) resident=23.9M(26%) swapped_out=0K(0%) unallocated=68.3M(74%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Activity Tracing                   2048K
    CG shared images                    144K
    Dispatch continuations             8192K
    Image IO                           1844K
    Kernel Alloc Once                     8K
    MALLOC                             51.1M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    STACK GUARD                        56.0M
    Stack                              12.1M
    VM_ALLOCATE                        17.1M
    __DATA                             19.7M
    __IMAGE                             528K
    __LINKEDIT                         70.1M
    __TEXT                            142.9M
    __UNICODE                           544K
    mapped file                        53.0M
    shared memory                         4K
    ===========                      =======
    TOTAL                             435.2M
    Model: MacBookPro11,1, BootROM MBP111.0138.B11, 2 processors, Intel Core i5, 2.8 GHz, 16 GB, SMC 2.16f68
    Graphics: Intel Iris, Intel Iris, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
    USB Device: Internal Memory Card Reader
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
    Here's EtreCheck:

    Please Help!
    Every time I try to use Quick Look on a pdf file - appears only to happen with pdf files - I get a Quick Look UI Helper unexpectedly quit error. Here's info returned in error message:
    Process:               QuickLookUIHelper [394]
    Path:                  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/QuickLookUIHelper.app/Contents/MacOS/QuickLookUIHe lper
    Identifier:            com.apple.quicklook.ui.helper
    Version:               5.0 (675)
    Build Info:            QuickLook_executables-675000000000000~2
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           QuickLookUIHelper [394]
    User ID:               501
    Date/Time:             2014-12-18 18:46:15.268 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        A9B52B51-2494-1E1A-76F9-D54FB1DC5C3E
    Time Awake Since Boot: 140 seconds
    Crashed Thread:        7  Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd3260d860 (QOS: USER_INITIATED)
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000111ed7080
    VM Regions Near 0x111ed7080:
        MALLOC_LARGE           0000000111de4000-0000000111ec7000 [  908K] rw-/rwx SM=PRV
    -->
        VM_ALLOCATE            0000000112259000-000000011225a000 [    4K] rw-/rwx SM=PRV
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff9881252e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9881169f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff99971b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff99970fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff99970838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8effd43f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8effd1ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8effcffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff95ce26d1 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff95ce1e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff95cd5e23 -[NSApplication run] + 594
    11  com.apple.quicklook.ui.helper 0x000000010ce22e06 0x10ce1f000 + 15878
    12  libdyld.dylib                 0x00007fff935175c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff9881822e kevent64 + 10
    1   libdispatch.dylib             0x00007fff97329a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd3260d860 (QOS: USER_INITIATED)
    0   libCMaps.A.dylib               0x00000001153c8991 cmap_bf_set_get_unichars + 24
    1   libCMaps.A.dylib               0x00000001153ca19a cmap_csr_set_write_to_zapf_stream + 637
    2   libCMaps.A.dylib               0x00000001153cad42 cmap_zapf_table + 133
    3   com.apple.CoreGraphics         0x00007fff92b6eaec CGPDFFontCIDType0Load + 113
    4   com.apple.CoreGraphics         0x00007fff92b599f6 load_font + 255
    5   com.apple.CoreGraphics         0x00007fff92b599c3 load_font + 204
    6   com.apple.CoreGraphics         0x00007fff92b59e79 CGPDFFontGetFont + 33
    7   com.apple.CoreGraphics         0x00007fff92b6e942 cid_draw + 227
    8   com.apple.CoreGraphics         0x00007fff92b59137 CGPDFTextLayoutDrawGlyphs + 81
    9   com.apple.CoreGraphics         0x00007fff92d48150 op_Tj + 68
    10  com.apple.CoreGraphics         0x00007fff92af1aea pdf_scanner_handle_xname + 110
    11  com.apple.CoreGraphics         0x00007fff92af0e26 CGPDFScannerScan + 285
    12  com.apple.CoreGraphics         0x00007fff92aef4ef CGPDFDrawingContextDrawPage + 502
    13  com.apple.CoreGraphics         0x00007fff92aef2cc pdf_page_draw_in_context + 89
    14  com.apple.CoreGraphics         0x00007fff92aef26a CGContextDrawPDFPage + 50
    15  com.apple.QuickLookFramework   0x00007fff9286d95c QLDrawPDFPageInRect + 192
    16  com.apple.QuickLookFramework   0x00007fff9286d86d QLDrawPDFPage + 271
    17  com.apple.qldisplay.PDF       0x00000001115d7c09 0x1115d2000 + 23561
    18  com.apple.qldisplay.PDF       0x00000001115de1db 0x1115d2000 + 49627
    19  com.apple.Foundation           0x00007fff8fd5c59c -[__NSOperationInternal _start:] + 653
    20  com.apple.Foundation           0x00007fff8fd5c1a3 __NSOQSchedule_f + 184
    21  libdispatch.dylib             0x00007fff97326c13 _dispatch_client_callout + 8
    22  libdispatch.dylib             0x00007fff9732a365 _dispatch_queue_drain + 1100
    23  libdispatch.dylib             0x00007fff9732becc _dispatch_queue_invoke + 202
    24  libdispatch.dylib             0x00007fff973296b7 _dispatch_root_queue_drain + 463
    25  libdispatch.dylib             0x00007fff97337fe4 _dispatch_worker_thread3 + 91
    26  libsystem_pthread.dylib       0x00007fff903526cb _pthread_wqthread + 729
    27  libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 8:: Dispatch queue: quicklook.pdf.rendering :: NSOperation 0x7fbd32615b90 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff98812462 _kernelrpc_mach_vm_deallocate_trap + 10
    1   libsystem_kernel.dylib         0x00007fff98816167 mach_vm_deallocate + 25
    2   libsystem_malloc.dylib         0x00007fff8eda8d88 deallocate_pages + 74
    3   libsystem_malloc.dylib         0x00007fff8eda82fe free_large + 720
    4   libCMaps.A.dylib               0x00000001153c8d4d cmap_bf_set_release + 23
    5   libCMaps.A.dylib               0x00000001153c965f cmap_csr_set_release + 112
    6   libCMaps.A.dylib               0x00000001153cac05 cmap_release + 61
    7   com.apple.CoreGraphics         0x00007fff92e3ccf0 CGPDFCMapRelease + 22
    8   com.apple.CoreGraphics         0x00007fff92b59981 load_font + 138
    9   com.apple.CoreGraphics         0x00007fff92b59e79 CGPDFFontGetFont + 33
    10  com.apple.CoreGraphics         0x00007fff92b6e942 cid_draw + 227
    11  com.apple.CoreGraphics         0x00007fff92b59137 CGPDFTextLayoutDrawGlyphs + 81
    12  com.apple.CoreGraphics         0x00007fff92d48150 op_Tj + 68
    13  com.apple.CoreGraphics         0x00007fff92af1aea pdf_scanner_handle_xname + 110
    14  com.apple.CoreGraphics         0x00007fff92af0e26 CGPDFScannerScan + 285
    15  com.apple.CoreGraphics         0x00007fff92aef4ef CGPDFDrawingContextDrawPage + 502
    16  com.apple.CoreGraphics         0x00007fff92aef2cc pdf_page_draw_in_context + 89
    17  com.apple.CoreGraphics         0x00007fff92aef26a CGContextDrawPDFPage + 50
    18  com.apple.QuickLookFramework   0x00007fff9286d95c QLDrawPDFPageInRect + 192
    19  com.apple.QuickLookFramework   0x00007fff9286d86d QLDrawPDFPage + 271
    20  com.apple.qldisplay.PDF       0x00000001115d7c09 0x1115d2000 + 23561
    21  com.apple.qldisplay.PDF       0x00000001115de1db 0x1115d2000 + 49627
    22  com.apple.Foundation           0x00007fff8fd5c59c -[__NSOperationInternal _start:] + 653
    23  com.apple.Foundation           0x00007fff8fd5c1a3 __NSOQSchedule_f + 184
    24  libdispatch.dylib             0x00007fff97326c13 _dispatch_client_callout + 8
    25  libdispatch.dylib             0x00007fff9732a365 _dispatch_queue_drain + 1100
    26  libdispatch.dylib             0x00007fff9732becc _dispatch_queue_invoke + 202
    27  libdispatch.dylib             0x00007fff973296b7 _dispatch_root_queue_drain + 463
    28  libdispatch.dylib             0x00007fff97337fe4 _dispatch_worker_thread3 + 91
    29  libsystem_pthread.dylib       0x00007fff903526cb _pthread_wqthread + 729
    30  libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff98817946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff903504a1 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000032611fe7  rcx: 0x0000000000002010  rdx: 0x00007fbd3260bca0
      rdi: 0x00007fbd32613c40  rsi: 0x0000000000002010  rbp: 0x0000000114fc74a0  rsp: 0x0000000114fc74a0
       r8: 0x0000000111ec7000   r9: 0x00007fbd3400de80  r10: 0x0000000000000000  r11: 0x00007fbc1f099592
      r12: 0x00007fbd3260ee70  r13: 0x00000000000380e4  r14: 0x0000000114fc7504  r15: 0x00007fbd3403da20
      rip: 0x00000001153c8991  rfl: 0x0000000000010293  cr2: 0x0000000111ed7080
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10ce1f000 -        0x10ce43fff  com.apple.quicklook.ui.helper (5.0 - 675) <2350AA90-6881-3407-A556-AF68F3239E54> /System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework/Re sources/QuickLookUIHelper.app/Contents/MacOS/QuickLookUIHelper
           0x1115d2000 -        0x1115e3fff  com.apple.qldisplay.PDF (5.0 - 675) <8EE49A35-37B3-3B69-849E-FA469D28B24F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/PDF.qldisplay/Contents/MacOS/PDF
           0x1153c5000 -        0x115578ff3  libCMaps.A.dylib (772) <FC49455E-AD9D-3D60-9642-39CC52E34C89> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCMaps .A.dylib
        0x7fff6a132000 -     0x7fff6a168837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8d7f4000 -     0x7fff8d80dfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8d80e000 -     0x7fff8d816fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8db49000 -     0x7fff8dbbffe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8dbc0000 -     0x7fff8dc0dff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8dc0e000 -     0x7fff8dc15fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8dc16000 -     0x7fff8dc16fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8dc24000 -     0x7fff8dc41ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8dc42000 -     0x7fff8dc54ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff8dc55000 -     0x7fff8dce3ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8dce4000 -     0x7fff8df90fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8df91000 -     0x7fff8df91fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8df92000 -     0x7fff8e1fcff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8e1fd000 -     0x7fff8e1fffff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8e200000 -     0x7fff8e403ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8e409000 -     0x7fff8e420ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8e43d000 -     0x7fff8e457ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8e458000 -     0x7fff8e478fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8e485000 -     0x7fff8e998ff3  com.apple.JavaScriptCore (10600 - 10600.1.17) <CE5255CC-E13F-3694-B6DD-5285356BFCC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8e9a0000 -     0x7fff8e9cbff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8e9cc000 -     0x7fff8e9d7fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8e9ed000 -     0x7fff8e9f7ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8ea38000 -     0x7fff8ea3afff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8ea7c000 -     0x7fff8eb1bdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8eb1c000 -     0x7fff8eb24ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8eb25000 -     0x7fff8ed0aff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff8ed0b000 -     0x7fff8ed10ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8ed1c000 -     0x7fff8ed55fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8ed56000 -     0x7fff8ed9cff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8ed9d000 -     0x7fff8edb9ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8edba000 -     0x7fff8edbdfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8edbe000 -     0x7fff8ee1dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8ee1e000 -     0x7fff8ee9bfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8ee9c000 -     0x7fff8efccfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8efcd000 -     0x7fff8efcefff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8efcf000 -     0x7fff8f2d1fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8f2d2000 -     0x7fff8f2dcff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f2dd000 -     0x7fff8f2f1ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f30e000 -     0x7fff8f30efff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8f30f000 -     0x7fff8f30ffff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f310000 -     0x7fff8f311fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8f337000 -     0x7fff8f35dff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8f368000 -     0x7fff8f3e0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f71c000 -     0x7fff8f76dff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f76e000 -     0x7fff8f770ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8f772000 -     0x7fff8f79dfff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8f79e000 -     0x7fff8f79fff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8f873000 -     0x7fff8f965fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8f966000 -     0x7fff8f9c0ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8fbe4000 -     0x7fff8fbe8fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8fc8e000 -     0x7fff8fc8efff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8fd4c000 -     0x7fff8fd53fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8fd54000 -     0x7fff90082ff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff900bb000 -     0x7fff9026bff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff9026c000 -     0x7fff9030dff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff9030e000 -     0x7fff9034eff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9034f000 -     0x7fff90358fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff90359000 -     0x7fff9035eff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff90367000 -     0x7fff9045bff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9045c000 -     0x7fff904c3ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff9077f000 -     0x7fff907afff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff907b0000 -     0x7fff907b0fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff907b1000 -     0x7fff908c3ff7  libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff908c4000 -     0x7fff908dfff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff908e0000 -     0x7fff9092cfff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9092d000 -     0x7fff9097afff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff9097b000 -     0x7fff9098bff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff9098c000 -     0x7fff90a00fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90a01000 -     0x7fff90a25fef  libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff90a2f000 -     0x7fff90b51ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90b52000 -     0x7fff90b58ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90b72000 -     0x7fff90bacffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90bad000 -     0x7fff90baeff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff90c86000 -     0x7fff90de4ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90e4b000 -     0x7fff90eccff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff90ecd000 -     0x7fff90efafff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff90efb000 -     0x7fff90f0cff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff90f0d000 -     0x7fff90f0ffff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9107e000 -     0x7fff911e9ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff911f5000 -     0x7fff911f9ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff911fa000 -     0x7fff91462ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff914aa000 -     0x7fff91569fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff917f7000 -     0x7fff9181ffff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff9188b000 -     0x7fff91890ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff9189c000 -     0x7fff9189dfff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff9189e000 -     0x7fff918aaff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff9192f000 -     0x7fff91a47ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff91a48000 -     0x7fff91a62ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff91a63000 -     0x7fff91b72ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91b73000 -     0x7fff91bc4ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff91bda000 -     0x7fff91c48ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff91de4000 -     0x7fff91df5fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff91df6000 -     0x7fff91dfdff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91dfe000 -     0x7fff91e29fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff91e3d000 -     0x7fff91e44fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91e45000 -     0x7fff91e47fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff91e48000 -     0x7fff91e63ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff91e64000 -     0x7fff91e66fff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff91e67000 -     0x7fff91e6bfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff91e6c000 -     0x7fff92358fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff923db000 -     0x7fff923e9ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff923ea000 -     0x7fff923f5ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff92453000 -     0x7fff924a6ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff924a7000 -     0x7fff92635fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff92636000 -     0x7fff92650ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff92651000 -     0x7fff926bdfff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff926be000 -     0x7fff92753ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff9283a000 -     0x7fff92895fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff92896000 -     0x7fff928a7ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff928a8000 -     0x7fff928c4fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff928c5000 -     0x7fff9296bfff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff92a87000 -     0x7fff932c0ff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff932c1000 -     0x7fff932f1fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff932f2000 -     0x7fff932f8ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff932f9000 -     0x7fff93326fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93327000 -     0x7fff9332bfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9332c000 -     0x7fff9332fff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff93330000 -     0x7fff9337cff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff9339c000 -     0x7fff934e0ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff934e1000 -     0x7fff93513ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff93514000 -     0x7fff93517ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff93518000 -     0x7fff93525ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff9352f000 -     0x7fff9357eff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff93c0a000 -     0x7fff93c0aff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff93c0b000 -     0x7fff9403bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff9403c000 -     0x7fff9411ffff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94120000 -     0x7fff94121ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff94122000 -     0x7fff94126fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff94168000 -     0x7fff944d3fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff944d4000 -     0x7fff944eeff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff94d97000 -     0x7fff94da0fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff94f20000 -     0x7fff94facfff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff94fad000 -     0x7fff94fb6fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff94fb7000 -     0x7fff95231fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95296000 -     0x7fff95296fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff95297000 -     0x7fff952d2fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff952d5000 -     0x7fff952e0ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff952e1000 -     0x7fff952f7ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff95c3e000 -     0x7fff95c5dfff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff95c5e000 -     0x7fff95c61fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff95ca8000 -     0x7fff95cbaff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff95cbb000 -     0x7fff95cbdfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff95cbe000 -     0x7fff967fffff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff96800000 -     0x7fff96800fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff96814000 -     0x7fff96814ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff96815000 -     0x7fff96828ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff9682e000 -     0x7fff968b0fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96949000 -     0x7fff96d20fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff96e60000 -     0x7fff96ef1fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff96ef2000 -     0x7fff96f22ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff96f3b000 -     0x7fff96f3dff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff96fd7000 -     0x7fff96fd9ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff96fe2000 -     0x7fff96fefff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff96ff0000 -     0x7fff96ff2ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff96ff3000 -     0x7fff970d0ff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff970d1000 -     0x7fff972b6267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff97325000 -     0x7fff9734fff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff97381000 -     0x7fff97381ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff973d7000 -     0x7fff97418fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff97496000 -     0x7fff974dfff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff974e0000 -     0x7fff97574fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff97575000 -     0x7fff9757afff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff97596000 -     0x7fff97865ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff97866000 -     0x7fff9786afff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff9797b000 -     0x7fff97983fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff97984000 -     0x7fff97989ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff9798a000 -     0x7fff97a28fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff97cea000 -     0x7fff97cf2fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff97f8a000 -     0x7fff97fc2ffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff97fdd000 -     0x7fff98506ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff985fd000 -     0x7fff9860afff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff9860b000 -     0x7fff9862fff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff98790000 -     0x7fff98790fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff98791000 -     0x7fff98800fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff98801000 -     0x7fff9881efff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9882e000 -     0x7fff98856fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff9918f000 -     0x7fff99193ff7  libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff99194000 -     0x7fff99286ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff99287000 -     0x7fff99294fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff992a4000 -     0x7fff995d7ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff995d8000 -     0x7fff995eeff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff995ef000 -     0x7fff9962ffff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff99630000 -     0x7fff99659ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff9965a000 -     0x7fff9967dfff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9967e000 -     0x7fff99707fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff99708000 -     0x7fff9983aff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9983b000 -     0x7fff998d1ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff998ff000 -     0x7fff99c95fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff99c96000 -     0x7fff99cdcffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff99d3c000 -     0x7fff99debfe7  libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff99dec000 -     0x7fff99e05ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff99e06000 -     0x7fff99f2dfff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9af06000 -     0x7fff9af0cfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff9af0d000 -     0x7fff9af13fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff9af14000 -     0x7fff9af35fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9af36000 -     0x7fff9afa7ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff9afa8000 -     0x7fff9b28fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9b3f5000 -     0x7fff9b469ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff9b4b4000 -     0x7fff9b4bcff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff9b51a000 -     0x7fff9b51dfff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9b51e000 -     0x7fff9b60efef  libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9b60f000 -     0x7fff9b617ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff9b618000 -     0x7fff9b621ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9b622000 -     0x7fff9b624ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff9b625000 -     0x7fff9b940fcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff9b99c000 -     0x7fff9b9f7fef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9ba20000 -     0x7fff9ba21fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff9ba22000 -     0x7fff9ba89ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9bd6c000 -     0x7fff9bd75ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff9bd76000 -     0x7fff9bd79ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff9bd7a000 -     0x7fff9bd85fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9be39000 -     0x7fff9be44ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff9be45000 -     0x7fff9c252ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff9c253000 -     0x7fff9c2a0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff9c31f000 -     0x7fff9c459ff7  com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9c49c000 -     0x7fff9c4c1fff  libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff9c548000 -     0x7fff9c557fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff9c586000 -     0x7fff9c5b4fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff9c5b5000 -     0x7fff9c5ddffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff9c5de000 -     0x7fff9c619fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff9c61f000 -     0x7fff9c673fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff9c674000 -     0x7fff9c689ff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff9c877000 -     0x7fff9c891ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff9c96a000 -     0x7fff9c96cffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff9c979000 -     0x7fff9c97dfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff9c9cd000 -     0x7fff9ca05fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9ca06000 -     0x7fff9cb4cfef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff9cd1a000 -     0x7fff9cd46fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff9d0ac000 -     0x7fff9d0adfff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 219
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=213.0M resident=184.8M(87%) swapped_out_or_unallocated=28.2M(13%)
    Writable regions: Total=92.2M written=14.6M(16%) resident=23.9M(26%) swapped_out=0K(0%) unallocated=68.3M(74%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Activity Tracing                   2048K
    CG shared images                    144K
    Dispatch continuations             8192K
    Image IO                           1844K
    Kernel Alloc Once                     8K
    MALLOC                             51.1M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    STACK GUARD                        56.0M
    Stack                              12.1M
    VM_ALLOCATE                        17.1M
    __DATA                             19.7M
    __IMAGE                             528K
    __LINKEDIT                         70.1M
    __TEXT                            142.9M
    __UNICODE                           544K
    mapped file                        53.0M
    shared memory                         4K
    ===========                      =======
    TOTAL                             435.2M
    Model: MacBookPro11,1, BootROM MBP111.0138.B11, 2 processors, Intel Core i5, 2.8 GHz, 16 GB, SMC 2.16f68
    Graphics: Intel Iris, Intel Iris, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
    USB Device: Internal Memory Card Reader
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
    Here's EtreCheck:

Maybe you are looking for

  • How Can I Include The Session MM_Username In A Link?

    Greetings: I would like to have a link on a page such as "Show My Personal Page" with the underlying link actually being in the form of "Username.php" where the Username part will change based on which user is logged in. In the properties link field

  • Tomcat Server Problem

    Hi everyone, just wondering if anyone can help me with this error I get when starting my tomcat server. Is it that something is already using the 8080 port and if so how can I stop it. Thanking you in advance 25-Nov-2005 21:13:21 org.apache.coyote.ht

  • ADDRESS Command in SAPScript

    Dear all, I'm using ADDRESS ~ ENDADDRESS command in SAPScript. I pass street name to STREET as follow NAME name1 name2 name3 name4 STREET &LFA1-STRAS& With the above, my street can be displayed out correctly. But i faced problem when i have street2 s

  • Using a calculated field

    Hi I am using a calculated field and show it in the "view". I can't change it without removing all the calculated fields shown in the "view", only removing them all I can do it and afterwards I have to put them all back This is problem? Alexandre

  • Yum install issue

    Hi OEL Experts, I am trying to install glibc.i686 on my OEL 6 x86 64bit machine, got below error: [root@oeltux ~]# yum install glibc.i686 Loaded plugins: refresh-packagekit, security http://linuxdownload.adobe.com/linux/x86_64/repodata/repomd.xml: [E