IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Friday, February 28, 2014

iPod Touch Power Management

We are a corporate customer who uses the iPod Touch to deliver a mobile solution geared for the healthcare/senior care industry.

 

Our app is currently delivered using wifi enabled iPod Touch devices leveraging the customer premise wifi network.

 

We've had some consistent complaints from customers that wifi connectivity with the iPod touch devices is inconsistent.  After conducting a substantial amount of data collection at three customer sites, it appears that iOS power management is contributing to the issue on some level.

 

However, documentation is not readily available to help us understand how iOS power management works, and it what scenarios it will throttle power to the wifi radio.  Our data suggest taht the following metrics have an effect on power management of the wifi radio:

 

- inactivity (guaged by screen touches, not accelerometer)

- weak wifi signal from the Acess Point (ipod will disconnect from a weak signal, while other devices remain connected)

- battery charge level (under 20% much more likely to experieince wifi issues)

 

Two questions:

 

- Where can we review more detailed documentation to help us understand how iOS power managment functions?

- How can we begin a dialogue to have Apple work with us to resolve (or provide some level of control over) these power issues?


View the original article here

Re: You can develop an app for iPhone and connect to a remote sql server db?

have any example?
or tutorial to help me?
please


View the original article here

Developing Java in Xcode

In a better world, no one would have to use Java anymore. Sadly there are still university programs where people are expected to use Java. Rather than cast people into the world of Eclipse, here are instructions on how to get Xcode building Java. These instructions are current as of Xcode 4.6.2. You will need to download a JDK from somewhere.

 

This is a basic environment meant only for writing simple school programs. It has no debugger. Replace with whatever you want to name your project. Your main project file, main project class, and Xcode project must use this name. Welcome to Java.

 

1) In Xcode, File > New > New Project > Other > External Build System

2) Give it a meaningful name and save it somewhere. Note the name. You'll need that later.

3) File > New > New File > Other > Empty

4) Give it a Java-friendly name. In my example, use .java

5) Copy the contents below into the file and save.

6) File > New > New File > Other > Empty

7) Save as Makefile.

8) Copy the contents below into the file and save.

9) The "Run" (>) button should at least compile your Java now.

 

Now it gets tricky. You don't have to do the next part. You could just open a Terminal to your project directory and run java if you want. I strongly suggest that. You can also just type "make" and use Xcode purely as a text editor.

9) Project > Scheme > Edit Scheme > Debug > Info tab

10) Executable > Other > type ^?g > type /usr/bin > choose java

11) Change Debugger to None

12) Arguments tab

13) For Arguments Passed on Launch, add $(TARGETNAME)

14) For Environment Variables, add CLASSPATH with a value of $(PROJECT_DIR)

15) For Expand Variables based on, use

16) Click the "Run" (>) button.

 

PS: I have no idea how to run the Java debugger in Xcode. But then, I have no idea how to run the Java debugger at all.

 

Here are some starter file contents:

HelloWorld.java:

public class HelloWorld

  {

  public static void main(String[] args)

    {

    System.out.println("Hello, World!");

    }

  }

 

Makefile:

# A simple makefile for a Hello World Java program

 

# Define a makefile variable for the java compiler

JCC = javac

 

# Define a makefile variable for compilation flags

# The -g flag compiles with debugging information

JFLAGS = -g

 

# typing 'make' will invoke the first target entry in the makefile

# (the default one in this case)

default: $(subst .java,.class,$(wildcard *.java))

 

# this target entry builds the Average class

# the Average.class file is dependent on the Average.java file

# and the rule associated with this entry gives the command to create it

#

%.class : %.java

          $(JCC) $(JFLAGS) $<

 

# To start over from scratch, type 'make clean'.

# Removes all .class files, so that the next make rebuilds them

#

clean:

          $(RM) *.class

 

 

NOTE: Those indentations are true tab characters. Ugh!

 

Good luck on your class. Hopefully you can progress onto more complicated projects and eventually use a real language like Objective-C.


View the original article here

xcode crashes when trying to save an app for ad hoc deployment

I am not able to distribute an archived application using my adhoc profile. I was able to do the same till last month but now it is not working after  I updated my adhoc profile (to add one more device). Following is the crash log

 

Process:         Xcode [7838]

Path:            /Applications/Xcode.app/Contents/MacOS/Xcode

Identifier:      com.apple.dt.Xcode

Version:         5.0.2 (3335.32)

Build Info:      IDEApplication-3335032000000000~4

App Item ID:     497799835

App External ID: 106632651

Code Type:       X86-64 (Native)

Parent Process:  launchd [156]

Responsible:     Xcode [7838]

User ID:         501

 

 

Date/Time:       2014-01-19 20:23:53.118 +1100

OS Version:      Mac OS X 10.9 (13A603)

Report Version:  11

Anonymous UUID:  1EBDCD02-77A4-CE7B-8638-4511430E2F52

 

 

Sleep/Wake UUID: 8CB898BD-FB7A-4175-A6BC-42B5F688E06F

 

 

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

 

 

Exception Type:  EXC_CRASH (SIGABRT)

Exception Codes: 0x0000000000000000, 0x0000000000000000

 

 

Application Specific Information:

ProductBuildVersion: 5A3005

UNCAUGHT EXCEPTION (NSRangeException): *** -[__NSArrayM objectAtIndex:]: index 63 beyond bounds [0 .. 61]

UserInfo: (null)

Hints: None

Backtrace:

  0  0x00007fff934c4404 __exceptionPreprocess (in CoreFoundation)

  1  0x00000001064a7d73 DVTFailureHintExceptionPreprocessor (in DVTFoundation)

  2  0x00007fff8fd00e75 objc_exception_throw (in libobjc.A.dylib)

  3  0x00007fff933a2935 -[__NSArrayM objectAtIndex:] (in CoreFoundation)

  4  0x00007fff906e61e3 -[IKImageFlowView _reloadCellDataAtIndex:] (in ImageKit)

  5  0x00007fff906e627e -[IKImageFlowView reloadCellDataAtIndex:] (in ImageKit)

  6  0x00007fff93087221 -[FI_TFlowViewController(DataSource) reloadNodes:forNode:] (in FinderKit)

  7  0x00007fff9303bd9f -[FI_TBrowserViewController(DataSource) updatePropertiesForNodes:inContainerNode:] (in FinderKit)

  8  0x00007fff9305863b -[FI_TListViewController updatePropertiesForNodes:inContainerNode:] (in FinderKit)

  9  0x00007fff931436fd TNodeEngine::NodesChangedCallback(TFENode const&, std::__1::vector, std::__1::allocator > > const&, TFENodeVector const&, TFENodeVector const&) (in FinderKit)

10  0x00007fff9314277b TNodeEngine::ProcessCompletion(TNodeEngineNotificationHandler*) (in FinderKit)

11  0x00007fff92feb033 IAsynchronousOperation::PerformSecondStepOnMainThread() (in FinderKit)

12  0x00007fff9314266f TNodeEngineNotificationHandler::WaitForOperationCompleted(unsigned long long) (in FinderKit)

13  0x00007fff93142ded TNodeEngine::ProcessNotification(TNodeEngineNotificationHandler*) (in FinderKit)

14  0x00007fff92f72821 TCoalescingNodeObserver::HandleDeferredEventsForNode(TFENode const&, TCoalescedEvents*) (in FinderKit)

15  0x00007fff92fa206b TNodeBrowser::HandleDeferredEventsForNode(TFENode const&, TCoalescedEvents*) (in FinderKit)

16  0x00007fff92f7246f TCoalescingNodeObserver::ProcessDeferredEvents() (in FinderKit)

17  0x00007fff92f728d8 TCoalescingNodeObserver::RunDeferredHandlers() (in FinderKit)

18  0x00007fff920c8c57 __NSFireDelayedPerform (in Foundation)

19  0x00007fff9342b724 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (in CoreFoundation)

20  0x00007fff9342b25f __CFRunLoopDoTimer (in CoreFoundation)

21  0x00007fff9349c76a __CFRunLoopDoTimers (in CoreFoundation)

22  0x00007fff933e6aa5 __CFRunLoopRun (in CoreFoundation)

23  0x00007fff933e6275 CFRunLoopRunSpecific (in CoreFoundation)

24  0x00007fff91dccf0d RunCurrentEventLoopInMode (in HIToolbox)

25  0x00007fff91dcccb7 ReceiveNextEventCommon (in HIToolbox)

26  0x00007fff91dccabc _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)

27  0x00007fff966a928e _DPSNextEvent (in AppKit)

28  0x00007fff966a88db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in AppKit)

29  0x00007fff9669c9cc -[NSApplication run] (in AppKit)

30  0x00007fff96687803 NSApplicationMain (in AppKit)

31  0x00007fff94db85fd start (in libdyld.dylib)

32  0x0000000000000001

 

abort() called

 

 

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread

0   libsystem_kernel.dylib                  0x00007fff8ba7b866 __pthread_kill + 10

1   libsystem_pthread.dylib                 0x00007fff959b935c pthread_kill + 92

2   libsystem_c.dylib                       0x00007fff91cf7bba abort + 125

3   com.apple.dt.IDEKit                     0x00000001077217af +[IDEAssertionHandler _handleAssertionWithLogString:reason:] + 775

4   com.apple.dt.IDEKit                     0x00000001077229fd -[IDEAssertionHandler handleUncaughtException:] + 919

5   com.apple.dt.IDEKit                     0x0000000107722aa8 IDEHandleUncaughtException + 77

6   com.apple.AppKit                        0x00007fff9669cad8 -[NSApplication run] + 821

7   com.apple.AppKit                        0x00007fff96687803 NSApplicationMain + 940

8   libdyld.dylib                           0x00007fff94db85fd start + 1

 

 

Thread 1:: Dispatch queue: com.apple.libdispatch-manager

0   libsystem_kernel.dylib                  0x00007fff8ba7c662 kevent64 + 10

1   libdispatch.dylib                       0x00007fff9236c43d _dispatch_mgr_invoke + 239

2   libdispatch.dylib                       0x00007fff9236c152 _dispatch_mgr_thread + 52

 

 

Thread 2:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 3:: com.apple.NSURLConnectionLoader

0   libsystem_kernel.dylib                  0x00007fff8ba77a1a mach_msg_trap + 10

1   libsystem_kernel.dylib                  0x00007fff8ba76d18 mach_msg + 64

2   com.apple.CoreFoundation                0x00007fff933e7315 __CFRunLoopServiceMachPort + 181

3   com.apple.CoreFoundation                0x00007fff933e6939 __CFRunLoopRun + 1161

4   com.apple.CoreFoundation                0x00007fff933e6275 CFRunLoopRunSpecific + 309

5   com.apple.Foundation                    0x00007fff920cb907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348

6   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

7   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

8   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

9   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 4:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 5:

0   libsystem_kernel.dylib                  0x00007fff8ba77a1a mach_msg_trap + 10

1   libsystem_kernel.dylib                  0x00007fff8ba76d18 mach_msg + 64

2   com.apple.CoreFoundation                0x00007fff933e7315 __CFRunLoopServiceMachPort + 181

3   com.apple.CoreFoundation                0x00007fff933e6939 __CFRunLoopRun + 1161

4   com.apple.CoreFoundation                0x00007fff933e6275 CFRunLoopRunSpecific + 309

5   com.apple.DTDeviceKitBase               0x000000011131c81a -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 164

6   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

7   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

8   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

9   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 6:: com.apple.CFSocket.private

0   libsystem_kernel.dylib                  0x00007fff8ba7b9aa __select + 10

1   com.apple.CoreFoundation                0x00007fff93432d43 __CFSocketManager + 867

2   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

3   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

4   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 7:: CVDisplayLink

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.CoreVideo                     0x00007fff8bcbca38 CVDisplayLink::runIOThread() + 656

3   com.apple.CoreVideo                     0x00007fff8bcbc78f startIOThread(void*) + 147

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 8:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 9:

0   libsystem_kernel.dylib                  0x00007fff8ba77a1a mach_msg_trap + 10

1   libsystem_kernel.dylib                  0x00007fff8ba76d18 mach_msg + 64

2   com.apple.CoreFoundation                0x00007fff933e7315 __CFRunLoopServiceMachPort + 181

3   com.apple.CoreFoundation                0x00007fff933e6939 __CFRunLoopRun + 1161

4   com.apple.CoreFoundation                0x00007fff933e6275 CFRunLoopRunSpecific + 309

5   com.apple.AppKit                        0x00007fff968491ce _NSEventThread + 144

6   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

7   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

8   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 10:: DYMobileDeviceManager

0   libsystem_kernel.dylib                  0x00007fff8ba77a1a mach_msg_trap + 10

1   libsystem_kernel.dylib                  0x00007fff8ba76d18 mach_msg + 64

2   com.apple.CoreFoundation                0x00007fff933e7315 __CFRunLoopServiceMachPort + 181

3   com.apple.CoreFoundation                0x00007fff933e6939 __CFRunLoopRun + 1161

4   com.apple.CoreFoundation                0x00007fff933e6275 CFRunLoopRunSpecific + 309

5   com.apple.Foundation                    0x00007fff920cda7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253

6   com.apple.Foundation                    0x00007fff921b670a -[NSRunLoop(NSRunLoop) run] + 74

7   com.apple.GPUToolsMobileFoundation          0x00000001134d696b -[DYMobileDeviceManager _deviceNotificationThread:] + 132

8   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

9   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

10  libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

11  libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 11:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 12:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 13:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 14:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 15:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.Xcode.DevToolsCore            0x000000010d42cfd6 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 506

3   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 16:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.Xcode.DevToolsCore            0x000000010d42cfd6 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 506

3   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 17:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.Xcode.DevToolsCore            0x000000010d42cfd6 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 506

3   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 18:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.Xcode.DevToolsCore            0x000000010d42cfd6 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 506

3   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 19:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac3b _pthread_cond_wait + 727

2   com.apple.Xcode.DevToolsCore            0x000000010d42cfd6 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 506

3   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

4   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

5   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

6   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 20:: com.apple.appkit-heartbeat

0   libsystem_kernel.dylib                  0x00007fff8ba7ba3a __semwait_signal + 10

1   libsystem_c.dylib                       0x00007fff91d16e60 nanosleep + 200

2   libsystem_c.dylib                       0x00007fff91d16d52 usleep + 54

3   com.apple.AppKit                        0x00007fff9690d2ad -[NSUIHeartBeat _heartBeatThread:] + 2132

4   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

5   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

6   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

7   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 21:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 22:

0   libsystem_kernel.dylib                  0x00007fff8ba7b716 __psynch_cvwait + 10

1   libsystem_pthread.dylib                 0x00007fff959bac77 _pthread_cond_wait + 787

2   com.apple.FinderKit                     0x00007fff92ffbbb6 TConditionVariable::WaitWithTimeout(TMutex&, unsigned long long, bool&) + 72

3   com.apple.FinderKit                     0x00007fff93023012 TThumbnailExtractorThread::Main() + 454

4   com.apple.FinderKit                     0x00007fff92ffbe38 TThread::MainGlue(void*) + 26

5   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

6   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

7   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 23:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 24:

0   libsystem_kernel.dylib                  0x00007fff8ba7be6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff959b9f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff959bcfb9 start_wqthread + 13

 

 

Thread 25:

0   libsystem_kernel.dylib                  0x00007fff8ba7ba3a __semwait_signal + 10

1   libsystem_c.dylib                       0x00007fff91d16e60 nanosleep + 200

2   com.apple.Foundation                    0x00007fff92115212 +[NSThread sleepUntilDate:] + 176

3   com.apple.imageKit                      0x00007fff906dc8ec -[IKTaskManager taskLoop] + 1906

4   com.apple.Foundation                    0x00007fff920cb70b __NSThread__main__ + 1318

5   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

6   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

7   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 26:

0   libsystem_kernel.dylib                  0x00007fff8ba77a1a mach_msg_trap + 10

1   libsystem_kernel.dylib                  0x00007fff8ba76d18 mach_msg + 64

2   com.apple.CoreFoundation                0x00007fff933e7315 __CFRunLoopServiceMachPort + 181

3   com.apple.CoreFoundation                0x00007fff933e6939 __CFRunLoopRun + 1161

4   com.apple.CoreFoundation                0x00007fff933e6275 CFRunLoopRunSpecific + 309

5   com.apple.CoreFoundation                0x00007fff9349b9d1 CFRunLoopRun + 97

6   com.apple.DebugSymbols                  0x00007fff93a3b7e3 SpotlightQueryThread(void*) + 355

7   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

8   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

9   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 27:

0   libsystem_kernel.dylib                  0x00007fff8ba7ba3a __semwait_signal + 10

1   libsystem_c.dylib                       0x00007fff91d16e60 nanosleep + 200

2   com.apple.CoreSymbolication             0x00007fff92ce2681 0x7fff92ccf000 + 79489

3   libsystem_pthread.dylib                 0x00007fff959b8899 _pthread_body + 138

4   libsystem_pthread.dylib                 0x00007fff959b872a _pthread_start + 137

5   libsystem_pthread.dylib                 0x00007fff959bcfc9 thread_start + 13

 

 

Thread 0 crashed with X86 Thread State (64-bit):

  rax: 0x0000000000000000  rbx: 0x00007fff7cb3c310  rcx: 0x00007fff597fe9f8  rdx: 0x0000000000000000

  rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff597fea20  rsp: 0x00007fff597fe9f8

   r8: 0x00007fb37a809c00   r9: 0x00000000000000ab  r10: 0x0000000008000000  r11: 0x0000000000000206

  r12: 0x00007fff597feb38  r13: 0x0000000107df34e8  r14: 0x0000000000000006  r15: 0x00007fb384a6de20

  rip: 0x00007fff8ba7b866  rfl: 0x0000000000000206  cr2: 0x0000000119624000

 

Logical CPU:     0

Error Code:      0x020000b8

Trap Number:     133

 

 

 

 

Binary Images:

       0x106401000 -        0x106401ff7  com.apple.dt.Xcode (5.0.2 - 3335.32) <325477C5-32DB-3091-91B7-41B670C5C0ED> /Applications/Xcode.app/Contents/MacOS/Xcode

       0x106406000 -        0x106833fff  com.apple.dt.DVTFoundation (5.0.2 - 3542) <05454F93-F6FD-3813-B2B9-29D364BAE0F0> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versi ons/A/DVTFoundation

       0x1069b4000 -        0x106ccefff  com.apple.dt.DVTKit (5.0.2 - 3553) <0F9EC4BC-158C-3741-8E60-B781AF0CB667> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/D VTKit

       0x106e71000 -        0x1072afff7  com.apple.dt.IDEFoundation (5.0.2 - 3582) <65D65E5D-7B32-35A3-858B-C751A86E808D> /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/ IDEFoundation

       0x10750b000 -        0x107c9bfff  com.apple.dt.IDEKit (5.0.2 - 3608) <34C232C6-6036-3F60-9CB5-739A8E93AC73> /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit

       0x10810e000 -        0x10810fffb  libsysmon.dylib (58.1.3) /usr/lib/libsysmon.dylib

       0x10811d000 -        0x1089daff7 +libclang.dylib (500.2.79) <32C31E07-4526-3A30-9D1F-06169929BDC7> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/lib/libclang.dylib

       0x108a5a000 -        0x108ac6ff7  com.apple.CSServiceClient (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/CSServiceClient.framework/Ver sions/A/CSServiceClient

       0x108b07000 -        0x108b1efff  com.apple.DADocSetManagement (5.0.2 - 3350) /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/ Versions/A/DADocSetManagement

       0x108b33000 -        0x108b35ff7  com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) <385A175E-6002-32FC-8E16-5011295E859C> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framew ork/Versions/A/DVTDeveloperModeHelper

       0x108b3c000 -        0x108b65ff7  com.apple.dt.instruments.DTGraphKit (5.0.2 - 51140) /Applications/Xcode.app/Contents/SharedFrameworks/DTGraphKit.framework/Versions /A/DTGraphKit

       0x108b82000 -        0x108be8ff7  com.apple.DADocSetAccess (5.0.2 - 3356) /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Vers ions/A/DADocSetAccess

       0x10b6ee000 -        0x10b774fff  com.apple.dt.IBFoundation (1.0 - 1) <791FFB3C-9936-381F-9986-58FD89786071> /Applications/Xcode.app/Contents/Frameworks/IBFoundation.framework/Versions/A/I BFoundation

       0x10b7c9000 -        0x10b80dfff  com.apple.CoreThemeDefinition (2.0 - 146) /System/Library/PrivateFrameworks/CoreThemeDefinition.framework/Versions/A/Core ThemeDefinition

       0x10b83e000 -        0x10b846fff  com.apple.dt.IDE.HexEditor (5.0.2 - 3317) <1759FF3D-09EC-3D55-8ADB-6A710EE94F58> /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/Hex Editor

       0x10b850000 -        0x10b854ff7  com.apple.dt.gpu.GPUTraceDebugger (5.0.2 - 13004) /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/Ma cOS/GPUTraceDebugger

       0x10bd0f000 -        0x10c1adfff  com.apple.dt.IDE.IDEInterfaceBuilderKit (5.0.2 - 4514) <5E8C3F22-DF06-32CE-8480-2F1626B42AA1> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Conte nts/MacOS/IDEInterfaceBuilderKit

       0x10c47f000 -        0x10c50aff7  com.apple.dt.IBAutolayoutFoundation (1.0 - 1) /Applications/Xcode.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Ve rsions/A/IBAutolayoutFoundation

       0x10c560000 -        0x10c5d5fff  com.apple.dt.IDE.IDEDocViewer (5.0.2 - 3464) /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/ IDEDocViewer

       0x10c629000 -        0x10c65ffff +com.ridiculousfish.HexFiendFramework (5.0.2 - 3317) <0224A13F-BCAC-3AF6-AB95-AF66F998BFEC> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A /HexFiend

       0x10c686000 -        0x10c6d5fff  com.apple.dt.IDE.iCloudSupport (5.0.2 - 77) <8BCC1372-0217-3E0F-8422-B148535C5B62> /Applications/Xcode.app/Contents/PlugIns/iCloudSupport.ideplugin/Contents/MacOS /iCloudSupport

       0x10c710000 -        0x10c745ff7  com.apple.dt.dbg.DebuggerFoundation (5.0.2 - 3532) <91ED13F4-19F3-30C2-B4A6-8BBBCCFF6B58> /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/ MacOS/DebuggerFoundation

       0x10c771000 -        0x10c80dff7  com.apple.dt.dbg.DebuggerUI (5.0.2 - 3532) /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/De buggerUI

       0x10c886000 -        0x10c901fff  com.apple.dt.IDE.IDEFindReplace (5.0.2 - 3434) <22895260-25DA-3373-A22D-BDE954BA1A57> /Applications/Xcode.app/Contents/PlugIns/IDEFindReplace.ideplugin/Contents/MacO S/IDEFindReplace

       0x10c950000 -        0x10c96ffff  com.apple.dt.IDE.IDEQuickHelp (5.0.2 - 3364) /Applications/Xcode.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/ IDEQuickHelp

       0x10c989000 -        0x10ca67ff7  com.apple.dt.gpu.GPUDebuggerFoundation (5.0.2 - 13004) <39E570EB-B84A-3768-9E92-18B6FB88A702> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Conten ts/MacOS/GPUDebuggerFoundation

       0x10cac3000 -        0x10cb12ff7  com.apple.GPUTools (1.0 - 13004) <355C9E6D-F8B6-378C-BF43-00BF3E327291> /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A /GPUTools

       0x10cb3f000 -        0x10cbc7ff7  com.apple.GPUToolsCore (1.0 - 13004) /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versio ns/A/GPUToolsCore

       0x10cc08000 -        0x10cdfafff  com.apple.GPUToolsAnalysis (1.0 - 13004) <3254C6A7-AC46-3324-8924-F30526775340> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsAnalysis.framework/Ve rsions/A/GPUToolsAnalysis

       0x10ce4f000 -        0x10cef4fff  com.apple.GPUToolsServices (1.0 - 13004) <082B2B38-4D5C-3EED-AD89-624C13B07C9A> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsServices.framework/Ve rsions/A/GPUToolsServices

       0x10cf57000 -        0x10cf64fff  com.apple.dt.gpu.GPUDebuggerKit (5.0.2 - 13004) <7856190D-0FE6-34FE-8103-6D477C107660> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacO S/GPUDebuggerKit

       0x10cf75000 -        0x10d123fff  com.apple.dt.gpu.GPUTraceDebuggerUI (5.0.2 - 13004) <12E30E52-9C0B-38A8-BD67-BE7084448EA4> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/ MacOS/GPUTraceDebuggerUI

       0x10d178000 -        0x10d23eff7  com.apple.dt.IDE.IDESourceEditor (5.0.2 - 3443) <8D16E3CB-06D4-362C-A1F9-67C6CEF57C11> /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/Mac OS/IDESourceEditor

       0x10d2ad000 -        0x10d2c8ff7  com.apple.dt.IDE.SharedPlugInUtilities (5.0.2 - 3316) <1A386B71-B57F-3E03-B5D7-307C942864D5> /Applications/Xcode.app/Contents/PlugIns/SharedPlugInUtilities.ideplugin/Conten ts/MacOS/SharedPlugInUtilities

       0x10d2d9000 -        0x10d306ff7  com.apple.dt.IDE.Xcode3Core (5.0.2 - 3575) <5CA4F90E-5E64-38C4-A88A-A4A82BD205AB> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xc ode3Core

       0x10d31e000 -        0x10d678fff  com.apple.Xcode.DevToolsCore (7.0.2 - 3575) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsCore.framework/Versions/A/DevToolsCore

       0x10d807000 -        0x10d810fff  com.apple.DevToolsFoundation (7.0.2 - 3575) <33C48628-DD77-30C3-A917-3AF4C44ADCD9> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation

       0x10d81b000 -        0x10d85aff7  com.apple.Xcode.DevToolsSupport (7.0.2 - 3575) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsSupport.framework/Versions/A/DevToolsSupport

       0x10d881000 -        0x10da2fff7  com.apple.dt.IDE.Xcode3UI (5.0.2 - 3575) <6621F626-3965-371B-B408-ED65CD6357E3> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcod e3UI

       0x10e472000 -        0x10e472ff7  com.apple.xcode.compilers.coredata (7.0.2 - 3575) <5520F32D-3C65-30F7-A798-307D7757C880> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Core Data.xcplugin/Contents/MacOS/Core Data

       0x10e479000 -        0x10e47afff  com.apple.dt.dbg.DebuggerLLDBService (5.0.2 - 3532) <283453A1-85F2-354B-8C31-E9D1CFBFF8C9> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents /MacOS/DebuggerLLDBService

       0x10e480000 -        0x10e481fff +liblaunch_sim.dylib (330.1.2) <8DC5E472-BB28-36CD-8015-EF38E5FB9786> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/SDKs/iPhoneSimulator7.0.sdk/usr/lib/system/host/liblaunch_sim.dylib

       0x10e487000 -        0x10e487ff7  com.apple.xcode.compilers.scntool (7.0.2 - 3575) <1067F1D4-C9F1-3D99-ACB3-CF18D616287F> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Scene Kit.xcplugin/Contents/MacOS/Scene Kit

       0x10e61e000 -        0x10e625fff  com.apple.dt.IDE.IDEOSXSupportCore (5.0.2 - 3329) <0817EC4A-8064-337D-BF52-AC4DCC03382B> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/ Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/MacOS/IDEOSXSu pportCore

       0x10e630000 -        0x10e644fff  com.apple.DTDeviceKit (4.2 - 3697) <4C2034E3-B6CA-3A90-8D1F-1AC492BA3381> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit

       0x10e653000 -        0x10e66bfff  com.apple.DeviceLinkX (5.0 - 260) /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink

       0x10e67b000 -        0x10e690ff7  com.apple.DVTiPhoneSimulatorRemoteClient (5.0.2 - 3556) <79CF7E01-7773-3D7E-B5B5-3D085F64158D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/PrivateFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Vers ions/A/DVTiPhoneSimulatorRemoteClient

       0x10e6a2000 -        0x10e6a5fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib

       0x10e6d2000 -        0x10e75fff7  com.apple.dt.IDE.IDEiPhoneSupport (5.0.2 - 3796) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPho neSupport

       0x10e7cb000 -        0x10e807fff  com.apple.framework.ConfigurationProfiles (6.0 - 662) /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/Co nfigurationProfiles

       0x10e828000 -        0x10e851ff7  com.apple.dt.IDE.IDEArchivedApplicationsViewer (5.0.2 - 3341) <26207B35-3648-3478-8031-954E0538B26B> /Applications/Xcode.app/Contents/PlugIns/IDEArchivedApplicationsViewer.ideplugi n/Contents/MacOS/IDEArchivedApplicationsViewer

       0x10e86f000 -        0x10e873ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn

       0x10e8eb000 -        0x10e8ecfff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchEditingSupport (5.0.2 - 3747) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchEditingSuppor t.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchEditingSupport

       0x10e8f1000 -        0x10e8f1ff7  com.apple.dt.IDE.IDEAppleScriptEditor (5.0.2 - 3312) <59A8A164-31D9-3E07-90F5-724CC349A258> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Content s/MacOS/IDEAppleScriptEditor

       0x10e8f6000 -        0x10e906fff  com.apple.IDESpriteKitParticleEditor (1.0 - 1) <8811DBB1-0EBD-3182-AFB1-618A38E996CC> /Applications/Xcode.app/Contents/PlugIns/IDESpriteKitParticleEditor.ideplugin/C ontents/MacOS/IDESpriteKitParticleEditor

       0x1110e1000 -        0x111147ff7  com.apple.dt.IDE.IDEiOSSupportCore (5.0.2 - 3796) <9B69761C-25A0-362B-9358-892C384DF73F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IDEiOSSupportCore.ideplugin/Contents/MacOS/IDEiOS SupportCore

       0x111180000 -        0x111271ff7  com.apple.mobiledevice (710.1 - 710.1) <356F402B-7499-3EA6-8541-A3D89F6D119F> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e

       0x1112d6000 -        0x111341ff7  com.apple.DTDeviceKitBase (5.0.2 - 3697) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase

       0x11137f000 -        0x111388fff  com.apple.iphonesimulator.SimulatorHost (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/PrivateFrameworks/SimulatorHost.framework/Versions/A/SimulatorH ost

       0x111416000 -        0x111420fff  com.apple.xcode.plug-in.CoreBuildTasks (7.0.2 - 3575) <41EEDCDF-F64E-3651-991F-FC2B4B930A11> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/Co reBuildTasks

       0x111429000 -        0x111429ff7  com.apple.IBCocoaTouchCompilerPlugin (5.0.2 - 3747) <31ED0B0F-CE5F-34BE-8109-D6B938D66612> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/IBCocoaTouchCompilerPlugin.xcplugin/Contents/MacO S/IBCocoaTouchCompilerPlugin

       0x11142e000 -        0x11142eff7  com.apple.compilers.clang (7.0.2 - 3575) <0FA6DDCC-A11E-3BDA-873D-F2E2BD4A6CFA> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Clang LLVM 1.0.xcplugin/Contents/MacOS/Clang LLVM 1.0

       0x111432000 -        0x111432ff7  com.apple.IBCocoaTouchCompilerPlugin (5.0.2 - 3747) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IBCocoaTouchCompilerPlugin.xcplugin/Conten ts/MacOS/IBCocoaTouchCompilerPlugin

       0x111456000 -        0x111459ff7  com.apple.platform.iphonesimulator.plugin (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/iPhoneSimulator Build System Support.xcplugin/Contents/MacOS/iPhoneSimulator Build System Support

       0x111463000 -        0x111463ff7  com.apple.IBStoryboardCompilerPlugin (5.0.2 - 3747) <983F3C6B-FB46-30A4-B5C4-6E682FD47630> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/IBStoryboardCompilerPlugin.xcplugin/Conte nts/MacOS/IBStoryboardCompilerPlugin

       0x111467000 -        0x111469fff  com.apple.dt.IDE.IDEInterfaceBuilderAutomator (5.0.2 - 3338) <0541CB8B-6C29-37A9-B249-170F96F676C3> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderAutomator.ideplugin /Contents/MacOS/IDEInterfaceBuilderAutomator

       0x1114a9000 -        0x1114acfff  com.apple.platform.iphoneos.plugin (1.0 - 1.0) <1C0DA2C4-E749-3D1C-BDC9-60485BCEEA36> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/iPhoneOS Build System Support.xcplugin/Contents/MacOS/iPhoneOS Build System Support

       0x1114b1000 -        0x111650fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (5.0.2 - 4514) <29403A35-25F9-3AE7-8696-6A394EAA0D71> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.id eplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration

       0x111750000 -        0x111790ff7  com.apple.glut (3.6.0 - GLUT-3.6.0) <87683C90-4303-3561-9CC8-5772FDEC16F0> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT

       0x111816000 -        0x111831fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoa (5.0.2 - 3338) <07BC16A1-DD77-36C3-8609-6D290951CCFB> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoa.ideplugin/Con tents/MacOS/IDEInterfaceBuilderCocoa

       0x111852000 -        0x111877fff  com.apple.DiscRecordingUI (8.0 - 8000.4.6) <9460712B-D256-33E6-A1F0-6C956EC48C32> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI

       0x111899000 -        0x111aedff7  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (5.0.2 - 3747) <839CDECF-2C41-30A4-B1CD-C837EC18155E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchIntegration.i deplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration

       0x111bc5000 -        0x111d96fff  com.apple.audio.units.Components (1.9 - 1.9) <80991B19-4B07-3DBF-A4B3-597DA1AA65B2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio

       0x112004000 -        0x112005ffa +cl_kernels (???) cl_kernels

       0x11201a000 -        0x112037fff  com.apple.dt.IDE.IDEGit (5.0.2 - 3355) <58325CA6-66B9-31E3-8E28-4EE12E1C322F> /Applications/Xcode.app/Contents/PlugIns/IDEGit.ideplugin/Contents/MacOS/IDEGit

       0x11204b000 -        0x112062fff  com.apple.dt.IDE.IDESubversion (5.0.2 - 3359) <106E1C90-0406-35FD-A456-53A486620DA7> /Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS /IDESubversion

       0x112077000 -        0x11207dfff  com.apple.dt.IDE.IDEInstrumentsService (5.0.2 - 3532) /Applications/Xcode.app/Contents/PlugIns/IDEInstrumentsService.ideplugin/Conten ts/MacOS/IDEInstrumentsService

       0x1120c1000 -        0x1120c3ff7  com.apple.dt.IDE.IDEAppleScriptCore (5.0.2 - 3312) <1C09F80B-1EE8-3F20-97D6-7776F745DB4F> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptCore.ideplugin/Contents/ MacOS/IDEAppleScriptCore

       0x112cda000 -        0x112cdbfe4 +cl_kernels (???) <7FDA3834-AC02-4627-B3CB-0656D2AAF542> cl_kernels

       0x112ce6000 -        0x112ce7ff9 +cl_kernels (???) <994F3810-88A0-4C6A-BECF-78176F9DFBFC> cl_kernels

       0x112ce9000 -        0x112dcffef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib

       0x112e11000 -        0x112e99fff  com.apple.dt.gpu.GPURenderTargetEditor (5.0.2 - 13004) /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Conten ts/MacOS/GPURenderTargetEditor

       0x112ee5000 -        0x112f1ffff  com.apple.GPUToolsInterface (1.0 - 13004) /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/V ersions/A/GPUToolsInterface

       0x112f3f000 -        0x113040ff7  com.apple.dt.IDE.IDEModelEditor (5.0.2 - 3401) /Applications/Xcode.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacO S/IDEModelEditor

       0x1130d7000 -        0x113160ff7  com.apple.dt.IDE.IDEModelFoundation (5.0.2 - 3401) /Applications/Xcode.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/ MacOS/IDEModelFoundation

       0x1131b5000 -        0x1131ccfff  com.apple.dt.IDE.IDERTFEditor (5.0.2 - 3316) <6B03F5BE-632C-3B31-BF69-67D24E15BD7E> /Applications/Xcode.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/ IDERTFEditor

       0x1131de000 -        0x1132a8fff  com.apple.dt.IDE.IDELogNavigator (5.0.2 - 3462) <1E56046F-233A-3A99-B1C0-E80A793D6A4F> /Applications/Xcode.app/Contents/PlugIns/IDELogNavigator.ideplugin/Contents/Mac OS/IDELogNavigator

       0x113334000 -        0x11334aff7  com.apple.dt.IDE.IDEStructureNavigator (5.0.2 - 3344) /Applications/Xcode.app/Contents/PlugIns/IDEStructureNavigator.ideplugin/Conten ts/MacOS/IDEStructureNavigator

       0x113358000 -        0x113362ff7  com.apple.dt.PlistEditor (5.0.2 - 3317) /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/P listEditor

       0x11336e000 -        0x11337bff7  com.apple.dt.IDE.IDEProjectsOrganizer (5.0.2 - 3323) <6FD81F54-33E5-3B3D-B45F-C7318389B491> /Applications/Xcode.app/Contents/PlugIns/IDEProjectsOrganizer.ideplugin/Content s/MacOS/IDEProjectsOrganizer

       0x113388000 -        0x1133d7fff  com.apple.dt.IDE.IDESceneKitEditor (5.0.2 - 3362) /Applications/Xcode.app/Contents/PlugIns/IDESceneKitEditor.ideplugin/Contents/M acOS/IDESceneKitEditor

       0x113410000 -        0x113418ff7  com.apple.dt.ScriptingDefinitionEditor (5.0.2 - 3310) /Applications/Xcode.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Co ntents/MacOS/ScriptingDefinitionEditor

       0x113420000 -        0x113469fff  com.apple.dt.gpu.GPUDebuggeriOSSupport (5.0.2 - 13001) <014ACECE-FDAD-36D2-8CA1-2EE5611FD7B5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GP UDebuggeriOSSupport

       0x113493000 -        0x1134b9fff  com.apple.GPUToolsShaderProfiler (1.0 - 13004) <783C5403-A7F4-309A-8A69-A60DD1390128> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsShaderProfiler.framew ork/Versions/A/GPUToolsShaderProfiler

       0x1134ce000 -        0x1134e7fff  com.apple.GPUToolsMobileFoundation (1.0 - 13001) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToo lsMobileFoundation

       0x1134fc000 -        0x11357dff7  com.apple.GPUToolsExpert (1.0 - 13001) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/PrivateFrameworks/GPUToolsExpert.framework/Versions/A/GPUToolsExpert

       0x1135c7000 -        0x1135d9ff7  com.apple.dt.IDE.IDEIssueNavigator (5.0.2 - 3332) /Applications/Xcode.app/Contents/PlugIns/IDEIssueNavigator.ideplugin/Contents/M acOS/IDEIssueNavigator

       0x1135e7000 -        0x113601fff  com.apple.dt.IDE.IDESymbolNavigator (5.0.2 - 3335) <60230042-434A-3A34-AA4D-D1E11D6CA139> /Applications/Xcode.app/Contents/PlugIns/IDESymbolNavigator.ideplugin/Contents/ MacOS/IDESymbolNavigator

       0x113615000 -        0x11361afff  com.apple.dt.IDE.IDEPDFViewer (5.0.2 - 3311) <55A5A672-DACB-3682-A19E-CD9DC075BEFC> /Applications/Xcode.app/Contents/PlugIns/IDEPDFViewer.ideplugin/Contents/MacOS/ IDEPDFViewer

       0x113622000 -        0x113631ff7  com.apple.dt.IDE.IDEQuickLookEditor (5.0.2 - 3316) <9C6FD612-08F3-3115-87CC-36B5B4A1E190> /Applications/Xcode.app/Contents/PlugIns/IDEQuickLookEditor.ideplugin/Contents/ MacOS/IDEQuickLookEditor

       0x113642000 -        0x114c80fbf  com.apple.LLDB.framework (1.300.2.53 - 300.2.53) /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/LLDB

       0x115230000 -        0x11531afff  org.python.python (2.7.5 - 2.7.5) <0202C38E-0354-34FA-9996-8D2ADCE353D8> /System/Library/Frameworks/Python.framework/Versions/2.7/Python

       0x115b63000 -        0x115c77fff  com.apple.SpriteKit (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/SpriteKit.framework/Versions/ A/SpriteKit

       0x115cd8000 -        0x115d15fff  com.apple.PhysicsKit (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/PhysicsKit.framework/Versions /A/PhysicsKit

       0x115d2f000 -        0x115d54fff  com.apple.GLKit (1.0 - 27) <5CFAC5C9-0BAF-3A87-822B-74E43ECBC542> /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit

       0x115d79000 -        0x115d9dfff  com.apple.audio.OpenAL (1.7 - 1.7) <5D2366B5-111B-3BDD-AFB3-5770075659F4> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL

       0x116446000 -        0x116446ffd +cl_kernels (???) <9C40F96F-B4B3-44CA-9814-FE40D428585D> cl_kernels

       0x11644a000 -        0x11644afff +cl_kernels (???) cl_kernels

       0x11950d000 -        0x11950ffe8 +cl_kernels (???) <81D4ECE2-829D-4B4E-A231-76300463C7A9> cl_kernels

       0x119934000 -        0x11993aff7  com.apple.gputools.GPUToolsShaderProfilerMobileSupport (1.0 - 13001) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/GPUTools/PlugIns/GPUToolsShaderProfilerMobileSupport.gtplugin/Contents /MacOS/GPUToolsShaderProfilerMobileSupport

       0x119940000 -        0x119979fff  com.apple.gputools.MobileAnalysis (1.0 - 13001) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/GPUTools/PlugIns/MobileAnalysis.gtplugin/Contents/MacOS/MobileAnalysis

       0x11d314000 -        0x11d3f4ff7  unorm8_rgba.dylib (2.3.58) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib

    0x123400000000 -     0x1234004b2ff7  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.18.26 - 8.1.8) <2910538C-8E52-3499-A414-90C85A380246> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver

    0x123440000000 -     0x12344087bff7  com.apple.GeForceGLDriver (8.18.22 - 8.1.8) /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r

    0x7fff684ce000 -     0x7fff68501817  dyld (239.3) /usr/lib/dyld

    0x7fff8aa4d000 -     0x7fff8aa4dff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib

    0x7fff8aa4e000 -     0x7fff8ade6fff  com.apple.SceneKit (4.0 - 197) <1FEE4A1D-5B13-3774-8FE1-B79FD81CD1E5> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit

    0x7fff8b6ab000 -     0x7fff8b6d5ff0  com.apple.SystemConfiguration.EAP8021X (13.0.0 - 13.0) /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X

    0x7fff8b6d6000 -     0x7fff8b6dffff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth

    0x7fff8b6e0000 -     0x7fff8b73eff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation

    0x7fff8b96f000 -     0x7fff8b96ffff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz

    0x7fff8b970000 -     0x7fff8b9a9ff7  com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD

    0x7fff8b9aa000 -     0x7fff8b9b2fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib

    0x7fff8b9b3000 -     0x7fff8ba10fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n

    0x7fff8ba11000 -     0x7fff8ba1cfff  libkxld.dylib (2422.1.72) /usr/lib/system/libkxld.dylib

    0x7fff8ba1d000 -     0x7fff8ba35ff7  com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting

    0x7fff8ba36000 -     0x7fff8ba37ff7  libodfde.dylib (20) /usr/lib/libodfde.dylib

    0x7fff8ba38000 -     0x7fff8ba65ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon

    0x7fff8ba66000 -     0x7fff8ba82ff7  libsystem_kernel.dylib (2422.1.72) /usr/lib/system/libsystem_kernel.dylib

    0x7fff8ba83000 -     0x7fff8baa7fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters

    0x7fff8baa8000 -     0x7fff8bb6bff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff8bb6c000 -     0x7fff8bc3cff7  com.apple.PubSub (1.0.5 - 65.36) <26189018-1C77-3C56-84E8-56C6A400187F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub

    0x7fff8bcbb000 -     0x7fff8bce0ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff8bce1000 -     0x7fff8bd33ff7  com.apple.Suggestions (3.0 - 137.1) /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions

    0x7fff8bd34000 -     0x7fff8bd3fff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce

    0x7fff8bd40000 -     0x7fff8bd93fff  com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface

    0x7fff8bd96000 -     0x7fff8bd9fff7  libcldcpuengine.dylib (2.3.58) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib

    0x7fff8bda0000 -     0x7fff8bdb9ff7  com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity

    0x7fff8bdfb000 -     0x7fff8be42ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib

    0x7fff8be43000 -     0x7fff8be7bff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices

    0x7fff8be7c000 -     0x7fff8be98fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib

    0x7fff8beef000 -     0x7fff8bef8ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib

    0x7fff8bef9000 -     0x7fff8bf01ff7  com.apple.AppleSRP (5.0 - 1) /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP

    0x7fff8bf1b000 -     0x7fff8c009fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff8c00a000 -     0x7fff8c00bff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff8c00c000 -     0x7fff8c00cfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0x7fff8c00d000 -     0x7fff8c1a9ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0x7fff8c1aa000 -     0x7fff8c8f9fff  libclh.dylib (4.0.3 - 4.0.3) <45E23A83-DD87-3CF3-8BA5-D503A8E632B8> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib

    0x7fff8c8fa000 -     0x7fff8c90cfff  com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture

    0x7fff8c90d000 -     0x7fff8c95bfff  libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib

    0x7fff8c95c000 -     0x7fff8c961ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib

    0x7fff8c962000 -     0x7fff8c9bbfff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff8c9c2000 -     0x7fff8cae4ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation

    0x7fff8cae5000 -     0x7fff8cd2dfff  com.apple.CoreData (107 - 481) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff8cd2e000 -     0x7fff8cdf7fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices

    0x7fff8ce77000 -     0x7fff8ce82ff7  com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth

    0x7fff8cec6000 -     0x7fff8ced6ffb  libsasl2.2.dylib (170) /usr/lib/libsasl2.2.dylib

    0x7fff8ced7000 -     0x7fff8cedbfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels

    0x7fff8cedc000 -     0x7fff8cf1bfff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff8cf1c000 -     0x7fff8cf26ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib

    0x7fff8cf4a000 -     0x7fff8cf66fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes

    0x7fff8cf67000 -     0x7fff8cf71fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib

    0x7fff8cf85000 -     0x7fff8d29fff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox

    0x7fff8d2a0000 -     0x7fff8d317fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices

    0x7fff8d318000 -     0x7fff8d3fcfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff8d3fd000 -     0x7fff8d486fff  com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync

    0x7fff8d487000 -     0x7fff8d4d5fff  com.apple.opencl (2.3.57 - 2.3.57) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff8d51c000 -     0x7fff8d8fdffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib

    0x7fff8d8fe000 -     0x7fff8d95efff  com.apple.ISSupport (1.9.9 - 57) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport

    0x7fff8d961000 -     0x7fff8d9aefff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff8d9af000 -     0x7fff8d9caff7  libsystem_malloc.dylib (23.1.10) /usr/lib/system/libsystem_malloc.dylib

    0x7fff8d9cb000 -     0x7fff8e2e705f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff8e4ff000 -     0x7fff8ea23fff  com.apple.QuartzComposer (5.1 - 316) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer

    0x7fff8ea6f000 -     0x7fff8eac1fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib

    0x7fff8eac2000 -     0x7fff8ed1aff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security

    0x7fff8ed1b000 -     0x7fff8ed27fff  libexslt.0.dylib (13) <5E67F2D8-F4A2-3DC5-8FD8-6876C08466C9> /usr/lib/libexslt.0.dylib

    0x7fff8ed28000 -     0x7fff8ed28fff  com.apple.AOSMigrate (1.0 - 1) /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate

    0x7fff8ed2b000 -     0x7fff8ed9aff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    0x7fff8ed9b000 -     0x7fff8edecfff  com.apple.QuickLookFramework (5.0 - 622.3) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook

    0x7fff8eded000 -     0x7fff8edefff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI

    0x7fff8edf0000 -     0x7fff8fc3cff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    0x7fff8fc3d000 -     0x7fff8fc46fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    0x7fff8fcf3000 -     0x7fff8fea0f27  libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib

    0x7fff8feab000 -     0x7fff8feacffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib

    0x7fff8fead000 -     0x7fff8fec8ff7  libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib

    0x7fff8feed000 -     0x7fff8fef0fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC

    0x7fff8fef1000 -     0x7fff901bfff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage

    0x7fff901c0000 -     0x7fff90223ff7  com.apple.SystemConfiguration (1.13 - 1.13) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration

    0x7fff90224000 -     0x7fff90238fff  com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService

    0x7fff90239000 -     0x7fff9036effa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit

    0x7fff90392000 -     0x7fff9039cff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer

    0x7fff9039d000 -     0x7fff90503fff  libGLProgrammability.dylib (9.0.83) <9C97E814-F674-30F8-8C2D-C45FC1E7D934> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib

    0x7fff90504000 -     0x7fff905ebff7  libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib

    0x7fff90602000 -     0x7fff9060aff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition

    0x7fff9060b000 -     0x7fff9060effc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

    0x7fff9060f000 -     0x7fff90870ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit

    0x7fff90871000 -     0x7fff9087eff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib

    0x7fff9087f000 -     0x7fff908d6fff  com.apple.ViewBridge (1.0 - 46) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge

    0x7fff908d7000 -     0x7fff908d9fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove

    0x7fff9091b000 -     0x7fff90920ff7  com.apple.MediaAccessibility (1.0 - 43) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility

    0x7fff90921000 -     0x7fff90922fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a

    0x7fff90923000 -     0x7fff90965ff7  libauto.dylib (185.5) /usr/lib/libauto.dylib

    0x7fff90966000 -     0x7fff9096cff7  libCGXCoreImage.A.dylib (599.7) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib

    0x7fff9096d000 -     0x7fff9097fff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport

    0x7fff90980000 -     0x7fff90984fff  com.apple.ServerInformation (2.0 - 1) /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information

    0x7fff90985000 -     0x7fff90a0dff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF

    0x7fff90a0e000 -     0x7fff90adfff1  com.apple.DiskImagesFramework (10.9 - 371.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x7fff90ae0000 -     0x7fff90c6dff7  GLEngine (9.0.83) <26CCE609-D645-3945-A678-517ED5B65785> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine

    0x7fff90c6e000 -     0x7fff90d1eff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib

    0x7fff90d6d000 -     0x7fff90d74fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib

    0x7fff90d75000 -     0x7fff910ebffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    0x7fff910ec000 -     0x7fff9137dff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit

    0x7fff9137e000 -     0x7fff913deff2  com.apple.CoreUtils (1.9 - 190.4) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils

    0x7fff913df000 -     0x7fff91425ff7  com.apple.DiskManagement (6.0 - 744) /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement

    0x7fff91429000 -     0x7fff91446fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices

    0x7fff91447000 -     0x7fff914d6ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata

    0x7fff914d7000 -     0x7fff91544fff  com.apple.AVKit (1.0 - 117.1) /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit

    0x7fff91642000 -     0x7fff91643fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib

    0x7fff91644000 -     0x7fff9164bff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s

    0x7fff9164c000 -     0x7fff91698ffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO

    0x7fff91699000 -     0x7fff916bdfff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib

    0x7fff916be000 -     0x7fff916e7fff  com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices

    0x7fff916e8000 -     0x7fff916f7ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis

    0x7fff916f8000 -     0x7fff9171cff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff9171d000 -     0x7fff91746ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib

    0x7fff91747000 -     0x7fff91747fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff91748000 -     0x7fff91781fff  com.apple.OSAKit (1.4 - 89) <4FC3119D-A436-387E-9E3A-EBE69CCD6A14> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit

    0x7fff917ad000 -     0x7fff917c0ff7  com.apple.AppContainer (3.0 - 1) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r

    0x7fff917f0000 -     0x7fff917f7ff7  liblaunch.dylib (842.1.4) /usr/lib/system/liblaunch.dylib

    0x7fff917f8000 -     0x7fff9181dff7  com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library

    0x7fff9181e000 -     0x7fff919d6ff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib

    0x7fff919d7000 -     0x7fff919dafff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo

    0x7fff919db000 -     0x7fff91b2eff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x7fff91b2f000 -     0x7fff91b56ff7  com.apple.shortcut (2.6 - 2.6) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut

    0x7fff91b58000 -     0x7fff91b80ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib

    0x7fff91b81000 -     0x7fff91bcfff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib

    0x7fff91bd0000 -     0x7fff91bd4ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib

    0x7fff91bd5000 -     0x7fff91c03ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face

    0x7fff91c04000 -     0x7fff91c04ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x7fff91c05000 -     0x7fff91c78ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation

    0x7fff91c79000 -     0x7fff91c81fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib

    0x7fff91c89000 -     0x7fff91c9aff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib

    0x7fff91c9b000 -     0x7fff91d24ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib

    0x7fff91d90000 -     0x7fff91d92ff3  libsystem_configuration.dylib (596.12) /usr/lib/system/libsystem_configuration.dylib

    0x7fff91d93000 -     0x7fff91d9cff7  com.apple.iChat.InstantMessage (8.0 - 4203) <56C0BA08-36B1-3367-9899-DFC46F3EA1CC> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage

    0x7fff91d9d000 -     0x7fff91d9dffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib

    0x7fff91d9e000 -     0x7fff92048ffd  com.apple.HIToolbox (2.1 - 695) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox

    0x7fff92049000 -     0x7fff92052fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis

    0x7fff92060000 -     0x7fff92063fff  libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib

    0x7fff92064000 -     0x7fff92363fff  com.apple.Foundation (6.9 - 1056) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff92364000 -     0x7fff92368fff  com.apple.IOAccelerator (98.7.1 - 98.7.1) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor

    0x7fff92369000 -     0x7fff92383fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib

    0x7fff92384000 -     0x7fff923c5fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis

    0x7fff923c6000 -     0x7fff9240bff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices

    0x7fff9240c000 -     0x7fff926f6fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore

    0x7fff926f7000 -     0x7fff92727fff  libncurses.5.4.dylib (42) /usr/lib/libncurses.5.4.dylib

    0x7fff92728000 -     0x7fff9272cfff  libpam.2.dylib (20) /usr/lib/libpam.2.dylib

    0x7fff9272d000 -     0x7fff927c1ff7  com.apple.Bluetooth (4.2.0 - 4.2.0f6) <94BCC858-0582-3C2F-8A43-486896564758> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

    0x7fff92866000 -     0x7fff92867fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib

    0x7fff92868000 -     0x7fff92b09ff5  com.apple.VectorKit (1.0 - 716.19.8) /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit

    0x7fff92b31000 -     0x7fff92b61fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s

    0x7fff92b65000 -     0x7fff92ccbff7  com.apple.AutomatorFramework (1.4 - 381) <8B88828A-6520-3A64-B9AD-C4DA3081E130> /System/Library/Frameworks/Automator.framework/Versions/A/Automator

    0x7fff92ccf000 -     0x7fff92d4ffff  com.apple.CoreSymbolication (3.0 - 141) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication

    0x7fff92d50000 -     0x7fff92d5aff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment

    0x7fff92d66000 -     0x7fff92e1afff  com.apple.MapKit (1.0 - 10) /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit

    0x7fff92e1b000 -     0x7fff92e2bfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib

    0x7fff92ed6000 -     0x7fff92ef3ff7  com.apple.framework.Apple80211 (9.0 - 900.47) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211

    0x7fff92ef4000 -     0x7fff92f20fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal

    0x7fff92f21000 -     0x7fff92f27ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib

    0x7fff92f28000 -     0x7fff93283fff  com.apple.FinderKit (1.2 - 1.2) /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit

    0x7fff93284000 -     0x7fff93375ff9  libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib

    0x7fff93376000 -     0x7fff9355bff7  com.apple.CoreFoundation (6.9 - 855.11) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x7fff9355c000 -     0x7fff937edff7  com.apple.RawCamera.bundle (5.03 - 729) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

    0x7fff9385f000 -     0x7fff93890ff7  libtidy.A.dylib (15.12) /usr/lib/libtidy.A.dylib

    0x7fff93891000 -     0x7fff938a8fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory

    0x7fff938a9000 -     0x7fff938afff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService

    0x7fff938b0000 -     0x7fff938f5ff7  libcurl.4.dylib (78) /usr/lib/libcurl.4.dylib

    0x7fff938f6000 -     0x7fff939fbfff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff939fc000 -     0x7fff93a36ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

    0x7fff93a37000 -     0x7fff93a39fff  libCVMSPluginSupport.dylib (9.0.83) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib

    0x7fff93a3a000 -     0x7fff93a69fff  com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s

    0x7fff93a6a000 -     0x7fff93a77ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib

    0x7fff93a78000 -     0x7fff93ad7fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN

    0x7fff93ad8000 -     0x7fff93cc7ffc  com.apple.WebKit2 (9537 - 9537.71) /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2

    0x7fff93cc8000 -     0x7fff93ccafff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib

    0x7fff93ce2000 -     0x7fff93cf3ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib

    0x7fff93cf4000 -     0x7fff93cf5ff7  libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib

    0x7fff93cfc000 -     0x7fff9412fffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff94130000 -     0x7fff94138ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib

    0x7fff94139000 -     0x7fff9420aff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI

    0x7fff9420b000 -     0x7fff9420dff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib

    0x7fff9420e000 -     0x7fff9424cff7  libGLImage.dylib (9.0.83) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib

    0x7fff94274000 -     0x7fff942c1ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore

    0x7fff9454b000 -     0x7fff9454dffb  libutil.dylib (34) /usr/lib/libutil.dylib

    0x7fff9456d000 -     0x7fff94597ff7  libsandbox.1.dylib (278.10) /usr/lib/libsandbox.1.dylib

    0x7fff94598000 -     0x7fff946c8ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv

    0x7fff946c9000 -     0x7fff946e1ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage

    0x7fff9473f000 -     0x7fff94743ff7  libcache.dylib (62) /usr/lib/system/libcache.dylib

    0x7fff9476a000 -     0x7fff9477cff7  com.apple.CoreBluetooth (1.0 - 1) <67A00F44-563E-3C55-9187-34D502D84DDE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth

    0x7fff9477f000 -     0x7fff947aeff5  com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS

    0x7fff947af000 -     0x7fff94871ff1  com.apple.CoreText (352.0 - 367.15) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText

    0x7fff94872000 -     0x7fff9492aff7  com.apple.DiscRecording (8.0 - 8000.4.6) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording

    0x7fff9492b000 -     0x7fff9495ffff  libssl.0.9.8.dylib (50) /usr/lib/libssl.0.9.8.dylib

    0x7fff94960000 -     0x7fff949c6fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi

    0x7fff949c7000 -     0x7fff949c9fff  com.apple.marco (10.0 - 1000) /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco

    0x7fff949ca000 -     0x7fff94a06fff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS

    0x7fff94a07000 -     0x7fff94a1effa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib

    0x7fff94a1f000 -     0x7fff94a1ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib

    0x7fff94a20000 -     0x7fff94a71ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff94a72000 -     0x7fff94a99ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib

    0x7fff94a9a000 -     0x7fff94a9dffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib

    0x7fff94a9e000 -     0x7fff94aacfff  com.apple.opengl (9.0.83 - 9.0.83) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff94aad000 -     0x7fff94ac6ff3  liblzma.5.dylib (5) <6479DC70-3290-35A0-8EA0-056D366A13A2> /usr/lib/liblzma.5.dylib

    0x7fff94ac7000 -     0x7fff94aceff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib

    0x7fff94acf000 -     0x7fff94ae0ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion

    0x7fff94ae1000 -     0x7fff94ae3ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection

    0x7fff94ae4000 -     0x7fff94d27fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook

    0x7fff94d28000 -     0x7fff94db4ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink

    0x7fff94db5000 -     0x7fff94db8ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib

    0x7fff94db9000 -     0x7fff94e84fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

    0x7fff94e85000 -     0x7fff952d3fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox

    0x7fff952d4000 -     0x7fff956afffb  com.apple.Altitude (1.0 - 347.6.3) /System/Library/PrivateFrameworks/Altitude.framework/Versions/A/Altitude

    0x7fff956b0000 -     0x7fff9579afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib

    0x7fff9579b000 -     0x7fff957f3ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion

    0x7fff957fd000 -     0x7fff95929fff  com.apple.MediaControlSender (1.9 - 190.4) /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender

    0x7fff9592a000 -     0x7fff9592afff  com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x7fff9592b000 -     0x7fff95995ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x7fff95996000 -     0x7fff959b1ff7  libPng.dylib (1038) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff959b2000 -     0x7fff959b6fff  libsystem_stats.dylib (93.1.26) /usr/lib/system/libsystem_stats.dylib

    0x7fff959b7000 -     0x7fff959beff7  libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib

    0x7fff959d9000 -     0x7fff95a0effc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff95a0f000 -     0x7fff95a19ff7  com.apple.CrashReporterSupport (10.9 - 538) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport

    0x7fff95a45000 -     0x7fff95a4cfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

    0x7fff95a4d000 -     0x7fff95a7efff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x7fff95a8c000 -     0x7fff95abbfd2  libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib

    0x7fff95abc000 -     0x7fff95ac0ff7  libGIF.dylib (1038) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff95ac1000 -     0x7fff95c7cff6  com.apple.GeoServices (1.0 - 702.14.9) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices

    0x7fff95c7d000 -     0x7fff95dedff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork

    0x7fff95dee000 -     0x7fff95e17fff  GLRendererFloat (9.0.83) <1F1160A8-5047-3CEE-AC1E-D29520D0B367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat

    0x7fff95e18000 -     0x7fff95e42ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib

    0x7fff95e43000 -     0x7fff95e43fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services

    0x7fff95e44000 -     0x7fff95f84fff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit

    0x7fff95f85000 -     0x7fff95facff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib

    0x7fff95fc0000 -     0x7fff95fc2ff7  com.apple.SecCodeWrapper (3.0 - 1) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper

    0x7fff95fc3000 -     0x7fff95febffb  libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib

    0x7fff95fec000 -     0x7fff96087ff7  com.apple.PDFKit (2.9 - 2.9) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit

    0x7fff96088000 -     0x7fff96093fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff96094000 -     0x7fff960dffff  com.apple.ImageCaptureCore (5.0 - 5.0) /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re

    0x7fff960e0000 -     0x7fff960e1ff7  com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print

    0x7fff96658000 -     0x7fff96684ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration

    0x7fff96685000 -     0x7fff971f9ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0x7fff971fa000 -     0x7fff97255ffb  com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE

    0x7fff97256000 -     0x7fff97262ff7  com.apple.HelpData (2.1.4 - 90) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData

    0x7fff972f6000 -     0x7fff972f9fff  com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help

    0x7fff972fa000 -     0x7fff9732effb  com.apple.datadetectors (5.0 - 246.0) <26962AB2-75C3-3D45-A9BF-6D75CC263DEF> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors

    0x7fff9732f000 -     0x7fff97331fff  com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin

    0x7fff97332000 -     0x7fff9733eff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

    0x7fff97349000 -     0x7fff97354fff  libGPUSupportMercury.dylib (9.0.83) /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib

    0x7fff97355000 -     0x7fff97364fff  com.apple.AppleScriptObjC (1.3 - 26) /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC

    0x7fff97365000 -     0x7fff97402fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore

    0x7fff974bd000 -     0x7fff974c6ffb  libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib

    0x7fff97505000 -     0x7fff97673ff7  libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib

    0x7fff97674000 -     0x7fff97753fff  libcrypto.0.9.8.dylib (50) /usr/lib/libcrypto.0.9.8.dylib

    0x7fff97754000 -     0x7fff9776afff  com.apple.CoreMediaAuthoring (2.2 - 947) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring

    0x7fff9776b000 -     0x7fff977b2fff  libFontRegistry.dylib (127) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff977b3000 -     0x7fff977b4fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent

    0x7fff977b5000 -     0x7fff977ceff7  com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0x7fff9781a000 -     0x7fff97831fff  com.apple.ScriptingBridge (1.3.1 - 63) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge

    0x7fff97832000 -     0x7fff9787bfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia

    0x7fff9787c000 -     0x7fff9787fff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore

    0x7fff97880000 -     0x7fff978cfff7  com.apple.framework.internetaccounts (2.1 - 210) /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts

    0x7fff978d0000 -     0x7fff978dcff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression

    0x7fff978dd000 -     0x7fff978eafff  com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing

    0x7fff978eb000 -     0x7fff97bbffc7  com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage

    0x7fff97bdf000 -     0x7fff97c4cfff  com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit

    0x7fff97c81000 -     0x7fff97c86fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib

    0x7fff97c87000 -     0x7fff981f7fff  com.apple.CoreAUC (6.22.08 - 6.22.08) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC

    0x7fff98280000 -     0x7fff98286fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation

    0x7fff98287000 -     0x7fff982ebff9  com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal

    0x7fff982ec000 -     0x7fff98350ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    0x7fff98351000 -     0x7fff98356fff  com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x7fff98357000 -     0x7fff983edfff  com.apple.PackageKit (3.0 - 329) /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit

    0x7fff983ee000 -     0x7fff98479fff  libCoreStorage.dylib (380) /usr/lib/libCoreStorage.dylib

    0x7fff9847a000 -     0x7fff984a9ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD

    0x7fff9853a000 -     0x7fff9853bff7  libsystem_sandbox.dylib (278.10) /usr/lib/system/libsystem_sandbox.dylib

    0x7fff9853c000 -     0x7fff98549ff4  com.apple.Librarian (1.2 - 1) /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian

    0x7fff98562000 -     0x7fff9856cfff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox

    0x7fff98607000 -     0x7fff98607fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x7fff98608000 -     0x7fff98609ff7  libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib

    0x7fff9860a000 -     0x7fff98612ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib

    0x7fff98613000 -     0x7fff98614fff  libffi.dylib (18.1) /usr/lib/libffi.dylib

    0x7fff98615000 -     0x7fff9861bfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication

    0x7fff9861c000 -     0x7fff9870bfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.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: 3897

    thread_create: 1

    thread_set_state: 0

 

 

VM Region Summary:

ReadOnly portion of Libraries: Total=381.7M resident=246.6M(65%) swapped_out_or_unallocated=135.2M(35%)

Writable regions: Total=1.5G written=174.0M(11%) resident=305.0M(19%) swapped_out=0K(0%) unallocated=1.2G(81%)

 

REGION TYPE                        VIRTUAL

===========                        =======

CG backing stores                    11.8M

CG image                             85.8M

CG raster data                        316K

CG shared images                      212K

CoreAnimation                        17.3M

CoreData                                4K

CoreData Object IDs                  4100K

CoreImage                              72K

Dispatch continuations               16.0M

Foundation                            124K

IOKit                               104.4M

IOKit (reserved)                        4K        reserved VM address space (unallocated)

Image IO                             2732K

JS JIT generated code                   8K

JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)

Kernel Alloc Once                       8K

MALLOC                              261.6M

MALLOC (admin)                         32K

Memory Tag 241                         92K

Memory Tag 242                         12K

Memory Tag 249                        156K

Memory Tag 251                         64K

OpenCL                                 68K

OpenGL GLSL                          1664K

SQLite page cache                    14.8M

STACK GUARD                          56.1M

Stack                                20.8M

VM_ALLOCATE                          16.9M

WebKit Malloc                        1232K

__DATA                               66.2M

__IMAGE                               528K

__LINKEDIT                           90.8M

__TEXT                              291.1M

__UNICODE                             544K

mapped file                         162.7M

shared memory                          68K

===========                        =======

TOTAL                                 2.2G

TOTAL, minus reserved VM space        1.2G

 

 

 

Model: MacBookPro9,1, BootROM MBP91.00D3.B08, 4 processors, Intel Core i7, 2.3 GHz, 16 GB, SMC 2.1f173

Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB

Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 512 MB

Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x029E, 0x434D5341384758334D314131363030433131

Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x029E, 0x434D5341384758334D314131363030433131

AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)

Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports

Network Service: Wi-Fi, AirPort, en1

Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB

Serial ATA Device: HL-DT-ST DVDRW  GS31N

USB Device: Hub

USB Device: FaceTime HD Camera (Built-in)

USB Device: Hub

USB Device: Hub

USB Device: Apple Internal Keyboard / Trackpad

USB Device: IR Receiver

USB Device: BRCM20702 Hub

USB Device: Bluetooth USB Host Controller

Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1


View the original article here