Flash MX2004 - Disappearing Images

I am having a problem with images disappearing from the
library (and therefore from the stage/movie). Hopefully someone can
help me.
Here's what is happening: I imported several (~20) jpgs to
the library (bitmap properties: allow smoothing, jpeg compression,
use imported jpeg data) - then convert to symbol (graphic). I use
the symbol (graphic) in the movie, not the bitmap. Everything seems
to work ok and I save and close my file (.fla). Then, when I open
the file again, images randomly disappear from the library (both
the bitmap and the symbol). The places in the movie where I had
instances of the image, are now blank with the circle in the middle
of where the image was and the crosshair in the upper left of where
the image was supposed.
My naming convention - All bitmaps begin with bmp_. All
graphics begin with gfx_. There are no spaces in the image name...
I use the underscore _ when I need to separate words in the image
name.
I've used motion tweening on all of the graphics - the ones
that disappeared and also on the ones that are still there.
I've checked the properties of the disappeared images - and
the alpha is not changed to 0... I did not lock the W/H/X/Y.
The images that disappeared are not all on the same scene.
I don't know what is causing this... and I'm about to pull my
hair out trying to figure it out!! Any ideas?
Thanks for helping.

bai1ey;
Never seen such a thing, butcheck to be certain that the
images are
"flash import compatable" (non-progressive, rgb--simple flat
jpegs).
Alternatively you might try importing pngs and do the jpeg
compression in
flash. -Tom Unger

Similar Messages

  • Why the painted content flash and disappear?

    I try to run a simple code example from java almanac site but the painted content just flash and disappear. Can any people help to find the reason? Thanks in advance.
    Below are the code:
    package font;
    import java.text.AttributedString;
    import java.awt.*;
    import java.awt.font.LineBreakMeasurer;
    import java.awt.font.TextLayout;
    import javax.swing.*;
    public class DrawParagraphDemo extends JPanel {
        public DrawParagraphDemo() {
            this.setPreferredSize(new Dimension(500,500));
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            DrawParagraphDemo demo = new DrawParagraphDemo();
            frame.setContentPane(demo);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            demo.drawParagraph((Graphics2D) demo.getGraphics(), "One line of test string", 400);
        public void drawParagraph(Graphics2D g, String paragraph, float width) {
            LineBreakMeasurer linebreaker = new LineBreakMeasurer(
                new AttributedString(paragraph).getIterator(), g.getFontRenderContext());
            float y = 0.0f;
            while (linebreaker.getPosition() < paragraph.length()) {
                TextLayout tl = linebreaker.nextLayout(width);
                System.out.println(tl);
                y += tl.getAscent();
                tl.draw(g, 0, y);
                y += tl.getDescent() + tl.getLeading();
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    Hi i have similar problem and i have followed Camickr's suggestion but it looks like my image was still being painted over here's my code
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    * FileChooserDemo2.java is a 1.4 application that requires these files:
    *   ImageFileView.java
    *   ImageFilter.java
    *   ImagePreview.java
    *   Utils.java
    *   images/jpgIcon.gif (required by ImageFileView.java)
    *   images/gifIcon.gif (required by ImageFileView.java)
    *   images/tiffIcon.gif (required by ImageFileView.java)
    *   images/pngIcon.png (required by ImageFileView.java)
    public class Asst4 extends JPanel
                                  implements ActionListener {
        static private String newline = "\n";
        private JTextArea log;
        private JFileChooser fc;
         private JPanel display,button;
         JButton load,grey,color;
         private Image image;
         static JComponent newContentPane;
        public Asst4() {
            super(new BorderLayout());
            //Create the log first, because the action listener
            //needs to refer to it.
              display=new JPanel();
              display.setOpaque(true);
              button=new JPanel();
              load=new JButton("Load Image");
              grey=new JButton("Greyscale Image");
              color=new JButton("Color Image");
              load.addActionListener(this);
              //display.setBackground(Color.BLACK);
              //System.out.println("displayable: "+isDisplayable()+" visible: "+isVisible()+" valid: "+isValid());
              //System.out.println("displayable: "+display.isDisplayable()+" visible: "+display.isVisible()+" valid: "+display.isValid());
              display.setSize(500,500);
              button.add(load, BorderLayout.WEST);
              button.add(grey, BorderLayout.CENTER);
              button.add(color, BorderLayout.EAST);
              add(button,BorderLayout.NORTH);
              add(display,BorderLayout.CENTER);
              setVisible(true);
        public void actionPerformed(ActionEvent e) {
                   //Set up the file chooser.
                   if (fc == null) {
                        fc = new JFileChooser();
                        //Add a custom file filter and disable the default
                        //(Accept All) file filter.
                        fc.addChoosableFileFilter(new ImageFilter());
                        fc.setAcceptAllFileFilterUsed(false);
                        //Add custom icons for file types.
                        fc.setFileView(new ImageFileView());
                        //Add the preview pane.
                        fc.setAccessory(new ImagePreview(fc));
                        //Show it.
                   int returnVal = fc.showDialog(Asst4.this,"Load Image");
                   //Process the results.
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        Toolkit toolkit = Toolkit.getDefaultToolkit();
                        image = toolkit.getImage(file.getAbsolutePath());
                        MediaTracker mediaTracker = new MediaTracker(this);
                        mediaTracker.addImage(image,0);
                        try {
                           mediaTracker.waitForID(0);
                        } catch (InterruptedException ie) {
                           System.err.println(ie);
                           System.exit(1);
                   } else {
                        System.out.println("Loading cancelled by user." );
                   fc.setSelectedFile(null);
        protected void paintComponent(Graphics g)
              super.paintComponent(g); // this paints the background
              if(image!=null)
              drawImage(image);
        private void drawImage(Image image){
              Graphics2D g=(Graphics2D)display.getGraphics();
              g.drawImage(image,0,0,null);
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            JDialog.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Compsci_375_Assignment_4");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            newContentPane = new Asst4();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.setBounds(50,50,500,500);
               //frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }Can anyone tell me what's going on and also why if i pack the frame my display panel is disappear?
    Thanks a lot

  • Flash content disappearing in IE

    While using IE on Mac OS X 10.4.6, my flash movie disappears
    when I launch a simple JS pop-up window. It can be made visible
    again by rolling over the various parts of the movie, but that's
    silly. It works fine on all other browsers, including Windows
    browsers. Anybody?

    Jeckyl,
    No, I wasn't using transparent wmode, so I switched to it and
    nothing changed. Here is a link, the flash content doesn't
    disappear until you go to Directors, choose a Director, then click
    on a spot title to launch a js pop-up. I have used the same js on
    other sites and they work fine. I'm quite confused...
    http://www.zgroupfilms.com/
    Thanks!

  • Disappearing Images part 2

    I had the same problem with images disappearing when they
    were scrolled, etc. but solved it with the help of the post
    describing this method:
    quote:
    <mx:source>
    <display:Bitmap
    bitmapData="{xxxx.source.bitmapData}"/>
    </mx:source>
    (Thanks!!)
    But now the problem is that the image doesn't seem to behave
    well with layouts - it doesn't scale or participate in general
    (i.e. in a VBox the next item down would register at the top as
    thought the image wasn't there, or was very small). Has anyone come
    across this and found a solution? Maybe a different solution
    entirely to the disappearing image problem?
    Here's the necessary bit of my code (the images I'm loading
    are generally bigger than the canvas, I want them to scale down to
    fit the fluid layout):
    quote:
    <mx:Canvas id="uiImgCanvas" width="100%" height="100%">
    <mx:Image id="uiImageDisplay" scaleContent="true"
    height="{uiImgCanvas.height}" width="{uiImgCanvas.width}">
    <mx:filters>
    <mx:DropShadowFilter alpha=".5" blurX="15" blurY="15"
    distance="10.0"/>
    </mx:filters>
    <mx:source>
    <display:Bitmap
    bitmapData="{uiDotStrip.curSelection.imgFullsize.source.bitmapData}"/>
    </mx:source>
    </mx:Image>
    </mx:Canvas>
    Thanks for the help.

    "EricGM" <[email protected]> wrote in
    message
    news:gonfol$23o$[email protected]..
    >I had the same problem with images disappearing when they
    were scrolled,
    >etc.
    > but solved it with the help of the post describing this
    method:
    >
    quote:
    <mx:source>
    > <display:Bitmap
    bitmapData="{xxxx.source.bitmapData}"/>
    > </mx:source>
    (Thanks!!)
    >
    > But now the problem is that the image doesn't seem to
    behave well with
    > layouts
    > - it doesn't scale or participate in general (i.e. in a
    VBox the next item
    > down
    > would register at the top as thought the image wasn't
    there, or was very
    > small). Has anyone come across this and found a
    solution? Maybe a
    > different
    > solution entirely to the disappearing image problem?
    >
    > Here's the necessary bit of my code (the images I'm
    loading are generally
    > bigger than the canvas, I want them to scale down to fit
    the fluid
    > layout):
    >
    quote:
    <mx:Canvas id="uiImgCanvas" width="100%" height="100%">
    > <mx:Image id="uiImageDisplay" scaleContent="true"
    > height="{uiImgCanvas.height}"
    width="{uiImgCanvas.width}">
    > <mx:filters>
    > <mx:DropShadowFilter alpha=".5" blurX="15" blurY="15"
    distance="10.0"/>
    > </mx:filters>
    > <mx:source>
    > <display:Bitmap
    >
    bitmapData="{uiDotStrip.curSelection.imgFullsize.source.bitmapData}"/>
    > </mx:source>
    > </mx:Image>
    > </mx:Canvas>
    >
    Try wrapping it in UIComponent.

  • Drop Down in ALV Flashes and Disappears.

    Hi All,
    I have a strange issue going on. In an ALV (built on CL_GUI_ALV_GRID) I have got an editable field with a drop down option.Now lets say I have 10 rows in an ALV. I chose an entry from the drop down in one of the rows (this happens OK) and immediately after that I go on a click on drop down for any other row. What happens is that the drop down for the new row that I am in flashes and disappears. Now if I click for the drop down again the drop down appears. Basically whenever an entry is selected in one of the rows, drop down function immediately after that does not work. I have a feeling that it has something to do with the data _changed event but I am not sure how to handle that event.
    I saw a similar thread  [ALV Menu Flash|ALV HANDLE_DATA_CHANGED_FINISHED; but could not figure it out.
    Any suggestions ?
    Thanks
    Anuj

    Hi,
    Let us see the code and check it
    Make the necessary changes at the fieldcatalog
    clear ls_fcat.
    ls_fcat-fieldname = 'COURSE'.
    ls_fcat-col_pos = 5.
    ls_fcat-coltext = 'Course'.
    ls_fcat-outputlen = 10.
    ls_fcat-DRDN_HNDL = 25.
    ls_fcat-edit = 'X'.
    APPEND ls_fcat to lt_fcat.
    and in the class cl_gui_alv_grid we have one method  SET_DROP_DOWN_TABLE
    and it is having one parameter called  iT_DROPDOWN of type  LVC_T_DROP
    generate the internal table and call the method set_drop_down_table
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'ABAP'.
    append ls_drop to lt_drop.
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'CRM'.
    append ls_drop to lt_drop.
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'WEBDYNPRO'.
    append ls_drop to lt_drop.
      CALL METHOD o_grid->set_drop_down_table
        EXPORTING
          it_drop_down       = lt_drop.
    Thanks & Regards.
    Raghunadh.K

  • Flash content disappears - HELP

    I have just gotten back to working on my XP machine and flash
    content disappears after about 1 to 2 seconds. Even on the
    Macromedia home page, the entire top of their page shows up and
    goes away. I have read about the xp sp2 problems and I did recently
    upgrade. I have read the fixes about there (i.e. pop up blocking
    level, puting <!-- saved from url=(0013)about:internet --> in
    the htm file...none of this works. Firefox works fine, IE doesn't.
    When I publish with preview in the Flash IDE - no luck either.
    Do my problems sound like they are related to XP sp2? If any
    one out there has seen this type of behavior and has
    suggests...many thanks in advance.
    - Richard

    I found the problem...it was my firewall software...it was
    blocking popup ads...
    Thanks....

  • Flash MX2004 not compatable with Flash CS5?

    I have Flash MX2004 but find when trying to open a flash file created using Flash
    CS5, the file wiill not open and give me an error ' Unsupported
    file fotrmat'. Please explain

    flash mx2004 is very old. it has no way of knowing what to do with a file that is created in cs5 or aka flash mx2010
    it is similar to trying to play a blu ray disc in a vcr... sort of.

  • Help!! Adobe flash player disappeared

    We had adobe flash downloaded onto our new dell laptop when we bought it brand new in December. After being infected with a virus, the flash player disappeared! After going through the Adobe download, it says it was successfully installed. It does show up as downloaded in my control panel, yet doesnt appear in my start up menu!! When I try to use something that requires the flash player, it tells me that I need to install it...SOMEBODY HELP ME RE-INSTALL THIS!!!! Thanks so much

    Thank you!! I installed firefox browser and it works fine now!
    Date: Tue, 1 Feb 2011 18:29:54 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help!! Adobe flash player disappeared
    What browser do you use?  Internet Explorer?  If so, check if you have the "kill-bit" set by that virus: http://forums.adobe.com/message/3432049#3432049
    If yes, use this method to reset it: http://forums.adobe.com/message/3434922#3434922
    >

  • Adobe Flash has disappeared after just being downloaded, now wanting to download again

    adobe flash plugin disappeared from computer. after downloading it, I try to use it and now it wants me to download it again. This is disturbing me beyond words. I am using XP and seeming to be having alot of issues since updating Java.

    I have done this 4 times this morning to no avail. I had already read all 3 help links that were suggested to me by another firefox user. I used the link posted and it told me I needed to go to Adobe site and find newer version. I downloaded that one also but it still comes up each time I try to log onto a pogo game using Flash that it is not installed and need to do it again. Yes I have 5 hairs left. Thank you so much from trying to help me it means alot.

  • Standard Mac users cannot eject Flash installer drive image

    We recently distributed Flash to 130 macs and it defaulted for auto update. Whenever it auto updates, it mounts a flash player drive image to the desktop. Unfortunately all the users are standard users and they cannot eject the mounted drive image without an administrator logon. I have wasted hours logging into each computer to manually eject these drives. How can I reverse this behavior?
    We are using apple remote desktop

    Hello,
    Since your users do not have Admin rights to install software, you'll want to disable auto-updates on each machine.  The update settings are stored in the /Library/Application Support/mms.cfg file.  You'll want to make sure the AutoUpdateDisable and SilentAutoUpdateEnable settings are configured as follows:
    AutoUpdateDisable=1
    SilentAutoUpdateEnable=0
    This will disable ALL updates for these machines, as such, you'll want to distribute updates via some other mechanism to ensure your users have the latest secure versions when they're released.
    Enterprise deployment information is documented in the Adobe Flash Player Administration Guide for Flash Player | Adobe Developer Connection.
    Maria

  • Importing into Flash a Fireworks image - advice please!

    Importing into Flash using a Fireworks image - advice please!
    New'ish to Flash so hope I'm in the right forum ;-)
    I have made and image using gradients in Fireworks and have been using FW for ages (please see example below).
    I am importing into Flash CS4 this image and want to use it with a Flash component however the image quality is really bad in Flash and I cant figure out why. I have increased the image to 300dpi in Fireworks to see if that helps and it doesn't.
    I'm hoping this is a simple thing I am missing due to not knowing Flash as well as I do Fireworks.
    Really grateful for any advise. P.

    Hi there,
    No not trying to adjust size of the image in Flash, do that all before hand.
    In Fireworks I can adjust resolution but don't seem to be able to in Flash, is this def the case?

  • HT3956 Aggregate Device Flashes then DISAPPEARS

    I don’t have the option to add more devices. When I select the plus sign at the bottom right, the aggregator flashes then disappears.
    I am running osx 10.6 and I do not see a menu item Audio > Open Aggregate Device Editor.
    How do I find the Aggregate Device Editor?
    I’m running Studio One free and attempting to use my Blue Mic via Blue Icicle. It registers in my Preferences > Sounds > Input but will not appear anyplace else.

    Hey guys - I run into this issue some time ago, and now once again after upgrading to SnowL. I managed to fix it by changing the permissions on the Library/Preferences folder... then I was able to create aggregate devices! You can find a lengthier explanation on this post:
    http://www.michelepasin.org/musicblog/?p=38

  • Screen starts flashes and disappears

    Hello I need help. I am using dazzle to
    broadcast a Sony camera live. Every time I start adobe media live the screen flashes and disappears. It is not running in the back ground either. If i use my webcam it work fine.can some one please help.

    It seems FMLE and Dazzle card are not that friendly to work with each other.
    can you please give us complete details about the card you are using. we can consider this card for certification if it will become popular among FMLE users.

  • Flash file 'disappears'

    Flash file 'disappears'' when you hover your cursor over it.
    Anyone any ideas?
    url:
    http://www.greenpublishing.com.au

    I am on a mac in Firefox. What browser are you using?
    Its obviously a Firefox problem then.
    Are there any fixes?

  • My Finder Window when open and desktop icons are blinking/flashing/periodically disappearing.

    The other day I was working on my iMac when the screen all of a sudden froze. iTunes was playing and continued to play, but I could not do anything. This has happened before, so I didn't panick, but just did a hard reset. I was then prompted to recover my computer from my external harddrive/time machine. This took about 10 hours (over firewire). Since then the computer works again, but the Finder window when open as well as the icons on my desktop are constantly flashing or blinking (more like periodically disappearing and reappearing) when I'm in the Finder, I'm then brought back to the previous folder I was in when it reappears.
    I read that this might have to do with Stuffit, which I deleted. I also deleted the Project 179 from Canon, as it was the last program I installed on the day that the computer went glitchy. I also tried both of these:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "cd desktop" and hit enter.
    4. type "rm -rf .DS_Store" and enter
    5. type "exit" and enter
    If it doesn't work try the follow:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "sudo rm -rf ~/.Trash/" (This will empty your trash) and enter
    4. type your administrator password. As you type, you will not see any character on the screen. Just type it and hit enter. (If you left your password blank, you have to make one by going to system preferences - users & groups - change password)
    5. type "exit" and enter
    Please help!

    Thank you Lic Davis (Emmanuel Kant) for the help. Here is the information you requested:
    03.09.13 22:40:31.267 Google Drive[295]: GsyncAppDeletegate.py : Finder debug level logs : False
    03.09.13 22:40:38.000 kernel[0]: Data/Stack execution not permitted: Finder[pid 205] at virtual address 0x1017e9000, protections were read-only
    03.09.13 22:40:59.487 com.apple.launchd.peruser.501[182]: (com.apple.Finder[205]) Job appears to have crashed: Bus error: 10
    03.09.13 22:41:01.571 ReportCrash[333]: Saved crash report for Finder[205] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4101_christian-langeneggers-computer.crash
    03.09.13 22:41:01.719 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221753_christian-langeneggers-computer.crash
    03.09.13 22:41:34.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[339]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:41:35.201 ReportCrash[333]: Saved crash report for Finder[339] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4135_christian-langeneggers-computer.crash
    03.09.13 22:41:35.209 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221854_christian-langeneggers-computer.crash
    03.09.13 22:42:35.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[353]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:42:36.168 ReportCrash[361]: Saved crash report for Finder[353] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4236_christian-langeneggers-computer.crash
    03.09.13 22:42:36.179 ReportCrash[361]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221956_christian-langeneggers-computer.crash
    03.09.13 22:43:37.168 com.apple.launchd.peruser.501[182]: (com.apple.Finder[362]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:43:37.431 ReportCrash[370]: Saved crash report for Finder[362] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4337_christian-langeneggers-computer.crash
    03.09.13 22:43:37.435 ReportCrash[370]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222057_christian-langeneggers-computer.crash
    03.09.13 22:44:38.395 com.apple.launchd.peruser.501[182]: (com.apple.Finder[371]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:44:38.648 ReportCrash[378]: Saved crash report for Finder[371] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4438_christian-langeneggers-computer.crash
    03.09.13 22:44:38.652 ReportCrash[378]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222159_christian-langeneggers-computer.crash
    03.09.13 22:45:39.694 com.apple.launchd.peruser.501[182]: (com.apple.Finder[379]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:45:39.919 ReportCrash[387]: Saved crash report for Finder[379] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4539_christian-langeneggers-computer.crash
    03.09.13 22:45:39.923 ReportCrash[387]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222259_christian-langeneggers-computer.crash
    03.09.13 22:46:40.982 com.apple.launchd.peruser.501[182]: (com.apple.Finder[388]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:46:41.200 ReportCrash[394]: Saved crash report for Finder[388] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4641_christian-langeneggers-computer.crash
    03.09.13 22:46:41.203 ReportCrash[394]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222401_christian-langeneggers-computer.crash
    03.09.13 22:47:42.267 com.apple.launchd.peruser.501[182]: (com.apple.Finder[395]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:47:42.502 ReportCrash[401]: Saved crash report for Finder[395] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4742_christian-langeneggers-computer.crash
    03.09.13 22:47:42.506 ReportCrash[401]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222502_christian-langeneggers-computer.crash
    03.09.13 22:48:43.568 com.apple.launchd.peruser.501[182]: (com.apple.Finder[402]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:48:43.785 ReportCrash[409]: Saved crash report for Finder[402] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4843_christian-langeneggers-computer.crash
    03.09.13 22:48:43.788 ReportCrash[409]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222603_christian-langeneggers-computer.crash
    03.09.13 22:49:44.854 com.apple.launchd.peruser.501[182]: (com.apple.Finder[410]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:49:45.072 ReportCrash[416]: Saved crash report for Finder[410] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4945_christian-langeneggers-computer.crash
    03.09.13 22:49:45.076 ReportCrash[416]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222704_christian-langeneggers-computer.crash
    03.09.13 22:50:46.145 com.apple.launchd.peruser.501[182]: (com.apple.Finder[417]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:50:46.366 ReportCrash[424]: Saved crash report for Finder[417] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5046_christian-langeneggers-computer.crash
    03.09.13 22:50:46.369 ReportCrash[424]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222806_christian-langeneggers-computer.crash
    03.09.13 22:51:47.438 com.apple.launchd.peruser.501[182]: (com.apple.Finder[425]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:51:47.663 ReportCrash[431]: Saved crash report for Finder[425] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5147_christian-langeneggers-computer.crash
    03.09.13 22:51:47.669 ReportCrash[431]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222910_christian-langeneggers-computer.crash
    03.09.13 22:52:48.737 com.apple.launchd.peruser.501[182]: (com.apple.Finder[432]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:52:48.977 ReportCrash[439]: Saved crash report for Finder[432] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5248_christian-langeneggers-computer.crash
    03.09.13 22:52:48.980 ReportCrash[439]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223010_christian-langeneggers-computer.crash
    03.09.13 22:53:50.024 com.apple.launchd.peruser.501[182]: (com.apple.Finder[440]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:53:50.294 ReportCrash[446]: Saved crash report for Finder[440] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5350_christian-langeneggers-computer.crash
    03.09.13 22:53:50.297 ReportCrash[446]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223112_christian-langeneggers-computer.crash
    03.09.13 22:54:51.329 com.apple.launchd.peruser.501[182]: (com.apple.Finder[447]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:54:51.561 ReportCrash[454]: Saved crash report for Finder[447] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5451_christian-langeneggers-computer.crash
    03.09.13 22:54:51.574 ReportCrash[454]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223224_christian-langeneggers-computer.crash
    03.09.13 22:55:52.619 com.apple.launchd.peruser.501[182]: (com.apple.Finder[455]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:55:52.841 ReportCrash[461]: Saved crash report for Finder[455] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5552_christian-langeneggers-computer.crash
    03.09.13 22:55:52.846 ReportCrash[461]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223347_christian-langeneggers-computer.crash
    03.09.13 22:56:53.940 com.apple.launchd.peruser.501[182]: (com.apple.Finder[462]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:56:54.161 ReportCrash[469]: Saved crash report for Finder[462] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5654_christian-langeneggers-computer.crash
    03.09.13 22:56:54.165 ReportCrash[469]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223448_christian-langeneggers-computer.crash
    03.09.13 22:57:55.237 com.apple.launchd.peruser.501[182]: (com.apple.Finder[470]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:57:55.450 ReportCrash[476]: Saved crash report for Finder[470] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5755_christian-langeneggers-computer.crash
    03.09.13 22:57:55.454 ReportCrash[476]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223552_christian-langeneggers-computer.crash
    03.09.13 22:58:56.506 com.apple.launchd.peruser.501[182]: (com.apple.Finder[477]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:58:56.731 ReportCrash[484]: Saved crash report for Finder[477] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5856_christian-langeneggers-computer.crash
    03.09.13 22:58:56.735 ReportCrash[484]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223653_christian-langeneggers-computer.crash
    FIRST CRASH REPORT:
    Process:         Finder [406]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.8.3 (10.8.3)
    Build Info:      Finder_FE-808003001000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [189]
    User ID:         501
    Date/Time:       2013-09-03 20:12:41.325 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Sleep/Wake UUID: D46AA1C3-1916-4FB6-866D-EA8269293442
    Interval Since Last Report:          32117 sec
    Crashes Since Last Report:           501
    Per-App Interval Since Last Report:  31460 sec
    Per-App Crashes Since Last Report:   501
    Anonymous UUID:                      DELETED PER REQUEST
    Crashed Thread:  7
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001017e91b4
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1017e91b4:
    -->
        __TEXT                 000000010a81b000-000000010acd6000 [ 4844K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000011039c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000011039bc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010d225233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010d22a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010d22a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x000000010be05eb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x000000010be05c52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x000000010be05ae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x000000010dd98533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x000000010dd97df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x000000010dd8f1a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x000000010dd33bd6 NSApplicationMain + 869
    12  com.apple.finder                        0x000000010a820b56 0x10a81b000 + 23382
    13  libdyld.dylib                           0x00000001101be7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000011039ed16 kevent + 10
    1   libdispatch.dylib                       0x0000000110185dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001101859ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x000000011039e322 __select + 10
    1   com.apple.CoreFoundation                0x000000010d269f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00000001102247a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00000001102111e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 7 Crashed:
    0   ???                                     0x00000001017e91b4 0 + 4320039348
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000005e  rcx: 0x000000010c71a000  rdx: 0x000000000000005e
      rdi: 0x000000010c71a000  rsi: 0x000000010baf0000  rbp: 0x000000010c71bff4  rsp: 0x000000010c71bf7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x000000010baf0000  r15: 0x0000000000000000
      rip: 0x00000001017e91b4  rfl: 0x0000000000010206  cr2: 0x00000001017e91b4
    Logical CPU: 1
    Binary Images:
           0x10a81b000 -        0x10acd5ff7  com.apple.finder (10.8.3 - 10.8.3) <5AF2416D-6AF0-386F-86D5-A276C74780E6> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10ade2000 -        0x10af02fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10af76000 -        0x10afc7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10aff6000 -        0x10b2c7ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10b400000 -        0x10b443ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10b456000 -        0x10b45cfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10b46b000 -        0x10b4d9ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10b50b000 -        0x10b5d0ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10b647000 -        0x10b7f5fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10b8b3000 -        0x10b8b3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10b8ba000 -        0x10b8c9fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10b8d7000 -        0x10b9b1fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10ba3a000 -        0x10ba96fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10bad0000 -        0x10badefff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x10baf3000 -        0x10bcf3fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x10bd95000 -        0x10bd9cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10bda6000 -        0x10c0d6fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10c232000 -        0x10c4e1fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10c720000 -        0x10c81efff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10c8d4000 -        0x10c92efff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10c974000 -        0x10c977fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10c982000 -        0x10cad4fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10cb5f000 -        0x10cc50ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10ccb6000 -        0x10ccb7fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10ccbf000 -        0x10cd4efff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
           0x10cd76000 -        0x10cdbffff  com.apple.DiskManagement (5.2.1 - 665.1) <8F2C8673-B1DE-33CE-A024-5E179EA8D378> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x10cde5000 -        0x10cdeffff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
           0x10ce00000 -        0x10ce27ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ce4a000 -        0x10ce7efff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10ceac000 -        0x10cf14ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x10cf6e000 -        0x10cf6fff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
           0x10cf7d000 -        0x10d09592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10d0ba000 -        0x10d18cff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10d1f0000 -        0x10d1f0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10d1f5000 -        0x10d3dfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10d541000 -        0x10d541fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10d549000 -        0x10d8a8fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10dacb000 -        0x10dbe4fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10dc43000 -        0x10e870fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10ef69000 -        0x10f0deff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10f1a3000 -        0x10f1b6ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x10f1c4000 -        0x10f1e5fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10f200000 -        0x10f20dff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10f21f000 -        0x10fbaf4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10fcb8000 -        0x10fd38ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10fd68000 -        0x10fe25ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10fe71000 -        0x10fec7fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10ff00000 -        0x10ff13ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10ff28000 -        0x10ff82fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10ffb1000 -        0x10fff0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x11000a000 -        0x11001efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x110034000 -        0x110046ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x110052000 -        0x110056fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x110061000 -        0x1100cafff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x110130000 -        0x110135fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x11013c000 -        0x11014afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x11015e000 -        0x110163fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x11016d000 -        0x110174fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x110181000 -        0x110196ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x1101af000 -        0x1101b0ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x1101bc000 -        0x1101bfff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x1101c7000 -        0x1101c7fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x1101ce000 -        0x1101d6fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x1101e4000 -        0x1101eafff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x1101f4000 -        0x1101f6fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x1101fd000 -        0x1101feff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110206000 -        0x110207fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110210000 -        0x1102dcff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110325000 -        0x11032dff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110337000 -        0x11036dfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x11038c000 -        0x1103a7ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x1103bf000 -        0x1103edff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x1103f9000 -        0x110407ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x11041a000 -        0x110425fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110432000 -        0x110433ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x11043f000 -        0x110441ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x110449000 -        0x11044fff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x11045d000 -        0x11047fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110497000 -        0x1104e6ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x1104f6000 -        0x110542ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x11055a000 -        0x11057fff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x1105b7000 -        0x1105c5ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x1105cb000 -        0x1108e2ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x11095d000 -        0x1109defff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x110a39000 -        0x110adfff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x110b45000 -        0x110bd2ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x110c1b000 -        0x110c7afff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x110ca9000 -        0x110d5afff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x110dae000 -        0x110ddfff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x110e07000 -        0x110f04fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x110f20000 -        0x11101dff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x111056000 -        0x111065ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x11106e000 -        0x111072fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x11107d000 -        0x11107dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x111084000 -        0x111091fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x11109c000 -        0x111109ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x111145000 -        0x111149ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x111154000 -        0x111155fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111159000 -        0x11117aff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x111188000 -        0x11119ffff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1111ad000 -        0x1111c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1111e0000 -        0x11120bfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x11121e000 -        0x11121efff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x111224000 -        0x11132ffff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x111394000 -        0x1113e3ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x111410000 -        0x1115abfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x1115d1000 -        0x1115d1fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x1115d6000 -        0x11163efff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x11164c000 -        0x1116e6fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1116f8000 -        0x111aeffff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x111b56000 -        0x111cdcfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x111d0c000 -        0x111d34fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x111d42000 -        0x111d97ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x111daa000 -        0x111dcafff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x111dd7000 -        0x111ddbfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x111de0000 -        0x111ee2fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x111f14000 -        0x111f17fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x111f1e000 -        0x111f62fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
           0x111f75000 -        0x111f97ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x111fb2000 -        0x111fecff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x11200f000 -        0x11202eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x112039000 -        0x11212efff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x112142000 -        0x1121c4ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x1121ee000 -        0x1121f0fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1121fb000 -        0x112200fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x112211000 -        0x11221cfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x112224000 -        0x11222fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x11223d000 -        0x11225cff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x112269000 -        0x112276fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x11227f000 -        0x1122a9ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x1122ca000 -        0x11256eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x112655000 -        0x1126acff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x1126d3000 -        0x11271dff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x112730000 -        0x112737fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x112743000 -        0x11275afff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x112771000 -        0x1127aefef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x1127ba000 -        0x1127bcfff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x1127c7000 -        0x1127cbfff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x1127d8000 -        0x1127e4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1127f3000 -        0x11284dff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x112863000 -        0x112c80fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x112e95000 -        0x1130caff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1131ce000 -        0x113211ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x11324f000 -        0x11324fffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x11325c000 -        0x113266fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x113274000 -        0x1132d7ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1132ff000 -        0x113315fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x113327000 -        0x11334efff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x11336b000 -        0x113409ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113440000 -        0x113440fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x113443000 -        0x1134c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x113500000 -        0x113509ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x113517000 -        0x1135b2fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x1135d3000 -        0x11362fff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x113678000 -        0x1136aefff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x1136cf000 -        0x113993fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x113be5000 -        0x113bf1ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x113c00000 -        0x113c07fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x113c11000 -        0x113c11fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x113c1a000 -        0x113c54fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x113c89000 -        0x113cc4fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x113cd6000 -        0x113f31ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x114093000 -        0x114146ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x1141ba000 -        0x1141e6fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x114217000 -        0x1144b2ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x114560000 -        0x1146d1ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x1147de000 -        0x114829fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x114850000 -        0x114b07ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x114b9e000 -        0x114fdafef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x11506e000 -        0x11506efff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x115075000 -        0x11508ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x1150ae000 -        0x1150fbfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x115127000 -        0x115285fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x1152d0000 -        0x1153eafff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x11540f000 -        0x115bb6fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x115bd4000 -        0x115c00fff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x115c18000 -        0x115c63fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x115c8c000 -        0x115cdbfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x115d17000 -        0x115d6eff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x115d7e000 -        0x115d82ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x115d8a000 -        0x115d8dfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x115d99000 -        0x115daefff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x115dd0000 -        0x115dedff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x115e00000 -        0x115e02ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x115e0b000 -        0x115e0dfff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115e15000 -        0x115ea9ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x115eff000 -        0x115f0aff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x115f16000 -        0x115f6fff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x115fb7000 -        0x115fd2ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x115fee000 -        0x1160f0fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
           0x11615d000 -        0x1163defff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x116408000 -        0x116408fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x116411000 -        0x116481fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x1164d7000 -        0x1164e2ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1164f4000 -        0x116505ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
           0x116511000 -        0x116548ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
           0x11655e000 -        0x116631ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x116699000 -        0x1166e1fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
           0x1166f7000 -        0x116737ff7  com.apple.MediaKit (14

Maybe you are looking for

  • Motion 4: open and close a group with key shortcut?

    Mo4: Layers window: any shortcut to twirl down (and/or up) all the layers in a group? Or layers in layers? The manual says arrow keys move from group to group,layer to layer and that works... also says that L & R keys open and close selected group/la

  • In Sales Order form  Freight Charges  form is not updating Freight

    Hi, In SAP BusinessOne(8.82) sales order form -> freight charges form  not updating(filling)  the  freight  in amount field. It is working on 2007 version .  can  any one  tell which tables to use to update the  Feight . Thanks, Y.

  • Verizon DSL - Intermittent Connectivity Issues - Westell 7500

    Hello guys! I'm hoping you can help me out.  I can't even count the number of problems I have had over the past 9 years, and each time Verizon decides to blow me off like always.  Getting to be the last straw. Anyways - I'll have a solid (slow, like

  • PLEASE HELP!!!! Songs not allowed to load on iPod....AGAIN

    This guy whom I asked my question to first told me to restore iTunes, then he told me to come over to iTunes for windows. So can you help me???? How do I get iTunes to default back to it's settings?? when I first opened iTunes it said that my audio m

  • Photos and Keyframes

    Hi, I cannot understand the manual. What I am attempting to  prior to the movie clips  is enter about 10 photos coming in from different corners at 10% size to the middle at 100% and mybe spinning 360deg as well. I require some simple terms to apply