Need help... can't find the problem...

I'm trying to copmli my program.. but I'm getting
some errors...
C:\Umass\CS210\Hw2\SinglyLinkedList.java:301: unreachable statement
          return NOT_FOUND;
^
C:\Umass\CS210\Hw2\SinglyLinkedList.java:316: variable p might not have been initialized
     return p;
^
import java.util.*;
public class SinglyLinkedList implements List
   * creatino of the SllIterator
  private class SllIterator implements Iterator
       private Node current;
       private Node lastVisited = null;
       private int expectedModCount = modCount;
     public boolean hasNext()
          if(expectedModCount != modCount)
               throw new ConcurrentModificationException();
          return true;
     public Object next()
          if(!hasNext())
               throw new NoSuchElementException();
          Object nextItem = current.data;
          lastVisited = current;
          current = current.next;
          return nextItem;
     public void remove()
          if(expectedModCount != modCount)
               throw new ConcurrentModificationException();
          if(lastVisited == null)
               throw new IllegalStateException();
          SinglyLinkedList.this.remove(lastVisited);
          lastVisited = null;
          expectedModCount++;     
  // an inner class: This is our node class, a singly linked node!
  private class Node
    Object data;
    Node next;
    Node(Object o, Node n)
      data = o;
      next = n;
    Node(Object o)
      this(o, null);
    Node( )
      this(null,null);
  private Node head; // the "dummy" head reference
  private int size;  // the number of items on the list
  private int modCount = 0;
  public SinglyLinkedList()
    head = new Node(); // dummy header node!
  public void add(int index, Object o)
            Node p = getNode(index);
            Node newNode = new Node(o, p);
            newNode.next = newNode;
            size++;
            modCount++;
  public boolean add(Object element)
       if (element == null) return false;
       // Check for dummy head node
       if (head.data == null)
            head = new Node(element, null);
    else
    // Traverse the list until we find the end
         Node next = head;
         while (next.next != null)
         next = next.next;
    next.next = new Node(element, null);
    size++;     
    return true;
  public boolean addAll(Collection c)
    return true;
  public boolean addAll(int index, Collection c)
    return true;
  public void clear()
       head = new Node("Head", null);
       size = 0;
  // write a recursive implementation here
  public boolean contains(Object o)
    return findPos(o) != NOT_FOUND;
  public boolean containsAll(Collection c)
    return true;
  public boolean equals(Object o)
    return true;
  // write a recursive implementation here
  public Object get(int index)
    return null;
  // NOT implemented: we don't cover hash codes
  // and hashing in this course
  public int hashCode()
    throw new UnsupportedOperationException();
  public int indexOf(Object o)
    return -1;
  public boolean isEmpty()
     return (size() == 0);
  public Iterator iterator()
    return null;
  public int lastIndexOf(Object o)
    return -1;
  // Not implemented: The following two operations are not supported
  // since we are using a singly linked list, which does not allow
  // us to iterate through the elements back and forth easily
  // (going back is the problem)
  public ListIterator listIterator()
    throw new UnsupportedOperationException();
  public ListIterator listIterator(int index)
    throw new UnsupportedOperationException();
  // write a recursive implementation here
  public Object remove(int index)
    return null;
  public boolean remove(Object o)
    return true;
  public boolean removeAll(Collection c)
    return true;
  public boolean retainAll(Collection c)
    return true;
  // write a recursive implementation here
  public Object set(int index, Object element)
    return null;
  public int size()
    return size;
  // NOT implemented: to keep the homework reasonably simple
  public List subList(int fromIndex, int toIndex)
    throw new UnsupportedOperationException();
  public Object[] toArray()
    return null;
  public Object[] toArray(Object[] a)
    // you'll find this piece of code useful
    // it checks the exact type of the array passed as a parameter
    // in order to create a larger array of the same type.
    if (a.length < size)
      a = (Object[])java.lang.reflect.Array.
     newInstance(a.getClass().getComponentType(), size);
    // ... you need to write more code here!
    return a;
  private static final Node NOT_FOUND = null;
  //FindPos
  private Node findPos(Object o)
       for(Node p = head.next; ; p = p.next)
            if(o == null)
                 if(p.data == null)
                 return p;
            else if(o.equals(p.data))
            return p;
            return NOT_FOUND;
  //Get Node
  private Node getNode(int index)
       Node p;
       if(index < 0 || index > size())
            throw new IndexOutOfBoundsException();
       if(index < size() /2)
            p = head.next;
            for(int i = 0; i < index; i++)
              p = p.next;
       return p;
  //Print The node
  private static void print(Node n)
       Node current = n.next;
       while (current != null){
            System.out.println(current.data);
            current = current.next;
  public static void main (String[] args){
       System.out.println("Singly Linked List");
       System.out.println();
       SinglyLinkedList l = new SinglyLinkedList();
       l.add("F");
       l.add("K");
}       

C:\Umass\CS210\Hw2\SinglyLinkedList.java:301: unreachable statement
return NOT_FOUND;
^
C:\Umass\CS210\Hw2\SinglyLinkedList.java:316: variable p might not have been initialized
return p;
^
The first problem is because your "for" loop has no "while" condition in it:
for(Node p = head.next; ; p = p.next)...
Therefor, the only way out of the loop is via break, return, or exception. In your case, you don't "break" out of the loop, so there's no way it can get to this statement.
The second problem, you didn't cover all cases to set "p", so it won't let you return an un-initialized value.

Similar Messages

  • HT3775 I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you.The document "IMAG0026.AVI" could not be opened. A required codec isn't available.

    I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you. This is for Quicktime Player.
    "The document “IMAG0026.AVI” could not be opened. A required codec isn't available."

    Try Perian.
    http://perian.org/

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

  • I actually need help but cannot find the answer. Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as

    I actually need help but cannot find the answer.
    Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as blank as when I first open Firefox, it automatically loads my hotmail page. But then if I open other pages I don't get a blank page. Help, please?
    Thank you.
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    hello, please refer to [[New Tab Page – show, hide and customize top sites]] in order to switch the feature off.

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • Help:Can not find the file in jar!

    Hello everyone:
    I build a project using Netbeans 5.0 and make a jar file with it...
    The code in the project as follows will throw an exception described that it can not find the file named datasource-config.xml
    String dataFilePath = getClass().getResource(dataFile).getPath();
    //System.out.println("filepath:"+dataFilePath);
    InputStream input = new FileInputStream(dataFilePath);
    when I run the project with the main() function as an entry it works perfectly and output:
    filepath:/C:/projects/java_project/search/build/classes/com/cn/wxjt/lucene/config/datasource-config.xml
    But when I compressed the project with jar and run it , it will show:
    filepath:file:/C:/projects/java_project/search/dist/search.jar!/com/cn/wxjt/lucene/config/datasource-config.xml
    there is a (!) between search.jar and /com/cn/wxjt...
    I dont know why I generate a ! symbol in the file path... Is it cause the exception->
    java.io.FileNotFoundException: file:\C:\projects\java_project\search\dist\search.jar!\com\cn\wxjt\lucene\config\datasource-config.xml
    If you have any idea, plz tell me.
    Thank you and best wishes to you !
    :)

    If the file you want to read is in your jar file, use
    getClass ().getResourceAsStream
    (relative_path_file_name)Hope that help,
    Jackhey jack i want to open the file as new File
    i m using this.getClass().getResource("resource/backend.xml");
    the resource is the directory inside the jar file.
    when i prints the url it shows:
    the jar file is in the WORK directory
    URL : jar:file:/home/neeraj/WORK/show.jar!/resource/backend.xml
    now when i creates new File using the url.getFile() method the file does not exist.
    although the same programs runs well when i uses the InputStream
    so plz tell me cant I create a new File from the above method????
    thanks in advance
    with regards
    neeraj

  • I need a fix for downloads on Mac.  Currently only downloading .part files and can't find the problem.

    I am struggeling to download files in any format (i.e. pdf, dmg etc.).  It deosn't bring up the download list anymore and  in finder under downloads, it has the following suffix eg. xxx.pdf.part.  The file size is usually 0 bites.  Any advice?
    Another comment on this forum back in 2009 suggests donloading applejack.  This did not seem to fix the problem and the latest version only indicates support up to Leopard.  I am currently running Lion... so a little nervous downloading this.
    Any help here would be greatly appreciated, since I am highly dependent on this facility for my studies and other activities!!

    The first step is to disable or remove that download manager entirely. That in itself is a likely cause of your problem.
    The following can be tried in any order:
    — disable all the other extensions in your browsers and try again.
    — are you running any AV software or using Little Snitch? If so, disable those. You'll probably also have to kill those in Activity monitor, as both run background helper processes that run when the main app isn't and can interfere with network connections.
    — look in your Login Items in
     > System Preferences > Users & Groups | Login Items
    and remove any 3rd party apps that are there. Restart the computer and test again.
    If you've tried all those and still have the problem, report back.

  • I Can't Find The Problem!! pls help (ONLY IF U HAVE SOME FREE TIME)

    I'd like to post some code because I cant see the problem, maybe somebody else will see it. Just take a little look if u see some detail let me know pls.
    I have a class word, wich is actualy a representation of a word in some text
    public class Word {
    int timesInText; //how many times this word is in the text
    //A vector with the lines were the word appears
    public Vector<Integer> lines = new Vector<Integer>();
    public String word; //The word we are representing... Very creative Isn't it?
    //The lines were the word appear in a string in this format : , line, line, line...
    StringBuffer Stringlines = new StringBuffer(":");     
    public Palabra(String word) {
    this.word = word;          
    timesInText=1;
    public void wordFinded(int linea) {        
    lines.add(linea);     
    Stringlines.append(", " + linea);     
    timesInText++;     
    public String toString() {        
    String var = word + ": " + Stringlines.toString();
    return var;
    }//End of the word class
    I have a class main, wich is a window with the logic of the program, notice that
    I'll provide only the necesary thing to understand my problem in order to make
    my post shorter. The words I read can't have duplicates but I must say in wich
    lines the duplicates are.
    public class main{
    Vector<Word> words = new Vector<Word>(); //A vector for all the words in text
    JText area = new JTextArea(); //The JTextArea of my window
    public void getWords(){
    JFrame wordsInText = new JFrame("Word Search:");
    JTextArea wordsArea = new JTextArea("\tResult :");
    wordsInText.getContentPane().add(new JScrollPane(wordsArea));
    boolean alreadySeen;
    String text = area.getText();
    String line;
    String word;
    Word wordBeingRead;
    int lines = 0;
    BufferedReader br = new BufferedReader(new StringReader(text)); //To read complete text
    while ((line = br.readLine()) != null)
         lines += 1;
    StringTokenizer st = new StringTokenizer(line, " "); //But line by line
    while (st.hasMoreTokens())
    alreadySeen = false;
    word = st.nextToken();
    wordBeingRead = new Word(word);
    Iterator iter = words.iterator();
    if(!iter.hasNext()) //The first word! save it
    words.add(wordBeingRead);
    else //Yeah... not the first word... Check it...
    Iterator iterAux = palabras.iterator();
    while(iterAux.hasNext()) //Check if it's already defined
    Word p = (Word) iterAux.next();
    if(wordBeingRead.word.equals(p.word)) //It is already defined...
    wordBeingRead.wordFinded(lines); //I got one on line (lines)
    alreadySeen=true; //Yes! It's already seen
    if(alreadySeen==false) //If it's already seen wont get in here
    words.add(wordBeingRead); //A new word! Let's save it
    Iterator iter = palabras.iterator(); //Ok I saved all the words, time to print them
    while(iter.hasNext())
         wordBeingRead = (Word)iter.next();
         wordsArea.append("\n" + WordBeingRead.toString()); //Put them over here
         wordsInText.setSize(400, 400);
    wordsInText.setLocation(100, 75);
    wordsInText.setVisible(true); //Yes! show them
    }catch(Exception e){
    label.setText(e.getMessage()); //If anything goes wrong
    }//End of the class main

    Ok, sorry about that.
    Post your code between code tags (use the code button when you post a reply).I'm new in the forum and the tags doesnt seem to work with netscape, will use IE next time.
    you should not have a main class. You should have a main method inside a class eg:The original name of the class is Ventana, but you can actually name a class main.
    Also, your constructor should have the same name as your class eg:The constructor in the word class it's written like that because I translated the code to english so that it could be more simply to understand.
    4. If you don't get errors tell us what you expect your code to do and what it IS actually doing.Ok I'll give you a sample input and output:
    INPUT:
    "I am sorry for not posting correctly
    I will make sure this wont happen again
    I will be a good user"
    OUTPUT I'm getting:
    I: :
    am: :
    sorry: :
    for: :
    not: :
    posting: :
    correctly: :
    will: :
    make: :
    sure: :
    this: :
    wont: :
    happen: :
    again: :
    be: :
    a: :
    good: :
    user: :
    OUTPUT I would love to have:
    I: 1, 2, 3
    am: 1
    sorry: 1
    for: 1
    not: 1
    posting: 1
    correctly: 1
    will: 2, 3
    make: 2
    sure: 2
    this: 2
    wont: 2
    happen: 2
    again: 2
    be: 3
    a: 3
    good: 3
    user: 3
    I just noticed that I get the double : : Because I do it twice... ^^
    Thanks for the recomendations, and I'm sorry, totally my fault, I mean it.

  • I'm at my wits end!!! Can't find the problem!!!

    okay, I've got the code written for a vending machine program. i have a text file that loads in field variables to a product class, a money class that handles the basic functions of money handling methods, and a vending machine applet. the files compile fine, but they don't execute. i get an error: nosuchmethod error: main, you know the kind. i don't have a main because i'm trying to run it as an applet, but it won't run when i use appletviewer, it just does't do anything! This is going to be a tough one. But i swear up and down that i will literally find some way to pay the person who can find what the heck is wrong with the code...so, here it is, and i know it's long, but this is the final project in my java class at college, and i can't find where i'm going wrong.
    the vendingmachine:
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.text.NumberFormat;
    import java.util.StringTokenizer;
    import utilities.CashIn;
    import utilities.Product;
    public class VendingMachine extends Applet implements ActionListener {
    private Font boldSerif16 = new Font("Serif",Font.BOLD,16);
    private Font boldSerif24 = new Font("Serif",Font.BOLD,24);
    private Font boldItalicSerif24 = new Font("Serif",Font.BOLD+Font.ITALIC,24);
    private Font boldItalicSerif13 = new Font("Serif",Font.BOLD+Font.ITALIC,13);
    private Font boldItalicSerif40 = new Font("Serif",Font.BOLD+Font.ITALIC,40);
    // Mode flag.
    private int mode = 0;
    // Panels for the buttons
    private Panel mainPanel = new Panel();
    private Panel cashPanel = new Panel();
    private Panel selPanel = new Panel();
    private Panel maintPanel = new Panel();
    // Product selection panel buttons
    private Button selBtn[] = new Button[6];
    // Cash customer puts in machine panel buttons
    private Button viewC = new Button("View The Products");
    private Button quit = new Button("Quit");
    private Button bNickle = new Button("Nickel");
    private Button bDime = new Button("Dime");
    private Button bQuarter = new Button("Quarter");
    private Button b$Paper = new Button("$1 Paper");
    private Button b$Coin = new Button("$1 Coin");
    private Label lCredit = new Label(" Credit:");
    private Label lMsg = new Label("");
    private Button bChange = new Button("Change Return");
    private Button purchase = new Button("Purchase");
    private Button maintenance = new Button("Maintenance");
    private Product productForSale [];
    private CashIn changeOH;
    private int $collected = 0;
    private double total$In = 0.00;
    private NumberFormat nf;
    private Image pic;
    private Image picAnim;
    private int prodSel = 999;
    private String line;
    private String f[] = new String[8];
    private int tokenCount;
    private int int3, int4, int5, int6, int7;
    private double dbl4;
    private StringTokenizer strings;
    private int dispense = 99;
    public void init()
    {  setLayout(new BorderLayout());
    productForSale = new Product[6];
    try
    {  BufferedReader inPut = new BufferedReader(new FileReader("Startup.txt"));
    while ((line=inPut.readLine()) != null)
    {  strings = new StringTokenizer(line,",");
    tokenCount = strings.countTokens();
    // Loop thru and retrieve each data element.
    for (int i=0; i<tokenCount; i++)
    f[i] = strings.nextToken();
    // Load the money.
    if (f[0].compareTo("M") == 0)
    {  int3 = Integer.parseInt(f[3]);
    int4 = Integer.parseInt(f[4]);
    int5 = Integer.parseInt(f[5]);
    int6 = Integer.parseInt(f[6]);
    int7 = Integer.parseInt(f[7]);
    changeOH = new CashIn(f[1],f[2],int3,int4,int5,int6,int7);
    // Load the products.
    if (f[0].compareTo("P") == 0)
    {  int3 = Integer.parseInt(f[3]);
    dbl4 = (new Double(f[4])).doubleValue();
    int5 = Integer.parseInt(f[5]);
    int6 = Integer.parseInt(f[6]);
    int7 = Integer.parseInt(f[7]);
    productForSale[int3] = new Product(f[1],f[2],dbl4,int5,int6,int7);
    inPut.close();
    catch(IOException e)
    {  e.printStackTrace();
    setBackground(Color.blue);
    setForeground(new Color(120,0,120));
    setFont(boldSerif16);
    cashPanel.setLayout(new GridLayout(10,1));
    cashPanel.add(viewC);
    cashPanel.add(quit);
    cashPanel.add(bNickle);
    cashPanel.add(bDime);
    cashPanel.add(bQuarter);
    cashPanel.add(b$Paper);
    cashPanel.add(b$Coin);
    cashPanel.add(lCredit);
    cashPanel.add(lMsg);
    cashPanel.add(bChange);
    add(cashPanel,"East");
    selPanel.setLayout(new GridLayout(1,6));
    for (int i=0; i<6; i++)
    {  selBtn[i] = new Button(productForSale.getName());
    selPanel.add(selBtn[i]);
    add(selPanel,"South");
    setBackground(Color.black);
    viewC.addActionListener(this);
    quit.addActionListener(this);
    bNickle.addActionListener(this);
    bDime.addActionListener(this);
    bQuarter.addActionListener(this);
    b$Paper.addActionListener(this);
    b$Coin.addActionListener(this);
    bChange.addActionListener(this);
    nf = NumberFormat.getCurrencyInstance();
    for (int i=0; i<6; i++)
    selBtn[i].addActionListener(this);
    } // =======>> END OF INIT METHOD
    // ** PAINT METHOD **
    public void paint(Graphics g)
    {  int xVal = 35;
    int yVal = 85;
    int xValAnim = 0;
    int yValAnim = 0;
    int c = 0;
    // Paint the product pictures on the vending machine.
    g.setColor(Color.cyan);
    g.setFont(boldItalicSerif24);
    g.drawString(changeOH.getLogo1(),115,40);
    g.setFont(boldItalicSerif13);
    g.drawString(changeOH.getLogo2(),200,60);
    for (int z=0; z<2; z++)
    {  xVal = 35;
    yVal = 85;
    c = 0;
    g.setColor(Color.black);
    g.fillRect(xVal,yVal,500,350);
    g.setColor(Color.yellow);
    for (int i=0; i<2; i++)
    {  for (int j=0; j<3; j++)
    {  g.setFont(boldSerif16);
    g.drawString(nf.format(productForSale[c].getPrice()),xVal+45,yVal-5);
    pic = getImage(getCodeBase(),productForSale[c].getPic());
    g.drawImage(pic,xVal,yVal,null);
    // If product is dispensed get ready to animate.
    if (c == dispense)
    {  xValAnim = xVal;
    yValAnim = yVal;
    picAnim = pic;
    xVal = xVal + 170;
    c++;
    yVal = yVal + 160;
    xVal = 35;
    // If product is dispensed, animate it.
    if (dispense < 99)
    {  for (int y=0; y<40; y++)
    {  g.setColor(Color.black);
    g.fillRect(xValAnim,yValAnim-9,125,125);
    g.setColor(Color.yellow);
    g.drawImage(picAnim,xValAnim,yValAnim,null);
    yValAnim = yValAnim + 10;
    pause(3);
    dispense = 99;
    if (mode == 0)
    {  pic = getImage(getCodeBase(),"OutStock.gif");
    g.drawImage(pic,300,300,null);
    g.setColor(Color.black);
    g.fillRect(1,1,500,300);
    g.setColor(Color.pink);
    g.setFont(boldItalicSerif40);
    g.drawString(changeOH.getLogo1(),10,150);
    g.setFont(boldItalicSerif24);
    g.drawString(changeOH.getLogo2(),160,250);
    mode++;
    } // =======>> END OF PAINT METHOD
    // ** ACTIONPERFORMED METHOD **
    public void actionPerformed(ActionEvent event)
    {  Object source = event.getSource();
    lMsg.setText(" Enter up to $1.00");
    // Customer puts money in the vending machine.
    // Customer paid a nickle
    if (source == bNickle && $collected < 96)
    {  changeOH.nickleIn();
    $collected = $collected + 5;
    // Customer paid a dime
    if (source == bDime && $collected < 91)
    {  changeOH.dimeIn();
    $collected = $collected + 10;
    // Customer paid a quarter
    if (source == bQuarter && $collected < 76)
    {  changeOH.quarterIn();
    $collected = $collected + 25;
    // Customer paid a paper dollar
    if (source == b$Paper && $collected == 0)
    {  changeOH.dollarPaperIn();
    $collected = $collected + 100;
    // Customer paid a coin dollar
    if (source == b$Coin && $collected == 0)
    {  changeOH.dollarCoinIn();
    $collected = $collected + 100;
    // Customer makes their product selection.
    for (int i=0; i<6; i++)
    {  if (source == selBtn[i])
    // Do nothing if customer selects item that isn't on-hand.
    if (productForSale[i].getOnHand() == 0)
    repaint();
    // We have product on-hand.
    else
    {  prodSel = i;
    // Tell customer to add more money if they don't have
    // enough in the machine to handle the purchase.
    if ($collected < (int) (productForSale[i].getPrice() * 100))
    { lMsg.setText("    Insert Money");
    // Customer has enough money in machine to cover purchase.
    else
    {  // Take cost of item from customer's money
    dbl4 = productForSale[i].getPrice() * 100;
    int4 = changeOH.giveChange($collected - (int)dbl4,0);
    // Tell customer to put exact amount in the machine
    // because there isn't enough change to handle purchase.
    if (int4 == 9)
    {  lMsg.setText("Exact Amount Only!");
    // **** Here the purchase was made and committed. ****
    else
    {  total$In = productForSale[i].getPrice() * 100;
    $collected = $collected - (int) total$In;
    productForSale[i].sellProduct();
    dispense = i;
    repaint();
    // If the last product item was sold, set picture to OutStock.gif.
    if (productForSale[i].getOnHand() <= 0)
    productForSale[i].setOutOfStock();
    if ((source == bChange || source == quit) && $collected > 0)
    {  $collected = changeOH.giveChange($collected,1);
    // Here we save the machine info file when customer asks
    // for their change back or quits the machine.
    // Customer has selected to Quit the vending machine program.
    // Quit the program.
    if (source == quit)
    System.exit(0);
    // These commands set up variables to show how much money
    // the customer has in the machine.
    total$In = $collected;
    total$In = total$In / 100;
    lCredit.setText(" Credit: " + nf.format(total$In));
    repaint();
    } // =======>> END OF ACTIONPERFORMED METHOD
    // ** PAUSE METHOD **
    public void pause(int i)
    {  for(long l = System.currentTimeMillis() + (long) i; System.currentTimeMillis() < l;);
    This is the product class:
    package utilities;
    import java.io.*;
    import java.util.StringTokenizer;
    public class Product {
    private String name;
    private String image;
    private String picUsed;
    private double price;
    private int onHand;
    private int sold;
    private int maint;
    public Product(String n, String i, double p, int o, int s, int m)
    {  name    = n;
    image = i;
    picUsed = i;
    price = p;
    onHand = o;
    sold = s;
    maint = m;
    // Reset picture used when product is out of stock.
    public void setOutOfStock()
    {  picUsed  = "OutStock.gif";
    // Get product information
    public String getName()
    {  return name;
    public String getImage()
    {  return image;
    public String getPic()
    {  return picUsed;
    public double getPrice()
    {  return price;
    public int getOnHand()
    {  return onHand;
    public int getQtySold()
    {  return sold;
    public int getMaintDate()
    {  return maint;
    // Sell one of the product.
    public void sellProduct()
    {  onHand--;
    sold++;
    // Set the product values.
    public void setName(String n)
    {  name = n;
    public void setImage(String i)
    {  image   = i;
    picUsed = i;
    public void setPrice(double p)
    {  price = p;
    public void setOnHand(int o)
    {  onHand = o;
    public void setQtySold(int s)
    {  sold = s;
    public void setMaintDate(int m)
    {  maint = m; }
    The money class:
    package utilities;
    import java.math.*;
    public class CashIn {
    private String logo1;
    private String logo2;
    private int numProd;
    private int nickles;
    private int dimes;
    private int quarters;
    private int dollarsP;
    private int dollarsC;
    private int money;
    private double moneyVal;
    private int amtToChange = 0;
    private int hNickle;
    private int hDime;
    private int hQuarter;
    private int hpDollar;
    private int hcDollar;
    public CashIn(String l1, String l2, int p, int q, int d, int n, int dP)
    {  logo1    = l1;
    logo2 = l2;
    numProd = p;
    quarters = q;
    dimes = d;
    nickles = n;
    dollarsP = dP;
    dollarsC = 0;
    money = (n * 5) + (d * 10) + (q * 25) + (dP * 100);
    // Get total of money in machine.
    public double getCashIn()
    {  moneyVal = money;
    moneyVal = moneyVal / 100;
    return moneyVal;
    // Get machine record information.
    public String getLogo1()
    {  return logo1;
    public String getLogo2()
    {  return logo2;
    public int getNumProd()
    {  return numProd;
    public int getNickles()
    {  return nickles;
    public int getDimes()
    {  return dimes;
    public int getQuarters()
    {  return quarters;
    public int getDollarPaper()
    {  return dollarsP;
    public int getDollarCoins()
    {  return dollarsC;
    // Money comes into the machine
    public void nickleIn()
    {  nickles++;
    money = money + 05;
    public void dimeIn()
    {  dimes++;
    money = money + 10;
    public void quarterIn()
    {  quarters++;
    money = money + 25;
    public void dollarPaperIn()
    {  dollarsP++;
    money = money + 100;
    public void dollarCoinIn()
    {  dollarsC++;
    money = money + 100;
    // Give the customer their change.
    public int giveChange(int custMoney, int mode)
    {  hNickle   = nickles;
    hDime = dimes;
    hQuarter = quarters;
    hpDollar = dollarsP;
    hcDollar = dollarsC;
    amtToChange = custMoney / 100;
    for (int i=0; i<amtToChange; i++)
    {  // Give change in dollar coin if possible
    if (hcDollar > 0)
    {  hcDollar--;
    custMoney = custMoney - 100;
    // or else give change in paper dollar
    else
    {  if (hpDollar > 0)
    {  hpDollar--;
    custMoney = custMoney - 100;
    amtToChange = custMoney / 25;
    for (int i=0; i<amtToChange; i++)
    {  if (hQuarter > 0)
    {  hQuarter--;
    custMoney = custMoney - 25;
    amtToChange = custMoney / 10;
    for (int i=0; i<amtToChange; i++)
    {  if (hDime > 0)
    {  hDime--;
    custMoney = custMoney - 10;
    amtToChange = custMoney / 5;
    if (amtToChange > hNickle)
    {  mode = 9;
    for (int i=0; i<amtToChange; i++)
    {  hNickle--;
    custMoney = custMoney - 5;
    if (mode == 1)
    {  nickles   = hNickle;
    dimes = hDime;
    quarters = hQuarter;
    dollarsP = hpDollar;
    dollarsC = hcDollar;
    money = money - custMoney;
    if (mode == 9) custMoney = 9;
    return custMoney;
    the startup text:
    p,Fritos,Images/FritoLay.gif,
    m,$.50,
    p,Dr. Pepper,Images/Dr.Pepper.gif,
    m,$.60,
    p,Pepsi,Images/Pepsi.gif,
    m,$.60,
    p,Coke,Images/CocaCola.gif,
    m,$.60,
    p,Seven-Up,Images/7-Up.gif,
    m,$.60,
    p,Sprite,Images/Sprite.gif,
    m,$.60,
    c,10,20,40,

    S/he's only offering six Dukes here:
    http://forum.java.sun.com/thread.jsp?forum=54&thread=469450&start=0&range=15#2169975
    This problem has been done before. Break this down into something simpler. You don't need an applet. Just do it on the command line. You don't need a database. Just create a flat file if you need some persistent data. Do the simple thing first, then build out from there.
    Click on the special tokens link up above and learn how to use [ code][ code] tags.
    Your code is a big, unreadable mess. You've got pare this down into something sensible. If you can't understand it, it's unreasonable to expect someone on this forum to wade through all of that. - MOD

  • I need help can i find out what device request a password reset.

    I dont check my email very often and when i did i had a email from apple saying how do i rest my password. they sent it to me on 8/15/13 at 2:30pm. also i went to my icloud account and noticed i only have 1 ipod and my sons iphone registered. i did have 2 ipods and my sons iphone. so i need some help finding out if i can get that email tracked back to the device. Also i had another email from 7/9/13.
    Your Apple ID,  was just used to download Paper Run from the App Store on a computer or device that had not previously been associated with that Apple ID. You may also be receiving this email if you reset your password since your last purchase. that is what the 2nd email said. so now i am worried. if anyone can help lead me in the right derection. thank you

    I do not think you can find out on what device the purchases was made.
    I would change the password for your account.
    You can also contact iTunes and see what they can do
    Apple - Support - iTunes - Contact Us

  • Unable to add a mail account, with Invalid Password error message, yet can log into mail system OK through a browser. Mail technicians can't find the problem.

    When I try to add a newly-created Bigpond account to Thunderbird, I get an error message "User Name or Password Invalid", yet I can log in to this account OK through a browser. When adding the account, Thunderbird says "Configuration found in Mozilla ISP database". I have previously successfully added Bigpond, Yahoo, Outlook and Hotmail accounts to Thunderbird and they are working fine. The Bigpond Technical Support staff have looked into this and cannot see what is wrong but they say they do not support Thunderbird. Any ideas appreciated...

    Thanks. I had tried the auto and manual setups with the same result. IN addition, the Bigpond Support sent me the following which I also tried and got the same result.
    For the settings that needs to be configured for your new mailbox, kindly follow the steps listed below:
    (**Note: Please be advised that BigPond technical support team is only trained for Microsoft mail clients like Outlook Express, windows Live mail and the like. Having said this, we can only provide limited assistance in setting up your email account for your Thunderbird mail client by providing the correct settings that need to be configured.)
    For IMAP server settings:
    Account Type: IMAP
    Incoming IMAP server: imap-mail.outlook.com
    Incoming IMAP mail: port 993
    Outgoing SMTP server: smtp-mail.outlook.com
    Outgoing SMTP port: 587 (with TLS [preferred] or SSL Encryption depending on your e mail app)
    Incoming uses SSL: On (this is required)
    Outgoing uses SSL: On (this is required) (with TLS [preferred] or SSL Encryption depending on your e mail app)
    Authentication Outgoing server (SMTP) authentication: Same as incoming mail server
    For POP server settings:
    Please be advised that before setting up your email account on an email client using a POP mail server, we will need to ensure first that 'Connecting devices and apps with POP' has been enabled through webmail. For instructions on how to do this, kindly follow the steps below:
    - Log In your email account from the BigPond website from the Webmail section located at the top left side of the BigPond home page (http://media.telstra.com.au/home.html).
    - The page then will automatically redirect to an Outlook website in which you will need to click the 'settings icon' (a gear like icon) located at the top left side of the page.
    - From the drop down list, click on 'Options'.
    - It will then direct the page to a new page where you will need to click 'Connect devices and apps with POP' under the Managing your account section.
    - Choose 'Enable' and choose "Do what the device or app says—if it's set to delete messages, delete them." under Deleting downloaded messages.
    - Click on the 'Save' button to save the changes.
    - Log out of from your webmail page and start setting up your email client on your mail client using the following setting below:
    Account Type: POP3
    Incoming POP server: pop-mail.outlook.com
    Incoming POP mail: port 995
    Outgoing SMTP server: smtp-mail.outlook.com
    Outgoing SMTP port: 587 (with TLS [preferred] or SSL Encryption depending on your e mail app)
    Incoming uses SSL: On (this is required)
    Outgoing uses SSL: On (this is required) (with TLS [preferred] or SSL Encryption depending on your e mail app)
    Authentication Outgoing server (SMTP) authentication: Same as incoming mail server
    In looking at the Thunderbird error message, it seems to consistently refer to the User Name and Password. I know they are correct, as I can log in from a browser using them. Is there something in the validation rules that might be the problem? Also, you may be aware that Bigpond is migrating their old Webmail system across to the Outlook platform. Registering new e-mail accounts in Bigpond get created on the Outlook platform, whereas older accounts are still on the Bigpond Webmail system. Is this causing a problem somewhere in validation?

  • Can't find the problem

    I'm just a simple beginner learning java basics, but I'm really trying to do the work on my own. I managed to write a GuessingGame, but it doesn't work and I have no idea why. You don't even have to tell me HOW to solve the problem (although that would be great), I just need to know where it is. So these are my questions:
    1.What is wrong with the following?
    2.Where is the problem?
    3.How can it be solved? (Optional)
    Write and essay between 1-300 words highlighting the key areas covered by these questions and formulate your solutions to the problems encountered.
    import javax.swing.*;
    /** Allows a user to play a number-guessing game.
    The constructor takes the integer to be guessed. */
    public class GuessingGame {
    int theNumber; //The number to be guessed by the user.
    int guessNumber; //The user's guess.
    public void play(int g){
    theNumber=g;
    guessNumber = Integer.parseInt(JOptionPane.showInputDialog("Guess an integer."));
    while(guessNumber!=theNumber){
    if(guessNumber > theNumber){
    JOptionPane.showMessageDialog(null, "Your guess was too high. Guess again.");
    else if(guessNumber < theNumber){
    JOptionPane.showMessageDialog(null, "Your guess was too low. Guess again.");
    JOptionPane.showMessageDialog(null, "You're right!");

    You must add lines to revise your "guessNumber" inside the while block.

  • Slideshow with filmstrip plz help, can't find the answer anywhere!

    Hi, I'm def not a website designer but need to do 1 up for myself and am trying to keep it pretty basic.
    I'm using 2 widgets, a menu and the slideshow with filstrip. The slideshow worked fine for me but my dropdown menu would always be under it so you couldn't see some of the ones to click on. To fix this I played with the z-index and it finally worked when I added a z-index of -1 to the slideshow. However now the slideshow is simply that a slideshow. I can no longer go forward or backwards or pause nor can I click on the thumbnails to go directly to those images.
    Does anyone know what Im doing wrong. Either to get this going or to remove the z-index so the slideshow works but have a way to get my drop down menu then still infront of the slideshow? Its almost as if I need my menu infront of the slideshow but the slide show controls in front of the menu and I have no idea what I'm doing.
    Please if you have any ideas or suggestions I would love any help possible, I'm going insane here! :S Thank-you all so much in adance!

    sorien,
    You can run dual monitors.
    The following combinations are possible in DualView mode:
    digital monitor (onboard DVI) + analog monitor (onboard VGA)
    digital monitor (onboard DVI) + TV (onboard TV out)
    As GeForce 6150 has only one RAMDAC (Random Access Memory Digital/Analog Converter), the following combination is not possible:
    analog monitor with a DVI to VGA adapter (onboard DVI) + analog monitor (onboard VGA)
    analog monitor (onboard VGA) + TV (onboard TV out)
    Take Care,
    Richard

  • Can you find the problem in this code?

    I've searching some examples of the using of JTable on this forum.
    So I've used a code found here.
    But nothing happens, the JFrame doesn't appear on screen.
    I'm sure my database "CLIENTES" exists inside the db folder. And also there's data inside "CLIENTES" table.
    So, where is the problem then?
    Thanks.
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TelaPrincipal extends JFrame {
       public TelaPrincipal() {
            Vector columnNames = new Vector();
            Vector data = new Vector();
            try {
               //  Connect to the Database
               String driver = "org.hsqldb.jdbcDriver";
               String url = "jdbc:hsqldb:file:./db/CLIENTES";
               String userId = "sa";
               String password = "";
               Class.forName(driver);
               Connection connection = DriverManager.getConnection(url, userId, password);
               //  Read data from a table
               String sql = "SELECT * FROM CLIENTES";
               Statement stmt = connection.createStatement();
               ResultSet rs = stmt.executeQuery(sql);
               ResultSetMetaData md = rs.getMetaData();
               int columns = md.getColumnCount();
               //  Get column names
               for (int i = 1; i <= columns; i++){
                  columnNames.addElement( md.getColumnName(i) );
               //  Get row data
               while (rs.next()) {
                  Vector row = new Vector(columns);
                  for (int i = 1; i <= columns; i++) {
                     row.addElement(rs.getObject(i));
                  data.addElement(row);
               rs.close();
               stmt.close();
            catch(ClassNotFoundException cnfe) {
               cnfe.printStackTrace();
            catch(SQLException sqle) {
              sqle.printStackTrace(); 
            //  Create table with database data
            JTable table = new JTable(data, columnNames);
            JScrollPane scrollPane = new JScrollPane( table );
            getContentPane().add(scrollPane);
        public static void main(String[] args) {
           TelaPrincipal tp = new TelaPrincipal();
           tp.setDefaultCloseOperation(EXIT_ON_CLOSE);
           tp.pack();
           tp.setVisible(true);
    }

    the jdbc driver is not on the classpath?

  • Imovie 9 crashes almost ending the export. I can't find the problem.

    It hapens with all the export formats. Quicktime, itunes, idvd, etc.
    This is the report:
    Process:         iMovie [35131]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2012-04-13 22:38:42.090 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          890244 sec
    Crashes Since Last Report:           18
    Per-App Interval Since Last Report:  90204 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      5A5AE2A1-ECA1-4742-8D14-C1B2EF64181D
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0x20d0259d 0 + 550512029
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x971cc382 kevent + 10
    1   libSystem.B.dylib                       0x971cca9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x971cbf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x971cbcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x971cb781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x971cb5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x971cb412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x971cb9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x971cb5c6 start_wqthread + 30
    Thread 3:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                       0x971a5afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x971a6267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94f592df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94f583c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94f5e304 CFRunLoopRun + 84
    5   com.apple.QTKit                         0x981e1465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    7   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x971a5afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x971a6267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94f592df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94f583c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94f5e304 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate                  0x0083d1b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    7   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x971a5b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x971d36e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x972025a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x90c9cb90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x90c9c8ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x98eaa965 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    7   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x971a5b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x971d36e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x972025a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x90c9cb90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x90c9c8ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x90cf75aa AIOFileThread(void*) + 1127
    6   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    7   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x971a5b36 semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x1e2fd46b JVTCompEncodeFrame + 3038234
    2   QuickTimeH264.scalar                    0x1e2fcf9b JVTCompEncodeFrame + 3037002
    3   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    4   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x971a5b36 semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x1e2fd46b JVTCompEncodeFrame + 3038234
    2   QuickTimeH264.scalar                    0x1e3bd53f JVTLibDecoDispose + 435405
    3   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    4   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x971a5b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x971d36f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9721c05f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x99018e27 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    5   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d53f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.vImage                        0x9a0116ec vImageQueue_DequeueJob + 44
    4   com.apple.vImage                        0x9a0117ec vImageWorkerThreadFunc + 124
    5   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    6   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 11:  JavaScriptCore::Marking
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d53f8 pthread_cond_wait$UNIX2003 + 73
    Thread 12:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d32b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x92bd131c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 13:
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d53f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x172d5052 iCodecDecompressorComponentDispatch + 37730
    4   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    5   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d53f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x172d5052 iCodecDecompressorComponentDispatch + 37730
    4   libSystem.B.dylib                       0x971d3259 _pthread_start + 345
    5   libSystem.B.dylib                       0x971d30de thread_start + 34
    Thread 15:  JavaScriptCore::Marking
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d53f8 pthread_cond_wait$UNIX2003 + 73
    Thread 16:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x971d3aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x971d375e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x971d32b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x92bd131c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00412020  ebx: 0x00000014  ecx: 0x50e78d60  edx: 0x20d020a8
      edi: 0x1379c000  esi: 0x20d085b4  ebp: 0x20d0b000  esp: 0xbfffca70
       ss: 0x0000001f  efl: 0x00010646  eip: 0x20d0259d   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x004120d0
    Binary Images:
        0x1000 -   0x334ffc  com.apple.iMovie8 8.0.6 (821) <CD0B8453-4663-7F8C-EFF4-926EAB254B2A> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x3d2000 -   0x40bfe3  com.apple.MPEG2TSDecoder 1.0 (84) <75EC884A-7300-87B1-7E3A-A2B156BD4D79> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x443000 -   0x464fff  com.apple.iWidgets 1.0.0 (24) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
      0x477000 -   0x51aff4  com.apple.DotMacKit 47 (3.0.2L) <5C3FF2BA-7124-3DF9-B197-19DD4D543798> /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
      0x580000 -   0x581ff7  com.apple.Helium 3.0.0 (157) <22FD7CB4-024E-3065-EB67-262ABF99636E> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x587000 -   0x588fff +com.bensyverson.dvmatte.autopicker 1.0 (1.0) <5FB2D0C9-D6D7-036E-F739-DA7CE5BAD36E> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x58e000 -   0x643fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
      0x689000 -   0x7bbfe4  com.apple.Helium.HeliumRender 2.0.0 (157) <DEA355F6-22DC-68D4-EA7A-EE06C0D7F150> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0x814000 -   0x814ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
      0x838000 -   0x86bff3  com.apple.FWAVCPrivate 30.46 (46) <786C1EA9-AE6E-C66F-A290-8705A4F43EA8> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xc00000 -   0xd79ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      0xdff000 -   0xe23fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xed3000 -   0xedbff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
      0xf06000 -   0xf07ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
      0xf76000 -   0xfe8fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      0xff6000 -   0xff8ff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x12d5b000 - 0x13160fe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x131e6000 - 0x131f0ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x131f6000 - 0x131faff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x13fe8000 - 0x13ff4ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1428a000 - 0x143d3fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x14414000 - 0x14428ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x14430000 - 0x14439ff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x14440000 - 0x14448ff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1444f000 - 0x14451ff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x14456000 - 0x14458ff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x14700000 - 0x1484cfe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x1488f000 - 0x14944fff  com.apple.iTunesAccess 10.6.1 (10.6.1) <BDD09920-0C89-4FB3-6F06-3C6DB360C8A3> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x15f78000 - 0x15f7cff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x15f81000 - 0x15f87ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15f8c000 - 0x15fb5ffb +com.digidesign.digidesign.DigiCoreAudioPlugIn 9.0.5 (9.0.5f52) <5B31183A-6362-B533-130D-ABCF967097D2> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x16f31000 - 0x16f36fff  com.apple.AppleMPEG2Codec 1.0.2 (220.1) <EDDCFD0D-37F6-A846-EB4D-8E683ACC5184> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x16f82000 - 0x16f9bfe7  com.apple.applepixletvideo 1.2.29 (1.2d29) <52810348-A138-D148-92E4-9E1D73EA18A0> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x17242000 - 0x1727efe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1789) <88107C67-DB2B-479F-EE74-61E776811834> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x172c6000 - 0x172e1fef  com.apple.AppleIntermediateCodec 1.3.2 (153) <EFB476B9-486E-5112-50C8-8918A7964C22> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x17400000 - 0x175e6fef  com.apple.audio.codecs.Components 2.0.4 (2.0.4) <5D32DF8D-C577-EB6B-72FA-1ABDF1CED762> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x18638000 - 0x1868dfef  com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x18a00000 - 0x18a7afef  com.apple.AppleVAH264HW.component 2.0 (1.0) <4AA9239A-754B-01CF-39EB-4B98578E1C62> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1e000000 - 0x1e3e6feb  QuickTimeH264.scalar ??? (???) <1C0A94F2-A958-97FC-D1F0-A5849277682C> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x1e779000 - 0x1e77dff7 +com.bensyverson.quartzcomposer.dvmatte 1.0 (1.0) <DC961ABE-200A-E9E3-5CD2-7B98F129D0BF> /Applications/iMovie.app/Contents/Resources/Plugins/dvmatte.plugin/Contents/Mac OS/dvmatte
    0x1e895000 - 0x1e8c1fff  com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (602.0.2) <2F6AD71A-EDFB-66DF-ACBD-46617FDB7C0E> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x1e959000 - 0x1e95bff7  com.apple.podcastproducer.ImageDiffer 1.2.3 (168.7) <0EE2A12C-11A5-5801-5442-D5A7C7542CF3> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0x20a3b000 - 0x20a41fcb +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/Alexander/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x20b9f000 - 0x20bc3ff7  com.apple.QuartzComposer.ExtraPatches 4.2 (156.16) <877B2D84-7CA6-501F-FF2D-C33BC52C0074> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x20f00000 - 0x20f4cffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x20f71000 - 0x20f9afff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <412DBD1B-E9B5-E67C-99E4-820BF38239AC> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90013000 - 0x90066ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9027a000 - 0x90285ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x908e6000 - 0x90955ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <706684C7-AFA0-B036-274A-D02F8961DED5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90956000 - 0x909feffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x909ff000 - 0x90a00ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90a2f000 - 0x90aacff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90aad000 - 0x90ab1ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90ab2000 - 0x90b34ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90b8c000 - 0x90be9ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90bea000 - 0x90beaff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90beb000 - 0x90c15ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90c16000 - 0x90c54ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90c55000 - 0x90c55ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90c56000 - 0x90f76ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f77000 - 0x910a5fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x910a6000 - 0x91138fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91139000 - 0x911e6fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x911e7000 - 0x91241fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91242000 - 0x91272ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x912a8000 - 0x912b3ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x912bb000 - 0x92032fe7  com.apple.WebCore 6534.55 (6534.55.3) <88D78C7B-168E-F85E-7ED1-2D351ABB5582> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92033000 - 0x92047ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92048000 - 0x9204aff7  com.apple.QuickTimeH264.component 7.6.6 (1789) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x920d5000 - 0x92116ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92117000 - 0x9211aff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9211b000 - 0x92129fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9212a000 - 0x92164ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x92165000 - 0x92954557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92955000 - 0x92a92fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92a93000 - 0x92b71fef  com.apple.QuickTimeMPEG4.component 7.6.6 (1789) <34834F6F-B684-5D14-13E9-FF3D820F873D> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x92b72000 - 0x92b74ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bbc000 - 0x92bc5ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92bc6000 - 0x92e73feb  com.apple.JavaScriptCore 6534.55 (6534.55.2) <2FF650FE-AE0A-BB83-0BC6-BD2D192F2873> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92ebc000 - 0x9307efeb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <051752C3-8C25-CF4A-9BFB-C7B6D20E58E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9307f000 - 0x930b7ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x930c4000 - 0x9317dfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9317e000 - 0x9322cff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9322d000 - 0x9340ffff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93410000 - 0x93410ff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93411000 - 0x9341bff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9341c000 - 0x9345eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <29E5ABCF-6D8A-0CE0-B480-C7D240FF8575> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9345f000 - 0x937caff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x937cb000 - 0x937dbff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x938a0000 - 0x938bcfe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x938bd000 - 0x938faff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x938fb000 - 0x93969ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9399d000 - 0x93b1ffe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x93b20000 - 0x9419bff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94385000 - 0x943c9ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x943ca000 - 0x943d8ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x943d9000 - 0x94453fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94538000 - 0x945a2fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x945a3000 - 0x945aeff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x946a4000 - 0x9477efff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9477f000 - 0x9483bfff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9483c000 - 0x9483cff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9483d000 - 0x9487aff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9487b000 - 0x94881fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94882000 - 0x94885fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94886000 - 0x948c1ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x948c2000 - 0x948ddff7  libPng.dylib ??? (???) <05445692-8AF7-CAB6-EBF5-1F7B3A906CCB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x948de000 - 0x94ae5feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94ae6000 - 0x94f1bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94f1c000 - 0x95097fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95098000 - 0x950fcffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x950fd000 - 0x95137fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x95140000 - 0x95187ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x95188000 - 0x951acff7  libJPEG.dylib ??? (???) <7EBC924F-B2EE-68B0-4EA0-F99EF54F0306> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x951ad000 - 0x952daffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x95315000 - 0x95315ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9532a000 - 0x9535bff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9535f000 - 0x95392fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95393000 - 0x95494fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x95495000 - 0x9549cff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9549d000 - 0x9559ffef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x955a0000 - 0x955e6ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x955e7000 - 0x95ecaff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95ecb000 - 0x95edbff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95edc000 - 0x95eddff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95ede000 - 0x95feafe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96004000 - 0x96025fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96055000 - 0x960abff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x960ac000 - 0x960aeff7  libRadiance.dylib ??? (???) <41E5C5F4-A4C6-0416-08D0-422C88088558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x960af000 - 0x9615bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9615c000 - 0x9616eff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9616f000 - 0x961b2ff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x961b3000 - 0x961fcfe7  libTIFF.dylib ??? (???) <4A3EF156-D4FE-95E2-FA05-7BD76FF27CEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x961fd000 - 0x96200ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96247000 - 0x9628bfe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9628c000 - 0x96344feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96345000 - 0x963b4ff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x963b5000 - 0x963ddff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x963de000 - 0x96457ff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9647a000 - 0x96774fef  com.apple.QuickTime 7.6.6 (1789) <38255AA2-8087-5AE0-CA4B-1DDE611540B1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96775000 - 0x96825fe3  com.apple.QuickTimeImporters.component 7.6.6 (1789) <80F62753-9E0B-F479-FEAC-2433B67EC2CE> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96875000 - 0x96887ff7  com.apple.CoreMediaAuthoring 0.706 (706) <81D68084-D7BD-E52E-9B1C-C8EC0FCECE3C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x96892000 - 0x96892ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96893000 - 0x96898ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x968c5000 - 0x968cdff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x968ce000 - 0x9699ffe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x969e1000 - 0x969e4ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x969e5000 - 0x96a04fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x96aa6000 - 0x96b07fe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96b08000 - 0x96b09ff7  com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x96c46000 - 0x96c79ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96c7a000 - 0x96da2fe7  com.apple.WebKit 6534.55 (6534.55.3) <1005A819-7695-EBE6-15B8-4DBF8C3C36C4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96da3000 - 0x96e9efff  com.apple.PubSub 1.0.5 (65.28) <CA4981BF-235F-C3FB-8CC4-2E0D1A175840> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x96ead000 - 0x96ec5ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96ec6000 - 0x9712cff7  com.apple.security 6.1.2 (55002) <A476227B-409D-A457-7D4D-A631A0B4AFDB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9712d000 - 0x971a4ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x971a5000 - 0x9734cff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9734d000 - 0x97353fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x97354000 - 0x97368fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x97369000 - 0x97390ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x97391000 - 0x9739eff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9739f000 - 0x9739fff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9769a000 - 0x97737fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x978ce000 - 0x979abfe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x979ac000 - 0x97a2cfeb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x97a2d000 - 0x97a72ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x97a73000 - 0x97a84ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97a85000 - 0x97ac5ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x97ac6000 - 0x97ae5ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97b27000 - 0x97b31ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97b32000 - 0x97bcdfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97bce000 - 0x97fe4ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x980ec000 - 0x9810efef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9810f000 - 0x98252fef  com.apple.QTKit 7.7 (1789) <4D3AA05F-D4D3-0D43-99D7-F26E4640BEE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9827e000 - 0x982cbfeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x982cc000 - 0x98787ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98788000 - 0x98853fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98854000 - 0x988ecfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x988ed000 - 0x988f1ff7  libGIF.dylib ??? (???) <3B4E6D0B-89EB-251F-3693-5187254D5BE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x988f2000 - 0x99845ffb  com.apple.QuickTimeComponents.component 7.6.6 (1789) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99846000 - 0x99b6afef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99b75000 - 0x99de6fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99f4a000 - 0x9a02afe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9a02b000 - 0x9a47cfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9a47d000 - 0x9a487fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9a488000 - 0x9a4befff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x9a4bf000 - 0x9a5c1fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9a5fb000 - 0x9a5fbff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9a6f5000 - 0x9a745ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9a746000 - 0x9a7c1fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9a7c2000 - 0x9a7d7fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9a7d8000 - 0x9a7d8ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9a7d9000 - 0x9a7e0ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9a7f2000 - 0x9a812fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9a813000 - 0x9a817ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9a883000 - 0x9a8c6ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9a91a000 - 0x9a972fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9a973000 - 0x9ab9eff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9ab9f000 - 0x9abc5ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9abc6000 - 0x9abd2ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHZ2320BH G1, 298,09 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: ATAPI-6 Bridge Controller, 0x067b  (Prolific Technology, Inc.), 0x3507, 0x26400000 / 5
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x26200000 / 2
    USB Device: USB Optical Mouse, 0x046d  (Logitech Inc.), 0xc05a, 0x26210000 / 4
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0221, 0x26220000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8216, 0x06110000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    Hi
    Long list - but what usually is problematic are
    • Use of strange Video-format Codec and so Audio and photo. What kind do You use
    • iMovie pref. file got corrupted - easily done if Mac is Force quitted - Trash it or rather start a New User Account and log into this and re-try - if iMovie etc. now behaves - then problems usually the resp. pref. files
    • Repair Permissions - can also help
    Return when tried and tell if any of it helped - or fault must be searched elsewhere
    Yours Bengt W

Maybe you are looking for

  • Error installing 10g on linux

    When i trying install oracle on Fedora 10 I found following error..........._ [oracle@localhost tmp]$ ./runInstaller Starting Oracle Universal Installer... Checking installer requirements... Checking operating system version: must be redhat-3, SuSE-9

  • Foreign Exchange difference on payment to import vendor

    Hi Iam explaining my query based on an example: For ex. an amount of USD 1000 outstanding in vendor account accounted at USD 1 = INR 40 (INR 40,000) I have paid him USD 500 after two months (on which date the USD 1 rate is INR 50) - i.e., INR 25,000

  • DVD error -224

    初めてPremiereProを使って.mpgファイルをDVDとして作成しようとしています. 編集などを済ませて「DVDへ書き出し」を行うのですが.書き込み途中に [DVD error -224] という表示が出て.DVDの書き込みが失敗します.これで2枚無駄にしました(泣 googleなどで調べるとこれに似た症状が報告されているのですが.どうも日本語・英語どちらでもない言語で書かれているのでよくわかりません. 本当に困っています.どなたかわかる方がいらっしゃれば是非教えてください.

  • How to add attribute to characteristic already in production system

    HI Guru's ,                  How to add a attribute to characteristic which already exist in production system. thanks in advance

  • Changing host name

    We are going to change the name of our UNIX servers. How will this affect my Oracle database besides changing connectivity in tsnames?