Windows Phone camera App crash when switching to another page

I am creating a Simple Face Detection App for Windows Phone in C#. I turn on my camera , everything works perfect and FaceDetector works too, but when I try to navigate to other page my App always crashes and I do not why. I tried to test my App in Windows
Phone Emulator and here the navigation works. I also tried debug my App in real device, but there the method OnNavigatedFrom is never hit.
FaceDetection.xaml.cs
public partial class FaceDetection : PhoneApplicationPage
#region member variables
const string MODEL_FILE = "models/haarcascade_frontalface_alt.xml";
FaceDetector.Detector _detector;
int _downsampleFactor = 2;
private byte[] _pixelDataGray;
private byte[] _pixelDataDownsampled;
private int[] _pixelDataGrayInt;
private WriteableBitmap _wb;
private DateTime _lastUpdate;
public static int pocet = 5;
double point1;
double point2;
double heightRectangle;
double widthRectangle;
#endregion
public FaceDetection()
InitializeComponent();
_detector = new FaceDetector.Detector(XDocument.Load(MODEL_FILE));
private void NewCameraFrame(object sender, CameraFrameEventArgs cameraFrameEventArgs)
PageOrientation orientaciaObrazovky = ((PhoneApplicationFrame)Application.Current.RootVisual).Orientation;
cameraViewer.UpdateOrientation(orientaciaObrazovky);
var w = cameraViewer.CameraWidth;
var h = cameraViewer.CameraHeight;
if (_pixelDataGray == null || _pixelDataGray.Length != h * w)
_pixelDataGray = new byte[w / _downsampleFactor * h / _downsampleFactor];
_pixelDataDownsampled =
new byte[w / _downsampleFactor * h / _downsampleFactor];
_pixelDataGrayInt = new int[w / _downsampleFactor * h / _downsampleFactor];
_wb = new WriteableBitmap(w / _downsampleFactor, w / _downsampleFactor);
_lastUpdate = DateTime.Now;
Utils.DownSample(cameraFrameEventArgs.ARGBData, w, h, ref _pixelDataGrayInt, _downsampleFactor);
Utils.ARGBToGreyScale(_pixelDataGrayInt, ref _pixelDataGray);
Utils.HistogramEqualization(ref _pixelDataGray);
Utils.GrayToARGB(_pixelDataGray, ref _pixelDataGrayInt);
List<FaceDetector.Rectangle> faces = new List<FaceDetector.Rectangle>();
if (orientaciaObrazovky == PageOrientation.PortraitUp || orientaciaObrazovky == PageOrientation.PortraitDown)
int scalw = w / _downsampleFactor;
int scalh = h / _downsampleFactor;
int[] _pixelDataGrayIntRotated = new int[scalw * scalh];
for (int x = 0; x < scalw; x++)
for (int y = 0; y < scalh; y++)
_pixelDataGrayIntRotated[y + x * scalh] = _pixelDataGrayInt[x + y * scalw];
faces = _detector.getFaces(
_pixelDataGrayIntRotated,
h / _downsampleFactor,
w / _downsampleFactor,
2f, 1.25f, 0.1f, 1, false, false); // height-width swapped
else
faces = _detector.getFaces(
_pixelDataGrayInt,
w / _downsampleFactor,
h / _downsampleFactor,
2f, 1.25f, 0.1f, 1, false, false);
var elapsed = (DateTime.Now - _lastUpdate).TotalMilliseconds;
_pixelDataGrayInt.CopyTo(_wb.Pixels, 0);
_wb.Invalidate();
Dispatcher.BeginInvoke(delegate()
cnvsFaceRegions.Children.Clear();
foreach (var r in faces)
System.Windows.Shapes.Rectangle toAdd = new System.Windows.Shapes.Rectangle();
TranslateTransform loc = new TranslateTransform();
if (orientaciaObrazovky == PageOrientation.PortraitUp)
loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
point1 = r.X;
point2 = r.Y;
else if (orientaciaObrazovky == PageOrientation.PortraitDown)
loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
point1 = r.X;
point2 = r.Y;
else if (orientaciaObrazovky == PageOrientation.LandscapeLeft)
loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth - 50;
loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight + 90;
point1 = r.X;
point2 = r.Y;
else if (orientaciaObrazovky == PageOrientation.LandscapeRight)
loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth+50 ;
loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight -90;
point1 = r.X;
point2 = r.Y;
toAdd.RenderTransform = loc;
toAdd.Width = r.Width * _downsampleFactor + 50;
toAdd.Height = r.Height * _downsampleFactor + 50;
toAdd.Stroke = new SolidColorBrush(Colors.Red);
cnvsFaceRegions.Children.Add(toAdd);
widthRectangle = toAdd.Width;
heightRectangle = toAdd.Height;
point1 = (loc.X);
point2 = (loc.Y);
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
base.OnNavigatedTo(e);
cameraViewer.SaveToCameraRoll = true;
cameraViewer.NewCameraFrame += NewCameraFrame;
cameraViewer.StartPumpingFrames();
CameraButtons.ShutterKeyHalfPressed += OnButtonHalfPress;
CameraButtons.ShutterKeyPressed += OnButtonFullPress;
CameraButtons.ShutterKeyReleased += OnButtonRelease;
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
base.OnNavigatedFrom(e);
cameraViewer.StopPumpingFrames();
CameraButtons.ShutterKeyHalfPressed -= OnButtonHalfPress;
CameraButtons.ShutterKeyPressed -= OnButtonFullPress;
CameraButtons.ShutterKeyReleased -= OnButtonRelease;
private void OnButtonHalfPress(object sender, EventArgs e)
cameraViewer.NewCameraFrame -= NewCameraFrame;
private void OnButtonFullPress(object sender, EventArgs e)
SaveScreenShots();
private void OnButtonRelease(object sender, EventArgs e)
cameraViewer.NewCameraFrame += NewCameraFrame;
private static WriteableBitmap CropImage(WriteableBitmap source, int xOffset, int yOffset, int width, int height)
var sourceWidth = source.PixelWidth;
var result = new WriteableBitmap(width, height);
for (var x = 0; x <= height - 1; x++)
var sourceIndex = xOffset + (yOffset + x) * sourceWidth;
var destinationIndex = x * width;
Array.Copy(source.Pixels, sourceIndex, result.Pixels, destinationIndex, width);
return result;
private void SaveScreenShots()
string namePerson = PhoneApplicationService.Current.State["TextBoxValue"] as String;
bool b = cnvsFaceRegions.Children.Any();
cnvsFaceRegions.Children.Clear();
if (!b)
MessageBox.Show("No face detected ");
else
for (int j = 1; j <= pocet; j++)
using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
var bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
bmp.Render(this, null);
byte[] bb = EncodeToJpeg(bmp);
bmp.Invalidate();
WriteableBitmap bmp2 = CropImage(bmp, (int)point1, (int)point2, (int)widthRectangle, (int)heightRectangle);
using (var isoFileStream = isoStore.CreateFile(namePerson + j))
System.Windows.Media.Imaging.Extensions.SaveJpeg(bmp2, isoFileStream, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
isoFileStream.Close();
MessageBox.Show("Saved successfully " + pocet + " images");
cameraViewer.NewCameraFrame += NewCameraFrame;
public byte[] EncodeToJpeg(WriteableBitmap wb)
using (MemoryStream stream = new MemoryStream())
wb.SaveJpeg(
stream,
wb.PixelWidth,
wb.PixelHeight,
0,
85);
return stream.ToArray();
private void cameraViewer_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
cameraViewer.NewCameraFrame -= NewCameraFrame;
private void cameraViewer_MouseLeftButtonUp_1(object sender, MouseButtonEventArgs e)
SaveScreenShots();
private void ApplicationBarMenuItem_Click(object sender, EventArgs e)
NavigationService.Navigate(new Uri("/PersonAndGallery;component/Gallery.xaml", UriKind.Relative));
CameraViewer.cs
public class CameraFrameEventArgs : RoutedEventArgs
public int[] ARGBData { get; set; }
public static class AppGlobal
public static bool isPortrait = true;
public class CameraViewer : Grid
#region Events
public EventHandler<CameraFrameEventArgs> NewCameraFrame { get; set; }
public EventHandler<ContentReadyEventArgs> NewCameraCaptureImage { get; set; }
public EventHandler<CameraOperationCompletedEventArgs> CamInitialized { get; set; }
#endregion
#region Properties
public int CameraWidth
get { return _cameraWidth; }
set { _cameraWidth = value; }
public int CameraHeight
get { return _cameraHeight; }
set { _cameraHeight = value; }
public bool PhotoOnPress
get { return _photoOnPress; }
set
_photoOnPress = value;
// CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
if (_photoOnPress)
// CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
public bool SaveToCameraRoll { get; set; }
public PhotoCamera Camera
get { return _camera; }
public bool TakingPhoto
get { return _takingPhoto; }
#endregion
#region Member Variables
private PhotoCamera _camera; // the windows phone camera that takes the photos
private int _cameraWidth = -1;
private int _cameraHeight = -1;
private Thread _pumpFramesThread;
private static ManualResetEvent _pauseFramesEvent = new ManualResetEvent(true);
private bool _takingPhoto;
VideoBrush viewfinderBrush;
private bool _photoOnPress;
private SoundEffect _cameraShutterSound;
private static ManualResetEvent _cameraCaptureEvent = new ManualResetEvent(true);
private static ManualResetEvent _cameraInitializedEvent = new ManualResetEvent(false);
private bool _pumpFrames;
#endregion
#region Constructor
public CameraViewer()
Unloaded += new RoutedEventHandler(OnUnloaded);
PhotoOnPress = true;
public override void OnApplyTemplate()
base.OnApplyTemplate();
#endregion
#region Public methods
public void StartPumpingFrames()
_pauseFramesEvent = new ManualResetEvent(true);
_cameraCaptureEvent = new ManualResetEvent(true);
_cameraInitializedEvent = new ManualResetEvent(false);
InitializeCamera();
_pumpFrames = true;
if (_pumpFramesThread == null)
_pumpFramesThread = new Thread(PumpFrames);
if (!_pumpFramesThread.IsAlive)
_pumpFramesThread.Start();
public void StopPumpingFrames()
_pumpFrames = false;
_pumpFramesThread = null;
Camera.Dispose();
public void TakePhoto()
if (TakingPhoto)
return;
_cameraCaptureEvent.Reset();
FrameworkDispatcher.Update();
_cameraShutterSound.Play();
_takingPhoto = true;
Camera.CaptureImage();
#endregion
private void CameraButtonsOnShutterKeyPressed(object sender, EventArgs eventArgs)
if (_photoOnPress && !TakingPhoto)
_cameraCaptureEvent.WaitOne();
TakePhoto();
private void OnUnloaded(object sender, RoutedEventArgs e)
_cameraInitializedEvent.Reset();
public void InitializeCamera()
_cameraInitializedEvent.Reset();
// Check to see if the camera is available on the device.
if ((PhotoCamera.IsCameraTypeSupported(CameraType.Primary) == true) ||
(PhotoCamera.IsCameraTypeSupported(CameraType.FrontFacing) == true))
// Initialize the default camera.
_camera = new Microsoft.Devices.PhotoCamera();
//Event is fired when the PhotoCamera object has been initialized
Camera.Initialized +=
new EventHandler<Microsoft.Devices.CameraOperationCompletedEventArgs>(CameraInitialized);
Camera.CaptureImageAvailable += CameraOnCaptureImageAvailable;
Camera.CaptureCompleted += CameraOnCaptureCompleted;
//Set the VideoBrush source to the camera
// var viewfinderBrush = new VideoBrush();
viewfinderBrush = new VideoBrush();
viewfinderBrush.Stretch = Stretch.Fill;
viewfinderBrush.RelativeTransform = new CompositeTransform { CenterX = 0.5, CenterY = 0.5 };
viewfinderBrush.SetSource(Camera);
System.Windows.Shapes.Rectangle rect = new System.Windows.Shapes.Rectangle();
rect.Fill = viewfinderBrush;
this.Children.Add(rect);
Stream stream = TitleContainer.OpenStream("models/shutter.wav");
_cameraShutterSound = SoundEffect.FromStream(stream);
// CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
if (_photoOnPress)
// CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
else
// The camera is not supported on the device.
MessageBox.Show(
"Sorry, this sample requires a phone camera and no camera is detected. This application will not show any camera output.");
private void CameraOnCaptureCompleted(object sender, CameraOperationCompletedEventArgs cameraOperationCompletedEventArgs)
_cameraCaptureEvent.Set();
_takingPhoto = false;
private void CameraOnCaptureImageAvailable(object sender, ContentReadyEventArgs contentReadyEventArgs)
if (SaveToCameraRoll)
Dispatcher.BeginInvoke(() =>
WriteableBitmap bitmap =
CreateWriteableBitmap(contentReadyEventArgs.ImageStream,
(int)Camera.Resolution.Width,
(int)Camera.Resolution.Height);
// SaveCapturedImage(bitmap);
//TakeScreenShots();
if (NewCameraCaptureImage != null)
NewCameraCaptureImage.Invoke(this, contentReadyEventArgs);
// Helper for CameraOnCaptureImageAvailable
private void SaveCapturedImage(WriteableBitmap imageToSave)
var stream = new MemoryStream();
imageToSave.SaveJpeg(stream, imageToSave.PixelWidth, imageToSave.PixelHeight, 0, 100);
//Take the stream back to its beginning because it will be read again
//when saving to the library
stream.Position = 0;
var library = new MediaLibrary();
string fileName = string.Format("{0:yyyy-MM-dd-HH-mm-ss}.jpg", DateTime.Now);
library.SavePictureToCameraRoll(fileName, stream);
//save to Save Photo
Picture pic;
private void TakeScreenShots()
WriteableBitmap bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
bmp.Render(this, null);
byte[] bb = EncodeToJpeg(bmp);
bmp.Invalidate();
MemoryStream mem = new MemoryStream();
bmp.SaveJpeg(mem, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
mem.Seek(0, System.IO.SeekOrigin.Begin);
if (mem != null)
MediaLibrary library = new MediaLibrary();
try
pic = library.SavePicture("Mask_" + Guid.NewGuid().ToString(), mem);
MessageBox.Show("Your picture is now accessible through the Saved Picture album.", "Saved successfully.", MessageBoxButton.OK);
catch (Exception ex)
MessageBox.Show("Unable to save the photo." + ex);
public byte[] EncodeToJpeg(WriteableBitmap wb)
using (MemoryStream stream = new MemoryStream())
wb.SaveJpeg(
stream,
wb.PixelWidth,
wb.PixelHeight,
0,
85);
return stream.ToArray();
// Creates a WriteableBitmap from an imageStream
private WriteableBitmap CreateWriteableBitmap(Stream imageStream, int width, int height)
var bitmap = new WriteableBitmap(width, height);
imageStream.Position = 0;
bitmap.LoadJpeg(imageStream);
return bitmap;
private void CameraInitialized(object sender, CameraOperationCompletedEventArgs e)
if (e.Succeeded)
try
// available resolutions are ordered based on number of pixels in each resolution
CameraWidth = (int)Camera.PreviewResolution.Width;
CameraHeight = (int)Camera.PreviewResolution.Height;
if (CamInitialized != null)
CamInitialized.Invoke(this, e);
_cameraInitializedEvent.Set();
_pauseFramesEvent.Set();
catch (ObjectDisposedException)
// If the camera was disposed, try initializing again
private void PumpFrames()
_cameraInitializedEvent.WaitOne();
int[] pixels = new int[CameraWidth * CameraHeight];
int numExceptions = 0;
while (_pumpFrames)
_pauseFramesEvent.WaitOne();
_cameraCaptureEvent.WaitOne();
_cameraInitializedEvent.WaitOne();
try
Camera.GetPreviewBufferArgb32(pixels);
catch (Exception e)
// If we get an exception try capturing again, do this up to 10 times
if (numExceptions >= 10)
throw e;
numExceptions++;
continue;
numExceptions = 0;
_pauseFramesEvent.Reset();
Deployment.Current.Dispatcher.BeginInvoke(
() =>
if (NewCameraFrame != null && _pumpFrames)
NewCameraFrame(this, new CameraFrameEventArgs { ARGBData = pixels });
_pauseFramesEvent.Set();
//na zmenu orientacie
public void UpdateOrientation(PageOrientation orientation)
if (orientation == PageOrientation.PortraitDown)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 270 };
/* else if (orientation == PageOrientation.PortraitDown && cameraType == 2)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 90 };
else if (orientation == PageOrientation.PortraitUp && cameraType == 2)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -90 };
else if (orientation == PageOrientation.PortraitUp)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation =90 };
else if (orientation == PageOrientation.LandscapeLeft)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 0 };
else if (orientation == PageOrientation.LandscapeRight)
viewfinderBrush.RelativeTransform =
new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -180 };
Thanks for reply.

Hi Facko,
Thanks for posting at the forum, however it could be really difficult for us to copy/paste your code and try to repro the issue, I would suggest you to provide a repro sample for us so that we can debug for you.
And base on your description, looks like your app only crashes on the real device, but not on the emulator. I have question here, how the app works on the emulator?
As I know if we open the camera on emulator, the only thing we can see is kind of small color blocks instead of the real images.
You could also try to close the camera and then dispose the object to see if it works.
--James
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Photos and camera apps crash when I hit camera roll/take a picture

    After updating to ios5, I can no longer access my camera roll, not take a picture.  When I hit camera roll, photos crashes.  When I take a picture it says saving, then crashes.  I have tried turning off the apps and reopening them. I have tried restarting/resetting.  I have tried turning it off and letting it sit for 3 days. I tried accessing my camera roll through other apps like facebook, twitter, photoshop but it crashes. I tried to access my camera roll from iphoto and import my pictures but my iphone no longer comes up in iphoto.  I feel as though that restoring it may be the only option left, but I do not want to lose my photos and there's still no guarantee that photos and camera will work after restoring.  Anyone else ever hear of this before? Help!

    There is a similar thread elsewhere...but to save you the search, simply go to this page:
    http://www.iphoneincanada.ca/how-to/how-to-fix-iphone-camera-roll-crash-and-phot os-turned-to-other-in-itunes/
    The discussion in the other thread leads to that link...
    Simply put...I had the same problem, found that link, solved the problem!

  • IPad app crashes when switching to extra keyboard

    Something I also experienced on my iPhone 4 (but don't now how I fixed that) now also happens on my iPad 3: I just added an additional (2nd) keyboard English to the original keyboard Dutch. And when I try to switch to it (via the 'globe' on the keyboard) the app crashes: for example when using the 'native' Apple app iMessage. How come and what can I do to solve this?

    Try restarting or restoring the iPad.

  • Moto X Camera App Crashes When Taking Movies

    Recently, the camera app has started crashing whenever I try to take a movie with my Moto X.  Has anyone else been having this problem?

    I'm also having this problem AND a coworker is having the same issue.  I called motorola and they suggested starting in safe mode to determine if a 3rd party app was effecting the camera, but it crashed in safe mode too. 
    Anyone have an answer to this?

  • I Phone 5s apps crash when trying to open

    Apps crash on I Phone 5s instagram etc.

    Instagram is a 3rd party app, consult the app developer.
    Have you try delete and re-install?

  • Launching tab is crashing when browsing in another page?

    This is so bizarre I don't know whether it is just IE EPM or something strange about the forums. But it has happened twice. Yesterday I lost a partially composed reply from it and today I lost all context from My Forums.
    I suspect it is a combination of EPM plus these forums.  I happen to be using EPM + 64-bit tabs while I am working on another incident.  That's when I started noticing strange things like this happening.
    In each case, the tab that crashed was not the one that I was in but probably was the one which launched the tab that I was in. 
    How do I diagnose this?  It is not something that I can reproduce.  It is not something that occurs frequently enough that I want to be running ProcMon all that time.  (ProcMon has been having its own problems recently too which makes me even
    less willing to do that.)  The tab was completely gone; otherwise I would try checking the Developer Tools, Console tab for the clues, since I at least have it supposedly showing all Console messages even if it hasn't been opened that soon.  BTW
    one concern about that diagnostic is that it is always showing Clear entries on navigate, which I suspect makes it less useful if the problem is associated with a redirect.
    I recently became aware of ETW tracing as a diagnostic option.  How much overhead would there be from ETW tracing and which ones would be good to try?
    Ref:
    http://blogs.msdn.com/b/ntdebugging/archive/2009/09/08/exploring-and-decoding-etw-providers-using-event-log-channels.aspx 
    Finding that and Pasting it has made me realize that I am currently operating with another unusual option for me: 
        Use most recent order when switching tabs with Ctrl+Tab
    I toggled that one on a while ago when I had so many tabs open I couldn't find the ones that I wanted to get back to even with a whole row of them showing!  Alt-T O, Ctrl-Backtab, HT, CursorUp x3.   (That has always just screamed "Where's
    the toggle?" at me.)   I'll toggle that off now at least and see if that changes the frequency of this crash symptom.
    Is there at least some post-mortem diagnostic I can check?  Perhaps there is an ETW for that at least which I should be enabling that wouldn't have too much overhead?
    Meanwhile I am going to have to resume my wariness about Editing and do more Ctrl-a, Ctrl-c AND saves.  I had become increasingly lax about doing that even before clicking Submit because of the relative reliability I had been getting.
    TIA
    Robert Aldwinckle

    I haven't seen this. Has anyone else?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • AIR app crashes when switching tabs

    Hi there:
    I posted in another forum about this, but it seems the issues
    aren't really related, so a recap:
    quote:
    Originally posted by:
    patrickcheatham
    I am trying to run an AIR app which _crashes_ as soon as it
    needs to access a file or files on the hard drive (via an HTML
    component). Sometimes it just crashes, sometimes I get an error
    that the app can't find Adobe AIR. I have followed most or all of
    the suggestions in
    this
    thread.
    Attached code is a crash report.
    Thanks!
    The app can be found
    here
    The crash report can be found
    here
    The crash report has WebKit all over it; interstingly, when a
    user reported installing the Safari 4 Beta recently, all crashing
    stopped (that doesn't really make sense to me, but OK).
    quote:
    Originally posted by:
    patrickcheatham
    I have further input on this:
    1) The crash occurs when the user switches tabs;
    specifically, when the user switches from a tab which does _not_
    contain an HTML component, to one which _does_ contain an HTML
    component. Said HTML component looks for local content.
    2) The crash occurs when the app tries to phone home to
    Adobe; this phoning home appears to occur during item 1 above
    _and/or_ when the app is launched.
    Any help from above or insight appreciated.
    Thanks,
    Patrick

    Hi Mirela:
    It may be that the issue is a non-issue with AIR 1.5.1
    (versus v1.5), so we'll see. Frustrating, nonetheless, especially
    since it is a sporadic issue.
    You can follow other users' experiences in the forum at
    panosalado.com.
    Thanks for taking the time to download it and try it out --
    and for the feedback. Good to hear a positive! :)
    Cheers,
    Patrick

  • Sphere doc cam software crashed when used in the WorkGroup Manager managed environment  Crash report Process:         Sphere [93076] Path:            /Applications/Sphere.app/Contents/MacOS/Sphere Identifier:      com.yourcompany.Sphere Version:         ?

    Sphere doc cam software crashes when using the screen recording feature in the WorkGroup Manager managed environment .  Does not crash in admin (non managed).
    Process:         Sphere [94287]
    Path:            /Applications/Sphere.app/Contents/MacOS/Sphere
    Identifier:      com.yourcompany.Sphere
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [244]
    Interval Since Last Report:          371 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  25 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2014-02-11 09:53:05.896 -0700
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  9ACAC95B-DACE-48A7-BA12-8644258A670B
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000002c
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.yourcompany.Sphere                  0x0009e93f FrameMovieExporter::stop(QString&) + 79
    1   com.yourcompany.Sphere                  0x000a2e06 -[RecordingController stopRecording] + 118
    2   com.yourcompany.Sphere                  0x0009c217 RecordingImpl::doStopRecording(QString*) + 39
    3   com.yourcompany.Sphere                  0x0009b33d RecordingImpl::doStopRecording(QList<QString>&) + 77
    4   com.yourcompany.Sphere                  0x00095163 RecordingCommonImpl::stopRecording(QList<QString>&) + 67
    5   com.yourcompany.Sphere                  0x0011a7a8 Sphere::stopRecord() + 136
    6   com.yourcompany.Sphere                  0x0010d37e ToolsPanel::startStopRecording(bool) + 78
    7   com.yourcompany.Sphere                  0x00134bad ToolsPanel::qt_metacall(QMetaObject::Call, int, void**) + 541
    8   QtCore                                  0x00902b51 QMetaObject::activate(QObject*, QMetaObject const*, int, void**) + 673
    9   QtGui                                   0x02f172c4 QAbstractButton::clicked(bool) + 68
    10  QtGui                                   0x02c3329a QAbstractButton::mousePressEvent(QMouseEvent*) + 186
    11  QtGui                                   0x02c34366 QAbstractButton::keyPressEvent(QKeyEvent*) + 726
    12  QtGui                                   0x02c345b5 QAbstractButton::mouseReleaseEvent(QMouseEvent*) + 117
    13  QtGui                                   0x02d0866c QToolButton::mouseReleaseEvent(QMouseEvent*) + 28
    14  QtGui                                   0x028e2a65 QWidget::event(QEvent*) + 2565
    15  QtGui                                   0x02c335bd QAbstractButton::event(QEvent*) + 45
    16  QtGui                                   0x02d0a6f0 QToolButton::event(QEvent*) + 64
    17  QtGui                                   0x028872ec QApplicationPrivate::notify_helper(QObject*, QEvent*) + 188
    18  QtGui                                   0x0288efbd QApplication::notify(QObject*, QEvent*) + 7789
    19  QtCore                                  0x008fc33c QCoreApplication::notifyInternal(QObject*, QEvent*) + 108
    20  QtGui                                   0x0288741c QApplication::activeModalWidget() + 156
    21  QtGui                                   0x0283b043 QMacCocoaAutoReleasePool::QMacCocoaAutoReleasePool() + 19427
    22  QtGui                                   0x0282adff QMacInputContext::reset() + 4063
    23  com.apple.AppKit                        0x91dadb95 -[NSWindow sendEvent:] + 5539
    24  QtGui                                   0x02831cdb QMacInputContext::reset() + 32443
    25  com.apple.AppKit                        0x91d7a6a5 -[NSApplication sendEvent:] + 2939
    26  QtGui                                   0x028353dd QMacInputContext::reset() + 46525
    27  com.apple.AppKit                        0x91cd7fe7 -[NSApplication run] + 867
    28  QtGui                                   0x0283f471 QDesktopWidget::resizeEvent(QResizeEvent*) + 12513
    29  QtCore                                  0x009ebb61 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 65
    30  QtCore                                  0x009ebeaa QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 170
    31  QtCore                                  0x009ed526 QCoreApplication::exec() + 182
    32  com.yourcompany.Sphere                  0x001229e1 main + 897
    33  com.yourcompany.Sphere                  0x0000bd09 _start + 208
    34  com.yourcompany.Sphere                  0x0000bc38 start + 40
    Thread 1:
    0   libSystem.B.dylib                       0x9094460a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x908fc34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90926ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x95d73b32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x900ea3d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.Foundation                    0x90168b4d -[NSRunLoop(NSRunLoop) runUntilDate:] + 93
    6   com.AVerMedia.AVerVDig                  0x170584b9 -[AVDocCamControlTCPServer socketThread] + 271
    7   com.apple.AppKit                        0x92035123 +[NSApplication _startDrawingThread:] + 77
    8   com.apple.Foundation                    0x900b5dfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x900b59a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x90926055 _pthread_start + 321
    11  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564b04 CFRunLoopRun + 84
    4   ...le.QuickTimeUSBVDCDigitizer          0x181ca084 0x181c9000 + 4228
    5   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564b04 CFRunLoopRun + 84
    4   ...le.QuickTimeUSBVDCDigitizer          0x181ca084 0x181c9000 + 4228
    5   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x909258c6 kevent + 10
    1   QtCore                                  0x009306e6 QThread::setPriority(QThread::Priority) + 454
    2   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    3   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x95a695f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x95a69480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.CoreMediaIOServices           0x93278a74 MIO::DAL::RunLoop::OwnThread(void*) + 160
    5   com.apple.CoreMediaIOServices           0x9327ac46 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x908fc34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90926ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x937863c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x93798d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x900ea3d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.Foundation                    0x90168b4d -[NSRunLoop(NSRunLoop) runUntilDate:] + 93
    6   com.AVerMedia.AVerVDig                  0x17053914 -[AVUSBDeviceCYBulk2 threadEntry:] + 466
    7   com.apple.AppKit                        0x92035123 +[NSApplication _startDrawingThread:] + 77
    8   com.apple.Foundation                    0x900b5dfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x900b59a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x90926055 _pthread_start + 321
    11  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x9092c2da select$DARWIN_EXTSN$NOCANCEL + 10
    1   QtCore                                  0x00a0e9f7 qt_safe_select(int, fd_set*, fd_set*, fd_set*, timeval const*) + 87
    2   QtCore                                  0x00a12c93 QEventDispatcherUNIXPrivate::doSelect(QFlags<QEventLoop::ProcessEventsFlag>, timeval*) + 435
    3   QtCore                                  0x00a131cf QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 175
    4   QtCore                                  0x009ebb61 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 65
    5   QtCore                                  0x009ebeaa QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 170
    6   QtCore                                  0x0092f79d QThread::exec() + 157
    7   libAVerMacDocCam.1.0.0.dylib            0x01054f2f IdleThread::run() + 127
    8   QtCore                                  0x009306e6 QThread::setPriority(QThread::Priority) + 454
    9   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    10  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x908f51a2 semaphore_wait_trap + 10
    1   ...ickTimeComponents.component          0x93e98c82 QTThreadWaitSignal + 100
    2   ...ickTimeComponents.component          0x94aaf95c sgAudioProcessingThreadEntryPoint + 87
    3   ...ickTimeComponents.component          0x93e9846b start_thread + 54
    4   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x908f51c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x909271af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90928a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x95a78bdf CAGuard::WaitFor(unsigned long long) + 213
    4   com.apple.audio.CoreAudio               0x95a7a79a CAGuard::WaitUntil(unsigned long long) + 70
    5   com.apple.audio.CoreAudio               0x95a78f3f HP_IOThread::WorkLoop() + 759
    6   com.apple.audio.CoreAudio               0x95a78c43 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x95a69480 CAPThread::Entry(CAPThread*) + 96
    8   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0009e8fe  ecx: 0x00000001  edx: 0x0107f000
      edi: 0x186b8940  esi: 0x186b8940  ebp: 0xbfffe7c8  esp: 0xbfffe770
       ss: 0x0000001f  efl: 0x00210282  eip: 0x0009e93f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x0000002c
    Binary Images:
        0x1000 -   0x4fffff +com.yourcompany.Sphere ??? (???) <f7c2b0a788413da6927f15cbf1665ed7> /Applications/Sphere.app/Contents/MacOS/Sphere
      0x56b000 -   0x575ff3 +libAVerBase.1.0.0.dylib ??? (???) <c0f817480b8b3b1e93acfaa715b5cdfe> /Applications/Sphere.app/Contents/Frameworks/libAVerBase.1.0.0.dylib
      0x57b000 -   0x580ffb +libAVerMacSystem.1.0.0.dylib ??? (???) <7d7ab1c093e73eacb72caa7378839ad8> /Applications/Sphere.app/Contents/Frameworks/libAVerMacSystem.1.0.0.dylib
      0x585000 -   0x618fe3 +libAVerSocialNetwork.1.0.0.dylib ??? (???) <b6ea2ada18a931bebe40559dac9c3355> /Applications/Sphere.app/Contents/Frameworks/libAVerSocialNetwork.1.0.0.dylib
      0x638000 -   0x686ffb +libAVerDocCamDirectCore.1.0.0.dylib ??? (???) <7ce00b3227cc357c89b6380576b039c1> /Applications/Sphere.app/Contents/Frameworks/libAVerDocCamDirectCore.1.0.0.dyli b
      0x6a4000 -   0x6a9fef +QtSingleApplication.1.0.0.dylib ??? (???) <c96c230d43c5fadf347617dbac171f4c> /Applications/Sphere.app/Contents/Frameworks/QtSingleApplication.1.0.0.dylib
      0x6af000 -   0x737fe3 +QtMultimediaKit ??? (???) <128415cf4f68e58494e3e8f796e64abe> /Applications/Sphere.app/Contents/Frameworks/QtMultimediaKit.framework/Versions /1/QtMultimediaKit
      0x766000 -   0x7a8fff +phonon ??? (???) <0c22e12035bf30ab3b45c683f2685731> /Applications/Sphere.app/Contents/Frameworks/phonon.framework/Versions/4/phonon
      0x7bd000 -   0x836fe3 +QtDBus ??? (???) <1978cb6b3385a6a506849d535c8ff202> /Applications/Sphere.app/Contents/Frameworks/QtDBus.framework/Versions/4/QtDBus
      0x844000 -   0x897fe3 +QtXml ??? (???) <55615d3464055b65160ce9d1f8732ff4> /Applications/Sphere.app/Contents/Frameworks/QtXml.framework/Versions/4/QtXml
      0x8a8000 -   0xb0afeb +QtCore ??? (???) <166e83eea8084b01d66ed13c1a20a216> /Applications/Sphere.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
      0xb56000 -   0xda1ff3 +QtScript ??? (???) <e5ca39a11e0d64757d8392027d1c6457> /Applications/Sphere.app/Contents/Frameworks/QtScript.framework/Versions/4/QtSc ript
      0xdd9000 -   0xe0bfe7 +QtSql ??? (???) <e9dba1fae1b47f6ec389fcc5a32ef9ad> /Applications/Sphere.app/Contents/Frameworks/QtSql.framework/Versions/4/QtSql
      0xe19000 -   0xedffe3 +QtOpenGL ??? (???) <9847c32076b1eb3415fe103622116be9> /Applications/Sphere.app/Contents/Frameworks/QtOpenGL.framework/Versions/4/QtOp enGL
      0xeff000 -  0x1016feb +QtNetwork ??? (???) <73e78f033d96a3976cf20b05c03f2c36> /Applications/Sphere.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtN etwork
    0x103a000 -  0x103dff7 +libAVerSupportCrypto.1.0.0.dylib ??? (???) <6279e58c463d38c2924fdf78693026b1> /Applications/Sphere.app/Contents/Frameworks/libAVerSupportCrypto.1.0.0.dylib
    0x1040000 -  0x1043ff7 +libAVerSupportGeneral.1.0.0.dylib ??? (???) <cf7af01f8b1e3e879ea29b0315801101> /Applications/Sphere.app/Contents/Frameworks/libAVerSupportGeneral.1.0.0.dylib
    0x1046000 -  0x1066ff3 +libAVerMacDocCam.1.0.0.dylib ??? (???) <f68870d8dbb63abdb259cf61ac462793> /Applications/Sphere.app/Contents/Frameworks/libAVerMacDocCam.1.0.0.dylib
    0x1073000 -  0x1079fff +libAVerUsbMisc.1.0.0.dylib ??? (???) <5193e5654fc63c9e8ca3ab9750a3be7a> /Applications/Sphere.app/Contents/Frameworks/libAVerUsbMisc.1.0.0.dylib
    0x1178000 -  0x1195ffb +libqqt7engine.dylib ??? (???) <9c4b928ca3761ad6f92c0ed85063c721> /Applications/Sphere.app/Contents/PlugIns/mediaservice/libqqt7engine.dylib
    0x11a0000 -  0x11abff7 +libqtmedia_audioengine.dylib ??? (???) <29adeb116e1e002e0a524167aa952468> /Applications/Sphere.app/Contents/PlugIns/mediaservice/libqtmedia_audioengine.d ylib
    0x13ff000 -  0x25ddfef +QtWebKit ??? (???) <8866c377d70c71144ec8e01f1a83dcdb> /Applications/Sphere.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWe bKit
    0x27fe000 -  0x317afef +QtGui ??? (???) <0bfe5cdbc200d5a4f7cb07122c2c0db8> /Applications/Sphere.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
    0x1704b000 - 0x1705dff0 +com.AVerMedia.AVerVDig 2.5.1.0032 (2.5.1.0032) <90c4277c83c6375a01fe65b19115e165> /Library/QuickTime/AVerVDig.component/Contents/MacOS/AVerVDig
    0x1706b000 - 0x17074ff7  com.apple.iokit.IOUSBLib 3.4.9 (3.4.9) <ea4061ec718fddebf2cf952e8606ae87> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1707e000 - 0x17089ffb +com.aver.AVerVirtualVDig 1.2.2024.40 (1.2.2024.40) <8693b4a6443231a68759294fb1128c06> /Library/QuickTime/AVerVirtualVDig.component/Contents/MacOS/AVerVirtualVDig
    0x17090000 - 0x170a6fff +libAVerVisionBridgeServer.1.dylib ??? (???) <b0e30d4212a13a2fb1e9eb43280eb5b3> /Library/Application Support/AVer/dylibs/libAVerVisionBridgeServer.1.dylib
    0x170b1000 - 0x17a2dfef +QtGui ??? (???) <0bfe5cdbc200d5a4f7cb07122c2c0db8> /Library/Application Support/AVer/QtFrameworks/QtGui.framework/Versions/Current/QtGui
    0x17c3e000 - 0x17ea0feb +QtCore ??? (???) <166e83eea8084b01d66ed13c1a20a216> /Library/Application Support/AVer/QtFrameworks/QtCore.framework/Versions/Current/QtCore
    0x17f16000 - 0x1802dfeb +QtNetwork ??? (???) <73e78f033d96a3976cf20b05c03f2c36> /Library/Application Support/AVer/QtFrameworks/QtNetwork.framework/Versions/Current/QtNetwork
    0x18073000 - 0x18096ff7 +libAVerService.1.dylib ??? (???) <da19cc2d259d305c8e7807abd8ec4a99> /Library/Application Support/AVer/dylibs/libAVerService.1.dylib
    0x180a4000 - 0x180beff3 +libAPlusDataManager.1.dylib ??? (???) <41c391dda46c3f7289ef14ab21ea399a> /Library/Application Support/AVer/dylibs/libAPlusDataManager.1.dylib
    0x180c9000 - 0x18100ff3 +libAVerDocCamProxy.1.dylib ??? (???) <ce791d7872853232bdfcfaf8f402e2e0> /Library/Application Support/AVer/dylibs/libAVerDocCamProxy.1.dylib
    0x18116000 - 0x18151fff  com.apple.QuickTimeFireWireDV.component 7.6.9 (1680.9) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1815e000 - 0x18167fff  com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x18171000 - 0x1819fff7  com.apple.QuickTimeIIDCDigitizer 7.6.9 (1680.9) <e65ec1b47a8fa38231a0c063b0859ee4> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x181c9000 - 0x18217ffe  com.apple.QuickTimeUSBVDCDigitizer 2.3.2 (2.3.2) <dceb65eeab48361f6466fadf8aa4ad6f> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x18225000 - 0x183aafe3  GLEngine ??? (???) <052e02d9a452a45d014ffbd2a84a4e7c> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x183d8000 - 0x18431ff7  com.apple.driver.AppleIntelGMA950GLDriver 1.5.48 (5.4.8) <806d3030842b46995c46c9059046f2fc> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x18439000 - 0x18455ff7  GLRendererFloat ??? (???) <7badea5e2b8167c0e6391623bb46140a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x18524000 - 0x1852aff3 +libqgif.dylib ??? (???) <75dc58d3cf5b4f317ca57a90bb06cd32> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqgif.dylib
    0x18533000 - 0x18539fff +libqico.dylib ??? (???) <6af165080c046065ec11fe001ba05fd7> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqico.dylib
    0x1853e000 - 0x18573fef +libqjpeg.dylib ??? (???) <2b719025fdfb60464d73f1310a277292> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqjpeg.dylib
    0x18578000 - 0x185c2fe7 +libqmng.dylib ??? (???) <3b1a1648e9acb620cfc18976526a85fe> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqmng.dylib
    0x19700000 - 0x1974ffeb +libqtiff.dylib ??? (???) <b4b631dcd8e391e5305be882f36afae6> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqtiff.dylib
    0x198a0000 - 0x19909ff7 +libqsqlite.dylib ??? (???) <01a276e06357373b9b9f4b74b1528a34> /Applications/Sphere.app/Contents/PlugIns/sqldrivers/libqsqlite.dylib
    0x19915000 - 0x19918fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1991e000 - 0x19924fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x19a42000 - 0x19a6dff4  com.apple.mio.DAL.VDC_4 130.0 (935) <8f98042c48277e2c973284d845ad8b64> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x19a79000 - 0x19c2ffee  com.apple.TundraUnits 130.0 (935) <77804f3f11b9181b2a9f35990c12cf2a> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Tundr aUnits.bundle/Contents/MacOS/TundraUnits
    0x19c5c000 - 0x19c77fff  com.apple.FWAVC 130.46 (46) <ee8798230047eb0cb0dd083fa63f0ffc> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1b3d0000 - 0x1b6c9ff3  com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x900aafec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x900ab000 - 0x90327fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90377000 - 0x90392ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x903c0000 - 0x9041aff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9041b000 - 0x90427ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90428000 - 0x90560fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90561000 - 0x90568ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x90569000 - 0x90630ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90698000 - 0x90869fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9086a000 - 0x908b3fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x908c6000 - 0x908c8ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x908c9000 - 0x908c9ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x908ca000 - 0x908f3fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x908f4000 - 0x90a5bff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90a5c000 - 0x90e1afea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90e1b000 - 0x90e3ffff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x90e40000 - 0x90e6ffe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90e70000 - 0x90e9bfe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x90e9c000 - 0x911a4fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x911a5000 - 0x91361ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91362000 - 0x91579ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9159f000 - 0x915a3fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x915a4000 - 0x915a9fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x915fb000 - 0x9163dfef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9163e000 - 0x9165cff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9165d000 - 0x9165dffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9165e000 - 0x9166effc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9166f000 - 0x916bdfe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91788000 - 0x91805fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91806000 - 0x9193fff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x91940000 - 0x919e7feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x919e8000 - 0x919f8fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919f9000 - 0x91a30fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91c9f000 - 0x9249dfef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9249e000 - 0x92778ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x927cb000 - 0x9281cff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9281d000 - 0x92c2dfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92c2e000 - 0x92cc1ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92d67000 - 0x93123ff4  com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x93124000 - 0x93132ffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93133000 - 0x93135fff  com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93146000 - 0x931d9fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x931da000 - 0x931f7ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9322f000 - 0x93235fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93236000 - 0x93267ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93268000 - 0x932b3ff7  com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x932b4000 - 0x93438fef  com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93439000 - 0x93439ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9343a000 - 0x934ebfff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x934f1000 - 0x93624fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93625000 - 0x93628fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93641000 - 0x93649fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9364a000 - 0x93732ff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93733000 - 0x93752ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93753000 - 0x9381efef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9381f000 - 0x939aefe7  com.apple.CoreAUC 3.08.0 (3.08.0) <5382f0ce050d3edd8f5979b8a87557bf> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x939af000 - 0x939cdfff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x939ce000 - 0x939cfffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x939d0000 - 0x939d4fff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x939d5000 - 0x93a02feb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93a03000 - 0x93a12ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93a13000 - 0x93a1afff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93a1b000 - 0x93a6afff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93a6b000 - 0x93a6bffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93a6c000 - 0x93a6cfff  com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93a6d000 - 0x93a6dffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93a6e000 - 0x93a79fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93a80000 - 0x93b61ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x93bd0000 - 0x93c4fff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93c56000 - 0x93cafff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93cb0000 - 0x93d3dff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93e21000 - 0x93e2afff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93e2b000 - 0x94d2bfe6  com.apple.QuickTimeComponents.component 7.6.9 (1680.9) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94d2c000 - 0x94d41ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94d42000 - 0x94d83fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94f05000 - 0x94fb7ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x94ff5000 - 0x9500dfff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9500e000 - 0x95013fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95014000 - 0x9515dff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9515e000 - 0x951d0fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x951d1000 - 0x95211fef  com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95212000 - 0x958b2fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x959d1000 - 0x95a4bff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95a4c000 - 0x95ac9feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95aca000 - 0x95ae6ff3  com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95bdc000 - 0x95c1bfef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95c39000 - 0x95c40ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95c41000 - 0x95c41ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95cc1000 - 0x95d4bff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95d4c000 - 0x9621dfbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9621e000 - 0x96258fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96259000 - 0x965f6fef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x965f7000 - 0x96604fe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96605000 - 0x96692ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96693000 - 0x966a9fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x966aa000 - 0x966b4feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x966b5000 - 0x966c1ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x966c2000 - 0x96700fff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96701000 - 0x96853ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96a28000 - 0x96b08fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x9788c000 - 0x979d6feb  com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97a19000 - 0x97ad4fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97b49000 - 0x97b49ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97b4a000 - 0x97b4affe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97c3a000 - 0x97c62ff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x97c96000 - 0x97c96ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97ca4000 - 0x97d00ff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97d01000 - 0x97d5effb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x97d5f000 - 0x97d66fe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x97d67000 - 0x97deeff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x97def000 - 0x97defffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97df0000 - 0x9811bff6  com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi
    Looks like it may be this:
    http://support.apple.com/kb/TS3968
    CCT

  • Photo App Crashes when I try to go to the project tab...

    All the way through the betas and now with the final release of the Photos App, my app crashes when I try to go to the "projects" tab. When I first started using it, it worked fine. I was able to make a new slide show but when I tried exporting it, the app crashed. Ever since then, the app crashes when I click on the projects tab. It will show the projects and then spin for a second and then crashes and gives me the following....
    Process:               Photos [6083]
    Path:                  /Applications/Photos.app/Contents/MacOS/Photos
    Identifier:            com.apple.Photos
    Version:               1.0 (209.52.0)
    Build Info:            PhotoApp-209052000000000~4
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Photos [6083]
    User ID:               501
    Date/Time:             2015-04-08 18:51:06.975 -0500
    OS Version:            Mac OS X 10.10.3 (14D131)
    Report Version:        11
    Anonymous UUID:        6C8BC001-C4AC-821B-4C01-86ED8BC9AACA
    Time Awake Since Boot: 7800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes:       0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Photo Foundation logging:
    2015-04-08 18:38:42.967: error while trying to load video asset for version:x3+rvCmiSOCrcXjpXKCxwA error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (+[PAAVSupport _ensureNaturalDurationIsPresentForPlaybackSettings:version:assetURL:error:]:54)
    2015-04-08 18:38:42.968: unabled to load playback settings: <_PACachedEditSession: 0x6080008abbe0> error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (-[PAVersionEditSession _videoPlaybackSettings]:561)
    2015-04-08 18:38:42.980: no image provided for RDVersion(0x610000b22760) modelId=5834 uuid=x3+rvCmiSOCrcXjpXKCxwA tableName=RKVersion state=persisted,local (-[PAPreviewWriter _imageForImageStyle:version:imageProxyState:inputImage:inputImageSize:descripti on:render:largePreviewIsEmbedded:canceler:previewMaker:]:214)
    2015-04-08 18:38:44.226: Received changes notification alert: <LiModelChangeGroup: 0x618001a79bc0>  alert flags : Replay Complete (__59-[RKFaceChangesHandler startListeningForChangesFromMarker:]_block_invoke_2:173)
    Crashing on exception: *** -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:]: Range or index out of bounds
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff88e1903c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff9547776e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff88e18eed +[NSException raise:format:] + 205
    3   UIFoundation                        0x00007fff941faef8 -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:] + 137
    4   OpusKit                             0x000000010e5e9e5c -[OKWidgetTextView _layoutViews] + 1371
    5   OpusKit                             0x000000010e569acd -[OKSettings commitTransaction] + 408
    6   OpusKit                             0x000000010e5ccb16 -[OKWidgetViewProxy applySettings] + 191
    7   OpusKit                             0x000000010e5f2ed2 -[OKPageViewControllerProxy applySettings] + 283
    8   OpusKit                             0x000000010e5f7066 -[OKPageViewControllerProxy prepareForDisplay] + 50
    9   OpusKit                             0x000000010e5ff78d -[OKNavigatorFixedViewControllerProxy prepareForDisplay] + 67
    10  OpusKit                             0x000000010e5738d3 -[OKDocumentViewControllerProxy viewWillAppear:] + 213
    11  OpusKit                             0x000000010e5dcaea -[OKDocumentViewController viewWillAppear:] + 39
    12  AppKit                              0x00007fff87890b85 -[NSViewController _sendViewWillAppear] + 40
    13  AppKit                              0x00007fff87890a16 -[NSViewController _windowWillOrderOnScreen] + 98
    14  AppKit                              0x00007fff877da2ce -[NSView(NSInternal) _windowWillOrderOnScreen] + 67
    15  AppKit                              0x00007fff877da3b0 -[NSView(NSInternal) _windowWillOrderOnScreen] + 293
    16  AppKit                              0x00007fff877d84c1 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1750
    17  AppKit                              0x00007fff877d7897 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 829
    18  AppKit                              0x00007fff877d74eb -[NSWindow orderWindow:relativeTo:] + 159
    19  OpusKit                             0x000000010e560d4a -[OKDocumentMovieExporter _setup:] + 1099
    20  OpusKit                             0x000000010e55f7e9 __79-[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:]_block_invoke + 38
    21  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    22  libdispatch.dylib                   0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    23  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    24  libdispatch.dylib                   0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    25  CoreFoundation                      0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    26  CoreFoundation                      0x00007fff88d2768f __CFRunLoopRun + 2159
    27  CoreFoundation                      0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    28  HIToolbox                           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    29  HIToolbox                           0x00007fff92f332ea ReceiveNextEventCommon + 431
    30  HIToolbox                           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    31  AppKit                              0x00007fff877329bb _DPSNextEvent + 978
    32  AppKit                              0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    33  AppKit                              0x00007fff87727bf3 -[NSApplication run] + 594
    34  AppKit                              0x00007fff876a4354 NSApplicationMain + 1832
    35  libdyld.dylib                       0x00007fff864725c9 start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit               0x00007fff87a5c610 -[NSApplication _crashOnException:] + 109
    1   com.apple.AppKit               0x00007fff87a5c56b -[NSApplication reportException:] + 140
    2   com.apple.CoreFoundation       0x00007fff88e194ee __handleUncaughtException + 718
    3   libobjc.A.dylib               0x00007fff9547b7cd _objc_terminate() + 94
    4   libc++abi.dylib               0x00007fff86c6f0a1 std::__terminate(void (*)()) + 8
    5   libc++abi.dylib               0x00007fff86c6f113 std::terminate() + 51
    6   libobjc.A.dylib               0x00007fff9547b5ff objc_terminate + 9
    7   libdispatch.dylib             0x00007fff8ec5dc27 _dispatch_client_callout + 28
    8   libdispatch.dylib             0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    9   libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    10  libdispatch.dylib             0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    11  com.apple.CoreFoundation       0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation       0x00007fff88d2768f __CFRunLoopRun + 2159
    13  com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    14  com.apple.HIToolbox           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    15  com.apple.HIToolbox           0x00007fff92f332ea ReceiveNextEventCommon + 431
    16  com.apple.HIToolbox           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    17  com.apple.AppKit               0x00007fff877329bb _DPSNextEvent + 978
    18  com.apple.AppKit               0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    19  com.apple.AppKit               0x00007fff87727bf3 -[NSApplication run] + 594
    20  com.apple.AppKit               0x00007fff876a4354 NSApplicationMain + 1832
    21  libdyld.dylib                 0x00007fff864725c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff908e6232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8ec60a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   libclh.dylib                   0x00007fff8b7a0318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff8b1a6563 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff8b7a1119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff88d27eb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff88d2737b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff877fa66b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 4:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f320c0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 5:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f34000 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 6:: Dispatch queue: IPXSlideshow.updateQueue
    0   com.apple.CoreFoundation       0x00007fff88ccdc8a CFRelease + 10
    1   com.apple.Photos               0x000000010bde2f62 0x10ba64000 + 3665762
    2   com.apple.Photos               0x000000010bbfd02a 0x10ba64000 + 1675306
    3   com.apple.Photos               0x000000010bbfc27b 0x10ba64000 + 1671803
    4   com.apple.Photos               0x000000010bbfcd35 0x10ba64000 + 1674549
    5   com.apple.Photos               0x000000010bd85ca0 0x10ba64000 + 3284128
    6   com.apple.Photos               0x000000010bbf6981 0x10ba64000 + 1649025
    7   com.apple.Photos               0x000000010bd85abb 0x10ba64000 + 3283643
    8   com.apple.Photos               0x000000010bbf5cd5 0x10ba64000 + 1645781
    9   libdispatch.dylib             0x00007fff8ec62323 _dispatch_call_block_and_release + 12
    10  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    12  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 7:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752c70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 8:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000f400b0 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libsystem_platform.dylib       0x00007fff92be6c5b _os_semaphore_wait + 16
    2   libdispatch.dylib             0x00007fff8ec67557 _dispatch_barrier_sync_f_slow + 597
    3   com.apple.opusosx.OpusKit     0x000000010e55f70f -[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:] + 440
    4   com.apple.Slideshows           0x000000010c35e076 -[OMSlideshow posterImageWithSize:] + 352
    5   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    6   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    10  com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    11  com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    12  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    13  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    14  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    15  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    16  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    17  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    18  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    19  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 9:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000b23520 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e5166 __psynch_mutexwait + 10
    1   com.apple.Photos               0x000000010be8464b 0x10ba64000 + 4326987
    2   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    3   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    4   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    5   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    6   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    7   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    8   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    9   com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    10  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    11  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    12  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    13  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    14  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    15  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    16  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    17  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    18  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    19  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    20  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 11:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752e80 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 12:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x60000093fd60 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 14:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x600000b223a0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 16:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000d58f70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 17:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x618000938100 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 24:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 29:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 30:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 31:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 32:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 33:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 34:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 35:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 36:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 37:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 38:
    Thread 39:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 40:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 41:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 42:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 43:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 44:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 45:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86

    If the unit has NEVER been jailbroke, first try a system reset.  It cures many ills and it's quick, easy and harmless...  Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • In IPhone Apps crash when press back buton . When press back back button Last class is appeared slightly slighly ash, with no error or warning .

    Hi,
    I am developing apps on for 4.1 and on Xcode3.2. My Apps crash when press back buton . When press back back button Last class is appeared slightly than crash, with no error or warning ....Here are the code....crash on Back Funtion
    #import "TransactionSummaryDetailViewController.h"
    #import "TransactionSummaryData.h"
    #import "Constant.h"
    #import "DataBase.h";
    #import "Common.h"
    #import "YPCardHolderServiceService.h"
    #import "SelectionScreenViewController.h"
    @implementation TransactionSummaryDetailViewController
    @synthesize table,cardReference;
    @synthesize waitIndicator,transactionsummary,keyArray,valueArray,isSummaryAvailable;
    @synthesize startDate,endDate;
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
            // Custom initialization
        return self;
    -(void)getrowcount{
        if(transactionsummary.cardholdernmae !=nil){
            [keyArray addObject:@"Card Holder Name: "];
            [valueArray addObject:transactionsummary.cardholdernmae];
        if(transactionsummary.cardnumber!=nil){
            [keyArray addObject:@"Card Number: "];
            [valueArray addObject:transactionsummary.cardnumber];
        if(transactionsummary.debittransactioncount != nil){
            [keyArray addObject:@"Debit Tx. Count: "];
            [valueArray addObject:transactionsummary.debittransactioncount];
        if(transactionsummary.debittransactionvalue!=nil){
            [keyArray addObject:@"Debit Tx. Value"];
            [valueArray addObject:transactionsummary.debittransactionvalue];
        if(transactionsummary.credittransactioncount!=nil){
            [keyArray addObject:@"Credit Tx. Count: "];
            [valueArray addObject:transactionsummary.credittransactioncount];
        if(transactionsummary.credittransactionvalue!=nil){
            [keyArray addObject:@"Credit Tx. Value: "];
            [valueArray addObject:transactionsummary.credittransactionvalue];
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
        appDelegate = [[UIApplication sharedApplication]delegate];
        keyArray = [[NSMutableArray alloc]init];
        valueArray = [[NSMutableArray alloc]init];
        [self getrowcount];
        NSLog(@"Key Array Count is %d",[keyArray count]);
        [table setBackgroundColor:[UIColor clearColor]];
        [table setSeparatorColor:TableViewCellSeperatorColor];
        [waitIndicator setHidden:YES];
        [self setTitle:@"Summary Details"];
        UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
        [button setImage:[UIImage imageNamed:@"list.png"] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(BacktoView) forControlEvents:UIControlEventTouchUpInside];
        [button setFrame:CGRectMake(0, 0, 76, 44)];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        if(!isSummaryAvailable)
            if([Common isNetworkAvailable])
                [waitIndicator startAnimating];
                YPCardHolderServiceService *services = [[YPCardHolderServiceService alloc] init];
                YPTransactionsSummaryRequest *summaryRequest = [[YPTransactionsSummaryRequest alloc] init];
                summaryRequest.SC = appDelegate.SC;
                summaryRequest.userName = appDelegate.userName;
                summaryRequest.valid =TRUE;
                summaryRequest.cardReference =[NSString stringWithFormat:@"%@",cardReference];
                NSLog(@"Start Date Is %@ and End Date is %@",startDate,endDate);
                summaryRequest.startDate = startDate;
                summaryRequest.endDate = endDate;
                summaryRequest.applicationType = @"M";
                [services getTransactionsSummary:self action:@selector(getTransactionsSummaryHandlers:) transactionsSummaryRequest:summaryRequest];
                [summaryRequest release];
                [services release];
        [super viewDidLoad];
    //Handle the Response of getTransactionsSummary
    -(void)getTransactionsSummaryHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        // Do something with the YPLoginResponse* result
        YPTransactionsSummaryResponse* result = (YPTransactionsSummaryResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is =%d",[result.transactionSummaryList count]);
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            NSString *deleteQuery = @"delete from TransactionSummary where userid = ";
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            deleteQuery = [deleteQuery stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"delete query= '%@'",deleteQuery);
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"delete query= '%@'",deleteQuery);
            //for (int i =0; i< [result.transactionSummaryList count]; i++)
            for (int i =0; i< [result.transactionSummaryList count] -2; i++)
                NSLog(@"for loop= %d",i);
                YPTransactionSummaryDetails *transactionSummary = (YPTransactionSummaryDetails*)[result.transactionSummaryList objectAtIndex:i];
                NSLog(@"cardholdername= '%@'",transactionSummary.cardholderName);
                /*NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','xxxx xxxx xxxx %@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,
                                                                   appDelegate.userID]];*/
                //Add by sarvesh
                NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,cardreference,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,cardReference,
                                                                   appDelegate.userID]];
                NSLog(@"Insert Query for Transaction Summary is %@",insertQuery);
                [DataBase InsertIntoTable:insertQuery];
            //Read Update Data From DataBase and Refresh Table
                NSString *query = @"Select * from TransactionSummary where userid = ";
                query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"select query= %@",query);
                NSMutableArray *temp=[DataBase getTransactionSummaryTableData:query];
                if([temp count] > 0)
                    transactionsummary = (TransactionSummaryData*)[temp objectAtIndex:0];
                    [keyArray removeAllObjects];
                    [valueArray removeAllObjects];
                [self getrowcount];
                [table reloadData];
    -(void)viewDidAppear:(BOOL)animated
        CGFloat navBarHeight = 50.0f;   
        CGRect frame = CGRectMake(0.0f, 20.0f, 320.0f, navBarHeight);
        [self.navigationController.navigationBar setFrame:frame];
        [super viewDidAppear:animated];
    -(IBAction)BacktoView
        NSLog(@"in back function..TrasactionSummaryDetail");
        SelectionScreenViewController *screenView=[[SelectionScreenViewController alloc] initWithNibName:@"SelectionScreenViewController" bundle:nil];
        [self.navigationController popViewControllerAnimated:YES];
        [screenView release];
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewCellEditingStyleNone;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
        return 1;
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
        return cellHeightForGroupedTable;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        if(section == 0)
            return [keyArray count];
        else       
            return 0;
    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
        NSString *title = nil;
        switch (section){
            case 0:{
                //title = @"Summary Details";
                break;
        return title;
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        if ([self tableView:tableView titleForHeaderInSection:section] != nil) {
            return tableHeaderHeight;
        else {
            // If no section header title, no section header needed
            return 0;
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
        NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
        if (sectionTitle == nil) {
            return nil;
        // Create label with section title
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.frame = CGRectMake(20, 6, 300, 30);
        label.backgroundColor = [UIColor clearColor];
        label.textColor = HeaderTextColor;
        label.shadowColor = HeaderTextShadowColor;
        label.shadowOffset = CGSizeMake(0.0, 1.0);
        label.font = HeaderTextFontSize;
        label.text = sectionTitle;
        // Create header view and add label as a subview
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320,60)];
        [view autorelease];
        [view addSubview:label];
        return view;
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = nil;
        NSString *cellIdentifier;
        cellIdentifier = @"SectionsTableIdentifier";
        int row = [indexPath row];
        CGRect nameLabelRect = CGRectMake(19 , 8, 240, 29);
        CGRect cardlabelRect = CGRectMake(19,31,240,15);
        UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameLabelRect];
        UILabel *cardnumber = [[UILabel alloc] initWithFrame:cardlabelRect];
        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        if(cell == nil){
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
        // Remove all subview from cell content view
        for (UIView *view in cell.contentView.subviews){
            [view removeFromSuperview];
         [cell setAccessoryType:UITableViewCellAccessoryNone];
        [nameLabel setTextColor:firstLabelFontColor];
        [nameLabel setFont:firstLabelFont];
        [nameLabel setFont:firstLabelFontSize];
         nameLabel.textAlignment = UITextAlignmentLeft;
         nameLabel.text = [NSString stringWithFormat:@"%@ : %@",[keyArray objectAtIndex:row],[valueArray objectAtIndex:row]];
         [cell.contentView addSubview: nameLabel];
         cell.selectionStyle = UITableViewCellSelectionStyleNone;
        [cell setBackgroundColor:[UIColor clearColor]];
        [cell setBackgroundColor:TableViewCellColor];
        [nameLabel setBackgroundColor:[UIColor clearColor]];
        [cardnumber setBackgroundColor:[UIColor clearColor]];
        [cardnumber release];
        [nameLabel release];
        return cell;
    // Override to allow orientations other than the default portrait orientation.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    - (void)viewDidUnload {
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (void)dealloc {
        [table release];
        [waitIndicator release];
        [keyArray release];
        [valueArray release];
        [transactionsummary release];
        [super dealloc];
    @end

    This is the user-to-user tech support site.  For carrier issues go to the Dev forums.
    You might want to note that the current iOS is 4.3.3, and the current SDK is 4.3 and XCode 4.0.2

  • Any APP crashes when opening/saving on different locations

    Hi Folks... I'm having a new issue on my mac, which is coming more and more regular...
    The apps crash when I'm trying to:
    1. open a file from the File/Open that pop ups a window for browse the file.
    2. When I'm trying to save the file through the Save As command. The crash mostly occurs when I'm trying to browse to another folder, either been for save or for open a file.
    Apps involved: mostly Photoshop CS5 and Safari, but it happens with other apps too.
    Extra symptom: When the crash occurs, the file gets like corrupted, so each time I try to open/save the file, it crashes the app.
    Solution for the extra symptom: change the name of the file, but problem 1 & 2 starts again (so I have to create a loop of files with different names in order to sort the problem).
    Importance of problem: SUPER HIGH! I'm loosing very important works when this happens, because saving isn't secure and I cannot save as [different versions of the same file] from the app because it's 100% it crashes, so I have to rewrite the file each time I have to save it, which is not good either.
    Things I did:
    1. I already uninstalled and reinstalled Photoshop and cleaned all the files related to it (plists, preferences, etc), so I did a clean install of it and the problem persists.
    2. Already cleaned all the cache files, plist and such from Safari, but the problem persists.
    3. Already ran all the usual maintenance routines and the problem persists.
    I'm hoping to get a clear answer for this issue because I'm wasting lot of time when working, specially in Photoshop.
    Thank you very much for your help, as always!
    Ø3
    Message was edited by: Quantum3

    Update:
    The problem still persists. I have tried with other apps, such as Excel, Mail, Text Edit, etc (you know that also Safari and Photoshop) and the problem is exactly the same... So  the problem doesn't come from the apps.
    Strangely, when doing some automated task in Photoshop (I use to retouch plenty of pics, it's my job) like using the Script Tool located in the File Menu, I have to open a location and browse for the pics I want to automate, just like opening a window from any app, and browsing for a file and it doesn't crash. It¡s exactly the same thing but it doesn't crash.
    Weird...
    Will put here a log file of let say, text edit (it crashed when I selected other than the default directory):
    Process:         TextEdit [4495]
    Path:            /Applications/TextEdit.app/Contents/MacOS/TextEdit
    Identifier:      com.apple.TextEdit
    Version:         1.6 (264)
    Build Info:      TextEdit-2640000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [174]
    Date/Time:       2011-06-21 20:21:06.803 -0300
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -3432501 sec
    Crashes Since Last Report:           -84
    Per-App Interval Since Last Report:  12 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      02265271-FA7C-4588-85F1-CA41DC72E164
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000013183f000
    Crashed Thread:  12
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff8406029a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8406090d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff87d98932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff87d97dbf CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff8354a7ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff8354a5f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff8354a4ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff847e8e64 _DPSNextEvent + 718
    8   com.apple.AppKit                        0x00007fff847e87a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit                        0x00007fff847ae48b -[NSApplication run] + 395
    10  com.apple.AppKit                        0x00007fff847a71a8 NSApplicationMain + 364
    11  com.apple.TextEdit                      0x0000000100000fb8 0x100000000 + 4024
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8407912a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8407affd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8407acd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8407a7fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8407a128 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8406029a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8406090d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff87d98932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff87d97dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff87d97b46 CFRunLoopRun + 70
    5   com.apple.DesktopServices               0x00007fff873074d2 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore          0x00007fff869fc335 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff84079f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8407a35c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84079fc5 start_wqthread + 13
    Thread 10:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff840a3e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff87dba498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8409af8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8409ae19 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff8409ad83 usleep + 57
    3   com.apple.AppKit                        0x00007fff84934361 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff88153f29 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 12 Crashed:
    0   com.apple.ImageIO.framework             0x00007fff878f47fb ImageIO_RemoveExtaChannels16Bit + 55
    1   com.apple.ImageIO.framework             0x00007fff8780ddb8 copyImageBlockSetTIFF + 3095
    2   com.apple.ImageIO.framework             0x00007fff878066c8 ImageProviderCopyImageBlockSetCallback + 189
    3   com.apple.CoreGraphics                  0x00007fff8539e282 img_blocks_create + 356
    4   com.apple.CoreGraphics                  0x00007fff8539e0f5 img_blocks_extent + 96
    5   com.apple.CoreGraphics                  0x00007fff85429b1c img_interpolate_extent + 137
    6   com.apple.CoreGraphics                  0x00007fff85368cc6 img_data_lock + 8480
    7   com.apple.CoreGraphics                  0x00007fff85365eaf CGSImageDataLock + 212
    8   libRIP.A.dylib                          0x00007fff833c421f ripc_AcquireImage + 2431
    9   libRIP.A.dylib                          0x00007fff833c2aa3 ripc_DrawImage + 1218
    10  com.apple.CoreGraphics                  0x00007fff85380cda CGContextDrawImage + 446
    11  com.apple.ImageIO.framework             0x00007fff878601e7 CGImageCreateCopyWithParametersNew + 1757
    12  com.apple.ImageIO.framework             0x00007fff8785ef6c CGImageSourceCreateThumbnailAtIndex + 3236
    13  com.apple.AppKit                        0x00007fff84c051a8 -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 865
    14  com.apple.AppKit                        0x00007fff84c0f731 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 380
    15  com.apple.Foundation                    0x00007fff88153f29 __NSThread__main__ + 1429
    16  libSystem.B.dylib                       0x00007fff840994f6 _pthread_start + 331
    17  libSystem.B.dylib                       0x00007fff840993a9 thread_start + 13
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000008035  rbx: 0x000000011704da00  rcx: 0x0000000000000008  rdx: 0x0000000000000001
      rdi: 0x000000011af83030  rsi: 0x000000013183f000  rbp: 0x000000011af82e00  rsp: 0x000000011af82dd8
       r8: 0x0000000117052654   r9: 0x00000000000007a2  r10: 0x0000000000000b10  r11: 0x00000001318375e0
      r12: 0x0000000000000000  r13: 0x0000000000000001  r14: 0x0000000000006ea0  r15: 0x0000000000006ea0
      rip: 0x00007fff878f47fb  rfl: 0x0000000000010202  cr2: 0x000000013183f000
    Binary Images:
           0x100000000 -        0x100019fff  com.apple.TextEdit 1.6 (264) <8D896028-3313-84D8-1FC9-A4412739AEF4> /Applications/TextEdit.app/Contents/MacOS/TextEdit
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8000cff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8000d000 -     0x7fff80038ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff80043000 -     0x7fff8005eff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8006d000 -     0x7fff80073ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff80074000 -     0x7fff8007afff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8007b000 -     0x7fff8007efff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8007f000 -     0x7fff800c6fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8024b000 -     0x7fff8036cfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff80497000 -     0x7fff804f9fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8053e000 -     0x7fff8054fff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff80550000 -     0x7fff80622fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff80623000 -     0x7fff80628fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8062b000 -     0x7fff806edfef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff806ee000 -     0x7fff807f8ff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff807f9000 -     0x7fff80834fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8083b000 -     0x7fff8084cfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff8084d000 -     0x7fff8086efff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff80878000 -     0x7fff80887fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff80888000 -     0x7fff808cdfff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff808ce000 -     0x7fff808d4ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8097c000 -     0x7fff809c4ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff809c5000 -     0x7fff80a11fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff80a5d000 -     0x7fff80a5eff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80a5f000 -     0x7fff80dfcfe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80dfd000 -     0x7fff80eb2fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff81132000 -     0x7fff813bafef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff813bb000 -     0x7fff813defff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff813df000 -     0x7fff81649fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff81849000 -     0x7fff8184fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff81850000 -     0x7fff818b0fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8190d000 -     0x7fff81923fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff81924000 -     0x7fff81973ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff81974000 -     0x7fff81976fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff819d0000 -     0x7fff819d0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff819d1000 -     0x7fff81a04fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff81d49000 -     0x7fff81f84fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff81f85000 -     0x7fff81feffe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff82097000 -     0x7fff82126fff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff82127000 -     0x7fff8224fff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8226e000 -     0x7fff82385fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff82386000 -     0x7fff82393fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff823ec000 -     0x7fff823f0ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff823f1000 -     0x7fff82406ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff82407000 -     0x7fff8242dfe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8321c000 -     0x7fff83271ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff83272000 -     0x7fff832f1fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff832f2000 -     0x7fff833b3fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff833b4000 -     0x7fff833b6fff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff833b7000 -     0x7fff833faff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff833fb000 -     0x7fff834abfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff834ac000 -     0x7fff834fbfef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff834fc000 -     0x7fff834fcff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff834fd000 -     0x7fff8350ffe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff83510000 -     0x7fff8351bff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8351c000 -     0x7fff8381afff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8381b000 -     0x7fff83820ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff83821000 -     0x7fff83846ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83847000 -     0x7fff8397cff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8397d000 -     0x7fff83b6dfef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff83b6e000 -     0x7fff83b9ffff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83ba0000 -     0x7fff83c11ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff83d28000 -     0x7fff83e05fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83fbe000 -     0x7fff83fbeff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff83fbf000 -     0x7fff83fc0ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff83fc1000 -     0x7fff83fcfff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff83fd0000 -     0x7fff84011fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8405e000 -     0x7fff8405eff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8405f000 -     0x7fff84220fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff84406000 -     0x7fff845c4fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff845c5000 -     0x7fff84703fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff84704000 -     0x7fff847a4fff  com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff847a5000 -     0x7fff8519bfff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff85277000 -     0x7fff852b8fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff852b9000 -     0x7fff85325ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85326000 -     0x7fff85a2306f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85a24000 -     0x7fff85a2bfff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85a2c000 -     0x7fff85a73ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff85b9a000 -     0x7fff85c57fff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85c58000 -     0x7fff86462fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86463000 -     0x7fff864e0fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8655f000 -     0x7fff865ebfef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff866a4000 -     0x7fff8675afff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
        0x7fff86785000 -     0x7fff8681fff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff86848000 -     0x7fff8684bff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86918000 -     0x7fff86961fef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff86962000 -     0x7fff86963fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86964000 -     0x7fff86981ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff86992000 -     0x7fff86992ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86993000 -     0x7fff86993ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff869f5000 -     0x7fff86d29fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff86d2a000 -     0x7fff86d39fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86d3a000 -     0x7fff86e53fef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86e54000 -     0x7fff87297fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87298000 -     0x7fff87299fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8729a000 -     0x7fff8729aff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8729b000 -     0x7fff8729bff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8729c000 -     0x7fff872e6ff7  com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff872e7000 -     0x7fff872eaff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff872eb000 -     0x7fff87304fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87305000 -     0x7fff873ebfef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff873ec000 -     0x7fff874a5fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff874d7000 -     0x7fff874f7ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87560000 -     0x7fff875a4fe7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff875e5000 -     0x7fff875fbfe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8761f000 -     0x7fff87633fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8777c000 -     0x7fff877fefff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff877ff000 -     0x7fff879b7fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87abf000 -     0x7fff87b00ff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87b01000 -     0x7fff87b17fff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff87b90000 -     0x7fff87bf8fff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff87c3e000 -     0x7fff87c90ff7  com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87c91000 -     0x7fff87cc0ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff87cc1000 -     0x7fff87d3fff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff87d4c000 -     0x7fff87ec3fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff880c5000 -     0x7fff88102ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88103000 -     0x7fff88108fff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff88109000 -     0x7fff88142ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff88143000 -     0x7fff883c6fe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff883c7000 -     0x7fff88457fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff88466000 -     0x7fff885d5fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88614000 -     0x7fff88628ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88629000 -     0x7fff88651fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88693000 -     0x7fff88adbfe7  com.apple.RawCamera.bundle 3.7.0 (569) <E3794272-AE0D-8D35-3EFB-CBE4048BEB0D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88adc000 -     0x7fff88b61ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff88b62000 -     0x7fff88b66ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff88b67000 -     0x7fff88ba0fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff88ba1000 -     0x7fff890a5fe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 8 GB, SMC 1.25f4
    Graphics: NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 8800 GT, Display, Slot-1
    Serial ATA Device: WDC WD3200AAJS-41VWA0, 298,09 GB
    Serial ATA Device: WDC WD10EACS-00ZJB0, 931,51 GB
    Serial ATA Device: Maxtor 6B300S0, 279,48 GB
    Parallel ATA Device: OPTIARC DVD RW AD-7170A
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x911b, 0xfd300000
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd330000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0221, 0xfd332000
    USB Device: Apple Cinema Display, 0x05ac  (Apple Inc.), 0x921b, 0xfd320000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Datacolor Spyder3, 0x085c, 0x0300, 0x5d100000
    USB Device: PTK-640, 0x056a  (WACOM Co., Ltd.), 0x00b9, 0x3d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    Ø3

  • AE 2014.2 crash when switching preview panel with Matrox

    I newly bought a pc with Matrox M9138 card, and using it for professional use. All works fine, except for Adobe After Effects CC 2014.2: it simply crashes when switching between the Preview-panel and Render-Cue panel.
    When I look in AE preferences under Video-preview > Mercury transmit doesn't even show that there is a Matrox-card. The only option there is Adobe DV. So, I guess AE doesn't find and even makes use of my Matrox card.
    Technical info:
    Windows Version: 8.1
    Processor: Intel Core i7-4790 CPU, 3.6 GHz
    RAM: 16GB
    Type: 64bits
    Matrox M9138 LP PCIex16
    Driver version 2.4.3.2 (4.4.3.2) for Win 8-64bit
    Adobe CC After effects 2014.2
    After Efects error: "Crash in progress. Last logged message was: <816><ae.blitpipe><2> Making New Context"
    First I installed the Matrox driver, and then Adobe CC, but After effects crashed when switching between preview-panel and render-cue-panel (No Matrox recognition in AE preferences > Mercury transmit)
    Now I did it in other order:
    - I removed Adobe CC (AE included) and all parts
    - Did extra checkup removal with Adobe CC cleaner
    - Removed the Matrox driver
    - Restarted PC
    - Reinstalled Adobe CC with AE
    - Reinstalled Matrox Driver
    - Restarted PC
    - matrox fully installed and working perfectly (no errors in Display Adapters info).
    But still, After effects crashed (Still no Matrox recognition in AE preferences > Mercury transmit)
    I contacted Matrox technical support, and as I suspected, they say they haven't had this problem before and all works fine.
    Typical...
    Does someone has an idea what the problem would be?
    Help or info would be very appreciated.

    Solution:
    My graphics card did not supported the "Mercury Playback Engine GPU Acceleration (Open CL)". You can change it into "Mercury Playback Engine Software Only" in your Project Settings.
    But this is in the wrong place in my opinion. Why not in "Edit/Preferences"? I could've changed it by myself but I did not find the menu.
    Thanks Michaela from the Adobe Support Chat!

  • Contacts app crashes when I add new accounts for sync

    Hello,
    My contacts app crashes when I add new accounts (other than gmail) to sync below you can see the output, what could be the reason and how can I overcome that difficulty thank you in advance
    Process:               Contacts [1044]
    Path:                  /Applications/Contacts.app/Contents/MacOS/Contacts
    Identifier:            com.apple.AddressBook
    Version:               9.0 (1563)
    Build Info:            AddressBook_executables-1563000000000000~3
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Contacts [1044]
    User ID:               501
    Date/Time:             2015-03-13 02:55:10.315 +0200
    OS Version:            Mac OS X 10.10.2 (14C1510)
    Report Version:        11
    Anonymous UUID:        6B11190A-4909-0793-97E2-FF325FB29B9C
    Sleep/Wake UUID:       730D3321-56A7-4FAD-89CA-9ECD127BD5A5
    Time Awake Since Boot: 7500 seconds
    Time Since Wake:       3800 seconds
    Crashed Thread:        4  Dispatch queue: com.apple.root.default-qos.overcommit
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
        __TEXT                 000000010af60000-000000010aff6000 [  600K] r-x/rwx SM=COW  /Applications/Contacts.app/Contents/MacOS/Contacts
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8b52faef RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8b52f86a ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8b52f6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff869a3f81 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff869a3730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff86997593 -[NSApplication run] + 594
    11  com.apple.AppKit               0x00007fff86982a14 NSApplicationMain + 1832
    12  libdyld.dylib                 0x00007fff877a85c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff89f60232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8f6efa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.root.default-qos.overcommit
    0   libsystem_info.dylib           0x00007fff8f4c93eb _mdns_query_callback + 565
    1   libsystem_dnssd.dylib         0x00007fff8b198c9b handle_query_response + 243
    2   libsystem_dnssd.dylib         0x00007fff8b1971b8 DNSServiceProcessResult + 680
    3   libsystem_info.dylib           0x00007fff8f4c7c1e _mdns_search + 1592
    4   libsystem_info.dylib           0x00007fff8f4db5ec mdns_item_call + 275
    5   libsystem_info.dylib           0x00007fff8f4de082 __si_async_call_block_invoke + 119
    6   libdispatch.dylib             0x00007fff8f6f1323 _dispatch_call_block_and_release + 12
    7   libdispatch.dylib             0x00007fff8f6ecc13 _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff8f6ef88f _dispatch_root_queue_drain + 935
    9   libdispatch.dylib             0x00007fff8f6fdfe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8b880637 _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 11:: Dispatch queue: NSOperationQueue 0x618000036de0 :: NSOperation 0x61000005ef90 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.AddressBook.CardDAVPlugin 0x000000010e77d18b -[CDXController _runRunLoopUntilFinished] + 179
    6   com.apple.AddressBook.CardDAVPlugin 0x000000010e77d59c -[CDXController discoverServerWithHttpPorts:withHttpsPorts:withPaths:withTimeout:error:] + 754
    7   com.apple.AddressBook.CardDAVPlugin 0x000000010e76054f -[CDXManager getPrincipalInfo:] + 632
    8   com.apple.AddressBook.CardDAVPlugin 0x000000010e760a5d -[CDXManager getPrincipalInfoPropertyWithNameSpace:andName:error:] + 35
    9   com.apple.AddressBook.CardDAVPlugin 0x000000010e760adc -[CDXManager getPrincipalURLString:] + 48
    10  com.apple.AddressBook.CardDAVPlugin 0x000000010e76f4d9 -[PHXCardDAVSource doSyncWithServer:] + 2480
    11  com.apple.AddressBook.CardDAVPlugin 0x000000010e772db3 -[PHXCardDAVSource startSync] + 654
    12  com.apple.CoreFoundation       0x00007fff889283cc __invoking___ + 140
    13  com.apple.CoreFoundation       0x00007fff88928222 -[NSInvocation invoke] + 290
    14  com.apple.Foundation           0x00007fff8e5922e9 -[NSInvocationOperation main] + 34
    15  com.apple.Foundation           0x00007fff8e4ea32c -[__NSOperationInternal _start:] + 653
    16  com.apple.Foundation           0x00007fff8e4e9f33 __NSOQSchedule_f + 184
    17  libdispatch.dylib             0x00007fff8f6ecc13 _dispatch_client_callout + 8
    18  libdispatch.dylib             0x00007fff8f6f0365 _dispatch_queue_drain + 1100
    19  libdispatch.dylib             0x00007fff8f6f1ecc _dispatch_queue_invoke + 202
    20  libdispatch.dylib             0x00007fff8f6ef6b7 _dispatch_root_queue_drain + 463
    21  libdispatch.dylib             0x00007fff8f6fdfe4 _dispatch_worker_thread3 + 91
    22  libsystem_pthread.dylib       0x00007fff8b880637 _pthread_wqthread + 729
    23  libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 12:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib         0x00007fff89f5f48a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff8dbdfe50 usleep + 54
    2   com.apple.AppKit               0x00007fff86bb4763 -[NSUIHeartBeat _heartBeatThread:] + 2376
    3   com.apple.Foundation           0x00007fff8e54a90a __NSThread__main__ + 1345
    4   libsystem_pthread.dylib       0x00007fff8b880268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8b8801e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8b87e41d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff86b0733b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8b880268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8b8801e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8b87e41d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 15:
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000000f  rbx: 0x0000000000000001  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x000000010c8d35a0  rbp: 0x000000010c8d3550  rsp: 0x000000010c8d34a0
       r8: 0x000000010c8d35a0   r9: 0x0000000000000001  r10: 0x0000000000000000  r11: 0x0000000000000282
      r12: 0x0000000000000001  r13: 0x000000010c8d35a0  r14: 0x000000010c8d3c20  r15: 0x0000000000000000
      rip: 0x00007fff8f4c93eb  rfl: 0x0000000000010246  cr2: 0x0000000000000010
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10af60000 -        0x10aff5ff7  com.apple.AddressBook (9.0 - 1563) <43ED8AE2-B513-3578-B2C8-FD88685D658B> /Applications/Contacts.app/Contents/MacOS/Contacts
           0x10dbc7000 -        0x10dbc8fff  com.apple.AddressBook.LocalSourceBundle (9.0 - 1563) <DD762837-D59A-3603-84A1-86FB30043334> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10e749000 -        0x10e74dff7  com.apple.DirectoryServicesSource (9.0 - 1563) <05E74164-B969-385E-A5DB-162055C6C90F> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10e753000 -        0x10e755fff  com.apple.addressbook.POIPlugin (9.0 - 1563) <319B0E57-ACD3-387C-BB49-813B8EC94314> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x10e75b000 -        0x10e7a9fff  com.apple.AddressBook.CardDAVPlugin (10.9 - 451) <572F0C80-B344-3C44-8EB7-DF0BD0CCE739> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10f2bc000 -        0x10f2bcfef +cl_kernels (???) <45F3041C-2FA3-4760-8415-467DB8956AC8> cl_kernels
           0x10f2ca000 -        0x10f2caff5 +cl_kernels (???) <C4C54B9E-ABBF-4BAB-B3F7-9AE16A96CF3A> cl_kernels
           0x10f2cc000 -        0x10f3b2fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111d43000 -        0x111d43ffe +cl_kernels (???) <DD3CB9A9-1EFA-4B54-9CD9-2991E0BCED29> cl_kernels
           0x112119000 -        0x112119ffe +cl_kernels (???) <DD3CB9A9-1EFA-4B54-9CD9-2991E0BCED29> cl_kernels
           0x11213d000 -        0x11213dfef +cl_kernels (???) <45F3041C-2FA3-4760-8415-467DB8956AC8> cl_kernels
        0x7fff6b6b0000 -     0x7fff6b6e6837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff84fc8000 -     0x7fff84fcdff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff84fdd000 -     0x7fff84febfff  com.apple.AddressBook.ContactsFoundation (9.0 - 1563) <CCAB74BF-947C-384D-B4C8-E2118145555B> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff85572000 -     0x7fff85666fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff85fc0000 -     0x7fff85fc9ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff85fca000 -     0x7fff85fe4ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff85fe5000 -     0x7fff86009ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8600a000 -     0x7fff86325fcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff86326000 -     0x7fff8632dfff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8635c000 -     0x7fff86378fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff86391000 -     0x7fff8639cff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff8639d000 -     0x7fff863ebfff  com.apple.ExchangeWebServices (5.0 - 213) <BB96875F-981D-3787-B450-A294F6D0A6A6> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff863ec000 -     0x7fff864fafff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8650a000 -     0x7fff86535fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff86536000 -     0x7fff86583fff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff865a9000 -     0x7fff865c3ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff865c4000 -     0x7fff86638fff  com.apple.ShareKit (1.0 - 323) <92C947CC-FD6B-39D4-919D-9ABD7701384C> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff86639000 -     0x7fff86646fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff86657000 -     0x7fff8665bff7  libGIF.dylib (1232) <3C70FBBC-FBA5-3013-A440-05D68B63885F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86685000 -     0x7fff86689fff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8668a000 -     0x7fff8677dfff  com.apple.MapKit (1.0 - 1464.4.21.1) <DF2A21A5-4128-388C-9BDA-E55DAD02103B> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff8677e000 -     0x7fff867ecffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff867ed000 -     0x7fff867effff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff867f0000 -     0x7fff867f4fff  libspindump.dylib (182) <085978DC-A34D-3B72-BC7B-025C35A0A373> /usr/lib/libspindump.dylib
        0x7fff867f5000 -     0x7fff867f8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff86918000 -     0x7fff86933ff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff86980000 -     0x7fff874caff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff874cb000 -     0x7fff87735fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87736000 -     0x7fff87741fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87757000 -     0x7fff877a4ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff877a5000 -     0x7fff877a8ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff877a9000 -     0x7fff877a9fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff877c3000 -     0x7fff877d8ff7  com.apple.AppContainer (4.0 - 238.10.1) <24A43E31-BCD3-32DB-8023-DE7EEA912E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff877d9000 -     0x7fff877ebff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff877ec000 -     0x7fff878deff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff878df000 -     0x7fff878f0fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff87aaa000 -     0x7fff87b6afff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff87b90000 -     0x7fff87c2fdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff87c30000 -     0x7fff87c7fff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff87c80000 -     0x7fff87c81ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff87c82000 -     0x7fff87c8dfff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff87c8e000 -     0x7fff87ecffff  com.apple.AddressBook.framework (9.0 - 1563) <63953D92-FB0D-31B1-A449-07BA64D08BA9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff87ed0000 -     0x7fff87ed3ff7  com.apple.AppleSystemInfo (3.1 - 3.1) <B40B3737-42A5-3D57-9E87-D3905EE5BADB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff87ed4000 -     0x7fff87eeaff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3EAFC9D1-8D7C-30CF-92C7-903A5C241763> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87eeb000 -     0x7fff87ef5ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff87ef6000 -     0x7fff87ef6fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff87ef7000 -     0x7fff87f0cfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff87f0d000 -     0x7fff87f19ff7  com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ilities
        0x7fff87f1a000 -     0x7fff87f23fff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff87f53000 -     0x7fff8832afe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8832b000 -     0x7fff8832dfff  libRadiance.dylib (1232) <9C2DBBDF-0F0B-36BF-84D0-13E0086F793A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8832e000 -     0x7fff8835bfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88421000 -     0x7fff8842afff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8842c000 -     0x7fff88434ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff88435000 -     0x7fff884f0ff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff884f7000 -     0x7fff88515ff7  com.apple.addressbook.vCard (9.0 - 1563) <370F3435-855E-3C60-9CC9-B3F24AC1AF97> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff88516000 -     0x7fff8857dffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8857e000 -     0x7fff888e9fff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff888ea000 -     0x7fff888ecff3  com.apple.SafariServices.framework (10600 - 10600.3.18) <2C2F0A8D-CC06-30CF-B247-93A96A25F0D5> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff888ed000 -     0x7fff88c83fff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff88c84000 -     0x7fff89170ff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff89171000 -     0x7fff89197ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff89198000 -     0x7fff8919cfff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8919d000 -     0x7fff8923bfff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8923c000 -     0x7fff89260ff7  com.apple.facetimeservices (10.0 - 1000) <3DCF679D-B06D-3CB4-AE6E-FBC122959529> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff89261000 -     0x7fff89446ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff89447000 -     0x7fff894cbfff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8950e000 -     0x7fff89590fff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff89591000 -     0x7fff89592fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff89593000 -     0x7fff895fffff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8960f000 -     0x7fff8977aff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8977b000 -     0x7fff89796ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff89797000 -     0x7fff897a5ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff898a7000 -     0x7fff89903fff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89904000 -     0x7fff89911ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff89912000 -     0x7fff89935ff7  com.apple.idsfoundation (10.0 - 1000) <E603D03E-6EFF-375B-AC5E-1F888EDB2D49> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff89936000 -     0x7fff899cbff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff899cc000 -     0x7fff89b5afff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff89bdd000 -     0x7fff89e73ff7  com.apple.AOSKit (1.06 - 215) <432B31DE-50F3-3258-A462-A777C3B8184A> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89e74000 -     0x7fff89f05ff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff89f13000 -     0x7fff89f17fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89f18000 -     0x7fff89f20ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff89f21000 -     0x7fff89f48fff  com.apple.printingprivate.framework.PrintingPrivate (10.0 - 148) <1EFBB095-7BA4-3D4C-8532-25989C0A0279> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
        0x7fff89f49000 -     0x7fff89f66fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89f67000 -     0x7fff89fb5fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff89fb6000 -     0x7fff89fb7fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff89fbd000 -     0x7fff89ff8fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a882000 -     0x7fff8a885ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8a886000 -     0x7fff8a891ff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff8a8bb000 -     0x7fff8a8ebfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8a8ec000 -     0x7fff8a8ecfff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8a8ed000 -     0x7fff8a901ff7  com.apple.MessagesKit (1.0 - 1) <95927461-D647-323F-8F76-D46CB46272DF> /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit
        0x7fff8a902000 -     0x7fff8a97aff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8aa4e000 -     0x7fff8aa6ffff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8aa70000 -     0x7fff8aaa9fff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8aaaa000 -     0x7fff8aaabfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8aadf000 -     0x7fff8ac8fff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ac95000 -     0x7fff8acd6fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8ad14000 -     0x7fff8ad1bff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ad1c000 -     0x7fff8adadff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff8adae000 -     0x7fff8adaefff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8adaf000 -     0x7fff8aef5fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff8aef6000 -     0x7fff8af47ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8af48000 -     0x7fff8afa3fef  libTIFF.dylib (1232) <56D444B7-A37A-30BC-80B5-5E702FFAAAAB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8afa4000 -     0x7fff8afa5ff7  com.apple.AddressBook.ContactsData (9.0 - 1563) <2A4BD452-4279-38AA-A4EE-761903795B05> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8afa6000 -     0x7fff8afbffff  com.apple.ContactsUI (9.0 - 1563) <75C944A2-8407-341F-8B37-42D7BD47CEBE> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff8afc0000 -     0x7fff8afdafff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8b00a000 -     0x7fff8b053ff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b054000 -     0x7fff8b05bff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b05c000 -     0x7fff8b0e5fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b0e6000 -     0x7fff8b0eefff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8b0ef000 -     0x7fff8b14eff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b15c000 -     0x7fff8b194fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b195000 -     0x7fff8b19dfff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8b19e000 -     0x7fff8b1a5fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8b1a6000 -     0x7fff8b4d9fff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff8b4da000 -     0x7fff8b4f4ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8b4f5000 -     0x7fff8b4f7fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8b4f8000 -     0x7fff8b500ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8b501000 -     0x7fff8b805ffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8b806000 -     0x7fff8b860ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8b87d000 -     0x7fff8b886fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b887000 -     0x7fff8b88dfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8b88e000 -     0x7fff8b8acfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b8ad000 -     0x7fff8b8e8fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b8e9000 -     0x7fff8b92fffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b930000 -     0x7fff8b9dffe7  libvMisc.dylib (516) <A82F9FE8-70ED-3BC9-9184-1A2B9EE3C010> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8b9e0000 -     0x7fff8ba17ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8ba18000 -     0x7fff8ba29ff3  libsystem_coretls.dylib (35.10.1) <3EAED90A-7AA0-323C-A52B-E16477981D59> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8ba2a000 -     0x7fff8ba32fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8ba47000 -     0x7fff8bd2effb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8bd2f000 -     0x7fff8bf32ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8bf33000 -     0x7fff8bf35ff7  com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8bf36000 -     0x7fff8bf36ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8bf37000 -     0x7fff8bfa6fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c174000 -     0x7fff8c1c0ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8c1c1000 -     0x7fff8c1c4fff  libScreenReader.dylib (390.21) <364E0A52-4076-3F55-8C77-7CC5E085E4C4> /usr/lib/libScreenReader.dylib
        0x7fff8c1c5000 -     0x7fff8c1d2ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8c1d3000 -     0x7fff8c1e5ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c1e6000 -     0x7fff8d19dffb  com.apple.WebCore (10600 - 10600.3.15) <59A28076-26E4-3CE2-B6FC-AF59308C0B95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d19e000 -     0x7fff8d1a0ff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8d1a1000 -     0x7fff8d409ff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d40a000 -     0x7fff8d42dfff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8d435000 -     0x7fff8d455fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8d456000 -     0x7fff8d4f8ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8d4f9000 -     0x7fff8db60fff  com.apple.VectorKit (1.0 - 992.4.10) <9D373DA9-677E-3585-BC97-522C82967FC2> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff8db61000 -     0x7fff8dbedff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff8dbf0000 -     0x7fff8dbf1fff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff8dbf2000 -     0x7fff8dc3fff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8dc8b000 -     0x7fff8dcdffff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8dce0000 -     0x7fff8dd08fff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff8dd18000 -     0x7fff8dd64ff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8de4b000 -     0x7fff8de4ffff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8df0d000 -     0x7fff8e051ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8e0eb000 -     0x7fff8e0f9ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e0fa000 -     0x7fff8e102fe7  libcldcpuengine.dylib (2.4.5) <F9EF8060-5E40-3E88-BC38-7452649672B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8e103000 -     0x7fff8e10bfff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8e168000 -     0x7fff8e1e5fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e1e6000 -     0x7fff8e308ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8e4aa000 -     0x7fff8e4d3ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8e4d4000 -     0x7fff8e4e1fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e4e2000 -     0x7fff8e810fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8e811000 -     0x7fff8e811fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8e812000 -     0x7fff8e81dfff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8e81e000 -     0x7fff8e843fff  libPng.dylib (1232) <10DC46CC-A4FD-3B1A-AA23-E4F12938BC13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8e844000 -     0x7fff8e853fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8eb38000 -     0x7fff8eb4cff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8eb4d000 -     0x7fff8eb6affb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8eb6b000 -     0x7fff8eb6dff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8eb6e000 -     0x7fff8ebe2ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8ec62000 -     0x7fff8ec67fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8ec68000 -     0x7fff8ec70ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8ec71000 -     0x7fff8ec72ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8ecce000 -     0x7fff8eceaff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8ee7b000 -     0x7fff8eed7fff  com.apple.coredav (1.0.1 - 261) <6FDDD736-DF1C-3D2B-82D7-D6D15C67F269> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8eed8000 -     0x7fff8f000ff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8f001000 -     0x7fff8f033ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8f034000 -     0x7fff8f03ffdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f040000 -     0x7fff8f093ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8f094000 -     0x7fff8f4c4fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8f4c5000 -     0x7fff8f4edfff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8f4ee000 -     0x7fff8f628ff7  com.apple.ImageIO.framework (3.3.0 - 1232) <A9682E9F-4917-3926-A035-7FEE7FF9D2AB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8f630000 -     0x7fff8f633fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8f634000 -     0x7fff8f6c8fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f6c9000 -     0x7fff8f6daff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8f6db000 -     0x7fff8f6ddfff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8f6eb000 -     0x7fff8f715ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8f716000 -     0x7fff8f744fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f7f5000 -     0x7fff8f835ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff8f836000 -     0x7fff8f8b7ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8f8b8000 -     0x7fff8f9d0ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f9d1000 -     0x7fff8fa29ff7  com.apple.accounts.AccountsDaemon (113 - 113) <30F83BF7-2BAE-3BAD-B111-224346AF4B52> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8fa2a000 -     0x7fff8fa49fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff8fa4a000 -     0x7fff8fa4fff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8fa80000 -     0x7fff8faf4fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8faf5000 -     0x7fff8fbd5fff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8fbd6000 -     0x7fff8fbe2ff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8fbe3000 -     0x7fff8fc48ff7  com.apple.ids (10.0 - 1000) <BAF9E069-888A-30EB-B247-DC6311B53B67> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8fc49000 -     0x7fff8fd07ff7  com.apple.imcore (10.0 - 1000) <F0AD50BC-EE92-3808-83C6-3E8CCF8782F1> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8fd08000 -     0x7fff8fd0afff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8fd0b000 -     0x7fff8fd0dffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8fd0e000 -     0x7fff8fd3dfff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8fd3e000 -     0x7fff8fd48fff  com.apple.IntlPreferences (2.0 - 150.1) <C62C6F4F-38B9-340B-82A6-1F82AFE1D724> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8fd5e000 -     0x7fff8fdecff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8fded000 -     0x7fff8fe15ffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8fe16000 -     0x7fff8fe2fff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8fe4a000 -     0x7fff8fe76fff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff8fed7000 -     0x7fff90009ff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9003b000 -     0x7fff900d1ffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff900d2000 -     0x7fff900d9fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff900da000 -     0x7fff900f4ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff900f5000 -     0x7fff903c4ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90435000 -     0x7fff9043bfff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff9043c000 -     0x7fff9043eff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff9043f000 -     0x7fff90445ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90446000 -     0x7fff9044bff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff904fb000 -     0x7fff90526ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff90527000 -     0x7fff90557ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff90585000 -     0x7fff905c2ff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff905c3000 -     0x7fff90721ffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90722000 -     0x7fff90736ff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff90744000 -     0x7fff9074fff7  com.apple.DirectoryService.Framework (10.10 - 187) <29F7A48C-D8DD-33EB-B9E3-863DA7DBB421> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff907b7000 -     0x7fff90ff0fe3  com.apple.CoreGraphics (1.600.0 - 775.16) <A7BA30E6-A15F-3E48-9718-3837949A0E2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff90ff1000 -     0x7fff90ff2ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff90ff3000 -     0x7fff9100cfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9100d000 -     0x7fff9100dff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff9104a000 -     0x7fff91066ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff91067000 -     0x7fff9132dfff  com.apple.WebKit (10600 - 10600.3.18) <F8E36318-4F4C-348B-B1DE-D4BE035036AD> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff9132e000 -     0x7fff91344ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff91345000 -     0x7fff91437fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff9145b000 -     0x7fff9145dfff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff9148c000 -     0x7fff91495ff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff91496000 -     0x7fff91742fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91743000 -     0x7fff91c56ff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91c57000 -     0x7fff91d3bfff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff91d3f000 -     0x7fff91d63fef  libJPEG.dylib (1232) <638302B6-369F-3C50-BF63-F8D19C393F47> /System/Library/Frameworks/ImageIO.framework/Versions/A/Re

    Please test after taking each of the following steps. Back up all data before you begin.
    Step 1
    Quit the Contacts or Address Book application if it's running.
    Triple-click anywhere in the line of text below on this page to select it:
    ~/Library/Caches/com.apple.AddressBookSourceSync
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash.
    Repeat with this line:
    ~/Library/Containers/com.apple.AddressBook
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Step 2
    If you use iCloud, uncheck the box marked Contacts in the iCloud preference pane. Press return to confirm, or click Keep on Mac in the dialog that opens.
    If you synchronize contacts with any other network service, disable that synchronization in the Internet Accounts  preference pane.
    Step 3
    This step applies only if you can launch Contacts. From the list of groups on the left side of the Contacts window, select All On My Mac. If that group doesn't exist or is empty, skip this step. Otherwise, from the menu bar, select
              File ▹ Export... ▹ Contacts Archive...
    Save the exported archive to the Desktop.
    Step 4
    Quit Contacts if it's running. Reveal the following item in the Finder as you did in Step 1:
    ~/Library/Application Support/AddressBook
    If you know when the problem started, and you can restore that folder from an earlier backup without losing any contacts, do so and test. Otherwise, move the folder to the Desktop, leaving the window open for now.
    Step 5
    Launch Contacts. Your contacts and groups will be gone. If you took Step 3, then double-click the file you created in that step and confirm that you want to import from it. Your contacts and groups will reappear.
    Step 6
    If you took Step 2, reverse it. Test. If the issue is resolved, delete the AddressBook folder and the archive file on the Desktop and close the open folder window.
    Otherwise, quit Contacts again and put the AddressBook folder back where it was, overwriting the newer one that will have been created in its place.
    Step 7
    Go back to Step 3, but this time choose Export vCard... from the Export menu. Continue as in Steps 4-6. All contacts should be preserved, but you may lose some metadata such as group membership.

  • I can't install "windows phone power tool" in window 8 for windows phone 8 app development.

    Dear Sir/Mam,
    I can't install "windows phone power tool" in window 8 for windows phone 8 app development.
    I am download the Windows phone power tool  for install in windows 8 for wp8 app development then it show the dialogbox for install that software. if i am click on install button it shows a another dialogbox that 
    i am using this link for install wp power tool.
    "https://wptools.codeplex.com/releases/view/97029"
    System Update Required,
    Unable to install or run the application. The application requires that assembly
    Microsoft.SmartDevice.Connectivity Version 12.0.0.0 be installed in the Global Assembly Cache(GAC) first .
    More information on this system update can be found by visiting the site here()
    How can i solve this problem. Please help me for install wp8 power tool.
    Thanks & Regards,
    SrinivaaS.

    Hi SrinivaaS Birlangi,
    >>Microsoft.SmartDevice.Connectivity Version 12.0.0.0 be installed in the Global Assembly Cache(GAC) first
    When we meet the above exception, first please try to make sure that we have installed the WP8.0 SDK very well.
    Then please try to check the following article which may give you some idea:
    https://wptools.codeplex.com/workitem/41 .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Since installing Maverick, all Adobe CC apps crash when I am trying to save or import.

    Since installing Maverick, all Adobe CC apps crash when I am trying to save or import.  I might be able to save the file if I do not try to select anything other folder than the current folder that opens (last opened).  I do not use the cover view option (I see some have had problems with that), but almost always have it in list view.
    Is there some setting I need to set or is there a fix for this somewhere?
    Also, is it just me or does it seem like Mac crashes more now with Maverick than before?

    Here is a portion log from Photoshop CC from Step 1
    Date/Time:       2013-11-22 19:22:56 -0500
    OS Version:      10.9 (Build 13A603)
    Architecture:    x86_64
    Report Version:  18
    Command:         Photoshop
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Version:         14.1.2 (14.1.2.427)
    Parent:          launchd [205]
    PID:             437
    Event:           hang
    Duration:        1.16s (process was unresponsive for 9 seconds before sampling)
    Steps:           12 (100ms sampling interval)
    Hardware model:  iMac9,1
    Active cpus:     2
    Fan speed:       798 rpm
    Free pages:      338236 pages (+1861)
    Pageins:         16 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Adobe Photoshop CC [437]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Architecture:    x86_64
    Parent:          launchd [205]
    UID:             501
    Task size:       55405 pages
    CPU Time:        1.087s
    Note:            Unresponsive for 9 seconds before sampling
      Thread 0x3216     DispatchQueue 1          priority    0-35   cpu time   1.086s
      12 ??? (Adobe Photoshop CC + 10804) [0x100002a34]
        12 ??? (Adobe Photoshop CC + 2967993) [0x1002d49b9]
          12 ??? (Adobe Photoshop CC + 2967772) [0x1002d48dc]
            12 ??? (Adobe Photoshop CC + 556898) [0x100087f62]
              12 ??? (Adobe Photoshop CC + 23843020) [0x1016bd0cc]
                12 ??? (Adobe Photoshop CC + 23838178) [0x1016bbde2]
                  12 -[NSApplication run] + 646 (AppKit) [0x7fff86dfea29]
                    12 ??? (Adobe Photoshop CC + 23836328) [0x1016bb6a8]
                      12 ??? (Adobe Photoshop CC + 23833549) [0x1016babcd]
                        12 -[NSApplication sendEvent:] + 2021 (AppKit) [0x7fff86fae744]
                          12 ??? (AdobeOwl + 223946) [0x1043f6aca]
                            12 -[NSWindow sendEvent:] + 3721 (AppKit) [0x7fff8700df71]
                              12 ??? (Adobe Photoshop CC + 24599380) [0x101775b54]
                                12 ??? (Adobe Photoshop CC + 24595429) [0x101774be5]
                                  12 ??? (Adobe Photoshop CC + 547869) [0x100085c1d]
                                    12 ??? (Adobe Photoshop CC + 541782) [0x100084456]
                                      12 ??? (Adobe Photoshop CC + 9041949)
    I also see this message:
    *** Assertion failure in -[PSCocoaMenu itemAtIndex:], /SourceCache/AppKit/AppKit-1265/Menus.subproj.NSMenu.m:865
    Also, here is a .hang report that I found
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Process:         Adobe Photoshop CC [939]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
      11 ??? (Adobe Photoshop CC + 10804) [0x100002a34]
        11 ??? (Adobe Photoshop CC + 2967993) [0x1002d49b9]
          11 ??? (Adobe Photoshop CC + 2967772) [0x1002d48dc]
            11 ??? (Adobe Photoshop CC + 556898) [0x100087f62]
              11 ??? (Adobe Photoshop CC + 23843020) [0x1016bd0cc]
                11 ??? (Adobe Photoshop CC + 23838178) [0x1016bbde2]
                                          11 ??? (Adobe Photoshop CC + 23838420) [0x1016bbed4]
                                            11 ??? (Adobe Photoshop CC + 554787) [0x100087723]
                                              11 ??? (Adobe Photoshop CC + 555164) [0x10008789c]
                                                11 ??? (Adobe Photoshop CC + 582218) [0x10008e24a]
                                                  11 ??? (Adobe Photoshop CC + 551140) [0x1000868e4]
                                                    11 ??? (Adobe Photoshop CC + 1096492) [0x10010bb2c]
                                                      11 ??? (Adobe Photoshop CC + 1066245) [0x100104505]
                                                        11 ??? (Adobe Photoshop CC + 1106928) [0x10010e3f0]
                                                          11 ??? (Adobe Photoshop CC + 9028189) [0x10089c25d]
                                                            11 ??? (Adobe Photoshop CC + 543403) [0x100084aab]
                                                              11 ??? (Adobe Photoshop CC + 9047434) [0x1008a0d8a]
                                                                11 ??? (Adobe Photoshop CC + 539561) [0x100083ba9]
                                                                  11 ??? (Adobe Photoshop CC + 23909304) [0x1016cd3b8]
            11 ??? (Adobe Photoshop CC + 24013556) [0x1016e6af4]
              11 ??? (Adobe Photoshop CC + 26858074) [0x10199d25a]
                11 ??? (Adobe Photoshop CC + 26851948) [0x10199ba6c]
                  11 ??? (Adobe Photoshop CC + 26855800) [0x10199c978]
                    11 ??? (Adobe Photoshop CC + 2771725) [0x1002a4b0d]
            11 ??? (Adobe Photoshop CC + 24013556) [0x1016e6af4]
              11 ??? (Adobe Photoshop CC + 2351757) [0x10023e28d]
             0x100000000 -        0x103bb5f07  com.adobe.Photoshop 14.1.2 (14.1.2.427) <CC99E953-1231-383F-BC67-BCE95BA4E2A7> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
             0x106bf3000 -        0x107282fef  com.adobe.PlugPlugOwl 4.0.1.34 (4.0.1.34) <762B5A6D-E532-3EDD-9E8C-6A52F77BF985> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
             0x10ff7d000 -        0x10ffffff7  MultiProcessor Support <551607FA-AC71-39ED-871E-0F26335ADF89> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
             0x116600000 -        0x116848ff7  com.adobe.PSAutomate 13.0 (13.0) <C674EBC3-36AA-368A-B400-0EB597CC8F23> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/M acOS/ScriptingSupport
             0x1168cb000 -        0x1168d9fff  com.adobe.boost_threads.framework 7.0.0 (7.0.0.0) <C44EEFDE-8A50-303A-8DF6-197E37C34DFC> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
             0x118bb8000 -        0x118c19ff7  com.adobe.dvatransport.framework 7.0.0 (7.0.0.0) <0BF14F9A-4525-3A85-8F11-174E23A01D57> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
             0x11cfdd000 -        0x11d227fff  com.adobe.dvacore.framework 7.0.0 (7.0.0.0) <DE7B7941-89B3-3A19-A7BE-28E9BB2BC2DD> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaem on.app/Contents/MacOS/AdobeCrashDaemon
    Parent:          Adobe Photoshop CC [939]
    Responsible:     Adobe Photoshop CC [939]
    Responsible:     Adobe Photoshop CC [939]
    Not sure if any of this helps...

Maybe you are looking for

  • Code doesn't update when uploading new files to website.

    code doesn't update when uploading new files to website.   I was using an old DW version for a long time then forced to upgrade when I bought my MacBook Pro. Now when I make changes to my pages and link to new files etc on my harddrive, when i upload

  • Using 'For Each' Method in re-usable ADF library application

    I'm trying to build a re-usable RSS library application from the following (using JDev Studio Edition Version 11.1.1.4.0 on Windows 2008 Server): http://blogs.oracle.com/dana/entry/reusable_adf_library_rssfeedre I'm bascially creating the application

  • Thin lines appears somtimes in macbook air

    HI I just bough Macbook Air 2013 2 weeks ago and i am expesiencing some thin line horizental  appearig in my screen for a fraction of a second ... it have happned 5-6 time now.. is somting propblem with hardware ? please help its Macbook Air with 8 G

  • Compatibility issues with Vectorworks

    Hi, first time posting here. I recently purchased Creative Cloud and installed it on my desktop and laptop.  So far, I'm using Acrobat, Photoshop, and Premiere Pro. It's the only software changes I've made, and now I'm having issues with my drafting

  • Outlook won't work with lion

    Since installing OSX Lion on my Macbook, Outlook '11 will no longer work.  Any ideas?