Can any one change this Applet into a class that extends Jpanel.....

Hi,
I need this applet as a class that extends JPanel, I will be very very thankful to you if any one kindly change this Applet code into a class that extends JApplet.
I will be very thankful to you if some one can reserve few minutes & do this favor early.
Thanks a lot for any help.
     My Pong Code
import java.applet.*;
import java.awt.*;
import java.io.*;
import java.awt.event.*;
public class Class1 extends Applet implements Runnable
{     private final int APPLET_WIDTH = 900;
     private final int APPLET_HEIGHT = 600;
     private int px = 15;
     private final int py = 560;
     private final int ph = 10;
     private final int pw = 75;
     private int old_px = px;
     private int bx = 450;
     private int by = 15;
     private final int bh = 20;
     private final int bw = 20;
     private int move_x = 2;
     private int move_y = 2;
     private boolean done = false;
     Thread t;
     private final int delay = 25;
     public void init()
     {     setBackground(Color.black);
          setSize(APPLET_WIDTH, APPLET_HEIGHT);
          requestFocus();
          addKeyListener(new DirectionKeyListener());
         (t = new Thread(this)).start();
     public void run()      {
    try      {     while((t == Thread.currentThread()) && (done == false))           {     
               if ((bx < 15) || (bx > APPLET_WIDTH-30))                     move_x = -move_x;                                if ((by < 15) ||                    ((by > APPLET_HEIGHT-60)&&                     ((px<=bx)&&(bx<=px+pw))))
                    move_y = -move_y;
               if (by > APPLET_HEIGHT)
                    done = true;
                               bx = bx + move_x;
               by = by + move_y;                                                repaint();
               t.sleep(delay);
     catch(Exception e)      {}
     }//end run
     /*public void move_paddle(int amount)
          old_px = px;
          //if (amount > 0)
            //if (px <= APPLET_WIDTH-15)
               px = px + amount;
          //else if (amount < 0)
           // if (px >= 15)
               px = px + amount;
     public void paint(Graphics page)
          //     page.setColor(Color.black);
          //     page.drawRect(old_px, py, pw, ph);
               page.setColor(Color.blue);
               page.drawRect(px, py, pw, ph);
               page.setColor(Color.white);
               page.drawOval(bx, by, bw, bh);
               if ((done == true) && (by > APPLET_HEIGHT))
                    page.drawString("LOSER!!!", APPLET_WIDTH/2, APPLET_HEIGHT/2);
               else if (done == true)
                    page.drawString("Game Over, Man!", APPLET_WIDTH/2-10, APPLET_HEIGHT/2);
     private class DirectionKeyListener implements KeyListener               
          public void keyPressed (KeyEvent event)
               switch (event.getKeyCode())
               case KeyEvent.VK_LEFT:
                    old_px = px;
                    if (px >=15)
                         px -=10;
                    break;
               case KeyEvent.VK_RIGHT:
                    old_px = px;
                    if (px+pw <= APPLET_WIDTH-15)
                         px += 10;
                    break;
               case KeyEvent.VK_Q:
                    done = true;
               default:
               }  //end switch
               repaint();
          }//end keyPressed
          public void keyTyped (KeyEvent event)
          public void keyReleased (KeyEvent event)
     }  //end class 
}

thank you sir for your advice.
Its not like that I without any attempt, just past code here & asked for its conversion. I spent about 5 hours on it, can say spoil whole day but to no avail. You then just guide me, give some hint so that I do it. I will most probably wanted to do it by myself but asked for help when was just disappointed.
I try to put all init() in default constructor of identical copy of this applet that extends JPanel. Problem.....ball tend to fell but pad not moving. Also out out was not getting ant color input. That was like my best effort.....other tried that I found by search like just do nothing only extend panel OR frame in spite of applet, start applet from within main of another class.... these are few I remember what I tried.
I will be very very thankful to you if you can help/guide me how can I do it. Behavior of the Applet is like a normal PONG game with on pad controlled by arrow keys, & one ball colliding with walls of boundary & falling down.
Thanks a lot again for your attention & time.

Similar Messages

  • CAn any one supply this script

    Hi can any one supply this script for
    installing Oracle 11i...
    adautostg.pl
    In order to create a staging area...
    Help me guys...

    I had check the version of perl in linux
    perl -v
    output is
    this perl is, v5.8.0
    but in the StartCD/Disk1/rapidwizard/...the adautostg.pl
    file is not available...
    so it could not able to start
    still I tried by ./rapidwiz

  • Can any one debug this code????

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.util.*;
    public class AppletTest2 extends JApplet implements ActionListener,MouseMotionListener,WindowListener{
    JFrame fr = new JFrame("Visual Tool -- Work Flow Editor");
         JPanel panel1 = new JPanel();
         JPanel panel2 = new JPanel();
         JButton sButton = new JButton("Source");
         JButton rButton = new JButton("Redirection");
         JButton dButton = new JButton("Destination");
         JButton connect = new JButton("Connect");
         BasicStroke stroke = new BasicStroke(2.0f);
         int flag = 1 ;
         Vector lines = new Vector();
         JButton sBut,rBut,dBut;
    int x1 = 0 ;
         int y1 = 0 ;
         int x2 = 0 ;
         int y2 = 0;
         int x3 = 0;
         int y3 = 0;
         int i=0;
         int j=0;
         int k=0;
         int l = 100;
    int b = 50;
    public void init(){
              /*********Frame ******************/
    fr.getContentPane().setLayout(new BorderLayout());
         fr.setSize(700,500);
              fr.getContentPane().add(panel1,BorderLayout.CENTER);
              fr.getContentPane().add(panel2,BorderLayout.SOUTH);
              fr.addWindowListener(this);
              /*****************PANEL 1*********************/
              panel1.setLayout(null);
    panel1.setBounds(new Rectangle(0,0,400,400));
              panel1.setBackground(new Color(105,105,205));
    /************************PANEL 2 *************/
              panel2.setLayout(new FlowLayout());
              panel2.setBackground(new Color(105,205,159));
              panel2.add(sButton);
              panel2.add(rButton);
              panel2.add(dButton);
              panel2.add(connect);
              connect.setToolTipText("Use this button after selecting From and To position to connect");
              /***************************LISTENER********************/
    sButton.addActionListener(this);
              rButton.addActionListener(this);
              dButton.addActionListener(this);
              connect.addActionListener(this);
              fr.setVisible(true);     
              fr.setResizable(false);
         } // init clse
    /************************** START METHOD **********************************************/
              public void start(){                                 
                   System.out.println("inside start");
                   paint(panel1.getGraphics());
    /*******************************APPLET METHODS **************************************************/
              public void stop(){}
              public void destroy(){}
    /******************************MOUSE MOTION LISTENERS METHOD*************************************/
              public void mouseMoved(MouseEvent e){System.out.println("moved");}
              public void mouseDragged(MouseEvent e){System.out.println("dragged");}
    /***************************************ACTION EVENT IMPLEMENTAION *******************************/
         public void actionPerformed(ActionEvent e){
              if (e.getSource().equals(sButton)){          
              sourceObject("Source Object");          
              else if (e.getSource().equals(rButton)){          
              redirectionObject("Redirection");
              i = i+1;
              else if (e.getSource().equals(dButton)){
              destinationObject("Destination");
                   j= j+1;
              else if (e.getSource().equals(connect)){
                   System.out.println("am inside connect");                
                   paint(panel1.getGraphics());               
    else if(e.getSource().equals(sBut)){
                   System.out.println("am s button");                
                   x1 = sBut.getX() + l;
                   y1 = sBut.getY() + (b/2);
              else if(e.getSource().equals(rBut)){
                   System.out.println("am r button");               
                   x2 = rBut.getX() ;
                   y2 = rBut.getY()+ b/2;
                   System.out.println("x2 : " + x2 + "y2 :" +y2 );
              else if(e.getSource().equals(dBut)){
                   System.out.println("am d button");                
                   x3 = dBut.getX();
    y3 = dBut.getY()+ b/2;
    } // action close
    /**********************Main **********************************/     
         public static void main(String args[]){
         JApplet at = new AppletTest2();
              at.init();
              at.start();
    /********************my methods starts here *******************/
         public void sourceObject(String name){     
    sBut = new JButton(name);
         panel1.add(sBut);
         sBut.setBounds(new Rectangle(20,208,l,b));     
         sBut.addActionListener(this);
    System.out.println("am inside the source object") ;
         public void redirectionObject(String name){     
         rBut = new JButton(name);
         panel1.add(rBut);
         rBut.setBounds(new Rectangle(290,208,l,b));     
    rBut.addActionListener(this);
    System.out.println("am inside the redirection :" + j) ;
    public void destinationObject(String name){     
         dBut = new JButton(name);
         panel1.add(dBut);     
    System.out.println("am inside the destination object") ;
    if (j == 0)
                   dBut.setBounds(new Rectangle(566,60,l,b));                    
                   System.out.println("am inside the destination:" + j) ;
                   } else if (j == 2)
                        dBut.setBounds(new Rectangle(566,208,l,b));     
                        System.out.println("am inside the destination :" + j) ;
                   } else if (j == 1)
    dBut.setBounds(new Rectangle(566,350,l,b));     
                        System.out.println("am inside the destination :" + j) ;
    dBut.addActionListener(this);
    /* public void connectObject(Object obj1,Object obj2){
    System.out.println("nothing");
    /************************************* PAINT **************************/
    public void paint(Graphics g){
         System.out.println("inside paint");
         Graphics2D g2 = (Graphics2D) g;
         g2.setStroke(stroke);
    if(flag == 1){
    System.out.println("inside flag");
    int np = lines.size();
                        System.out.println(np);
                             for (int I=0; I < np; I++) {                       
         Rectangle p = (Rectangle)lines.elementAt(I);
                             System.out.println("width" + p.width);
                             g2.setColor(Color.red);
                             g2.drawLine(p.x,p.y,p.width,p.height);
                             System.out.println(p.x +"" +""+ p.y + ""+ ""+ p.width+ "" + ""+ p.height);
    flag = -1;
    }else if(flag == -1){
         if(x1 != 0 && y1 != 0 && x2 != 0 && y2 != 0 ){
    // Graphics2D g2 = (Graphics2D) g;
         // g2.setStroke(stroke);
    g2.setColor(Color.red);
         g2.drawLine(x1,y1,x2,y2);
         lines.addElement(new Rectangle(x1,y1,x2,y2));     
         x1 = 0 ;y1 = 0 ;
         x2 = 0 ;y2 = 0 ;
    //     g2.drawLine(100,100,200,200);
    else if (x2 != 0 && y2 != 0 && x3 != 0 && y3 != 0 )
              // Graphics2D g2 = (Graphics2D) g;
                   // g2.setStroke(stroke);
              g2.setColor(Color.green);
                        g2.drawLine(x2,y2,x3,y3);
                        lines.addElement(new Rectangle(x2,y2,x3,y3));
                        x2 = 0; y2 = 0 ;
                        x3 = 0 ; y3 = 0 ;                    
    else if (x1 != 0 && y1 != 0 && x3 != 0 && y3 != 0)
                   //     Graphics2D g2 = (Graphics2D) g;
                   // g2.setStroke(stroke);
                   g2.setColor(Color.red);
                   g2.drawLine(x1,y1,x3,y3);
                        lines.addElement(new Rectangle(x1,y1,x3,y3));                              
                        x1 = 0; y1 = 0 ;
                        x3 = 0 ; y3 = 0 ;                    
    // repaint();
    /********************************WINDOW LISTENER IMPLEMENTATION *****************************/
    public void windowActivated(WindowEvent we) { 
              flag = 1;
              paint(panel1.getGraphics());
    System.out.println("windowActivated -- event 1");
         //start();               
         public void windowClosed(WindowEvent we) {
                                                                System.out.println("windowClosed -- 2");
         public void windowClosing(WindowEvent we){
                                                                System.out.println("windowClosing -- 3");
    public void windowDeactivated(WindowEvent we) {
                                                                     System.out.println("windowDeactivated -- 4");
    public void windowDeiconified(WindowEvent we) {
                                                                     flag = 1;
                                                                     System.out.println("windowDeiconified -- 5");          
                                                                     paint(panel1.getGraphics());           
    public void windowIconified(WindowEvent we) {           
                                                           System.out.println("windowIconified -- 6");
                                                           //paint(panel1.getGraphics());
    public void windowOpened(WindowEvent we) {             
                                                      //     flag = 1;
                                                      //     paint(panel1.getGraphics());
                                                           System.out.println("windowopened -- 7");     
    The problem am facing here is that when i minimize the frame and maximize , my old lines are getting disappared.
    For avoiding that i am storing the old coordinates and
    try to redraw , when maximize.
    but the lines are coming for flash of second and disappearing once again ?
    can any one help?
    thanks all

    You are probably seeing both a window un-iconify AND a window resize.
    Your best bet is to create an off screen buffer update that and then copy it to the screen. Just as you use the appropriate Java2d gc.createCompatibleImage(...) you should be ok. You will never have to worry about loosing your on-screen image again. Using an off screen buffer would also simplify your code as your paint would not have to be so crazy with all of those if(..) else if ... statements.

  • Can  any one Resolve this Error

    Hello All,
          i have downloaded  AppleAccordion example and imported in flex builder ide .
          i am getting an error
               Interface method get creatingContentPane in namespace mx.core:IContainer not implemented by class Header.
          i have added flexlib.swc file into my build path.
    Can any one help me.
    thanks
    Raghu.

    Hi,
    I don't know what version of FlexLib is in that source, but it's not latest.
    Download and put latest version of Flexlib to your project.
    http://code.google.com/p/flexlib/

  • Can any one solve this problem

    when i sent request to the jsp using struts1.1 this error occurred. i couldn't understand this error. can any one let me know when such error comes and let me Know how to solve this error.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:279)
         org.apache.jasper.compiler.TagLibraryInfoImpl.createValidator(TagLibraryInfoImpl.java:653)
         org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:246)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:162)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.ClassNotFoundException: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1338)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1187)
         org.apache.jasper.compiler.TagLibraryInfoImpl.createValidator(TagLibraryInfoImpl.java:649)
         org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:246)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:162)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.12 logs.

    Its problem related to your configuration files. check struts config file

  • Can any one validate this architecture?

    I have designed an architecture for my Application using MVC framework. I need
    wise advice on my architecture.Please validate.
    The architeure is
    JSP ->Struts Action class - >Businessdelegate--> (uses)--> Service Locator--> Session Facade(session bean)-->Businessobject-->Dao
                                                                                                                         |
                                                                                                               Application Service
                                                                                                                          |
                                                                                                          External Application  &  Webservice  ****************************************************************************************
    Explanation of the above depicted sequence :
    JSP : Provides the view for the presentation layer.
    Action Class - The function of an action class is to create a Transfer object out of Form Object and invoke the corresponding business delegate method.
    Business Delegate - The business delegate calls the appropriate Service method based on the value obtained from the Transfer object.This layer uses Service locator for the JNDI look up.
    Session Bean -EJB Service (Session bean) delegates the business object coordination logic to the Business Object Layer.
    Business object Layer- All the business validations will be performed.Based on the business requirement, it will call the DAO or call Web Service Layer through Application Service layer.
    Application Layer - The Application Service layer is used to co-ordinate with the external application services and Web service layer.
    My Queries :
    1) One section of my application has just one concurrent user. Ie. the application has Administration section in which at a time only 2 users will be using the application. Is it wise to go for EJB implementation.?
    2) If EJB layer is not used? can i use a simple java interface class and an implementation class to replace the EJB layer..so that if the future requirement needs EJB implementation, then we can just introduce a home interface to convert this existing approach to a EJB.I have this thought process, I am not sure whether this is feasible? If this is feasible, how do i go about?
    3)Is there any simple approach to have a better architecture? Please advice
    4) If you look at the above layered sequence, I am calling the external application , say for example any rule engine(External application) call is via this application service layer and Web service call is also through the application layer.Do i need to have a seperate layer to differnsiate the call from the webservice and the other external application?

    I have designed an architecture for my Application
    using MVC framework. I need
    wise advice on my architecture.Please validate.You might have a look at the J2EE design patterns and find something similar to this :-)
    JSP ->Struts Action class -
    - >Businessdelegate--> (uses)--> Service Locator-->
    Session Facade(session bean)-->Businessobject-->Dao Yeah! Everyone uses the same design... I'm going to run away from Java now...
    My Queries :
    1) One section of my application has just one
    one concurrent user. Ie. the application has
    Administration section in which at a time only 2
    users will be using the application. Is it wise to go
    for EJB implementation.?You need not have the EJB for that. Anyway, all your EJB does is call another bunch of classes. It is not really achieving what a session facade is intended to do (save remote EJB calls). Besides a Business Object would be achieving the purpose of encapsulating the business logic.
    2) If EJB layer is not used? can i use a simple
    le java interface class and an implementation class
    to replace the EJB layer..so that if the future
    requirement needs EJB implementation, then we can
    just introduce a home interface to convert this
    existing approach to a EJB.I have this thought
    process, I am not sure whether this is feasible? If
    this is feasible, how do i go about?It depends on what you want to do having an EJB. Is it for scalability, concurrent database transaction handling, persistence... ??? If you require all that, I doubt you would get it in a single interface + implementing class. Anyway, you have DAOs to take care of DB layer. And your EJB doesn't serve much purpose here.
    3)Is there any simple approach to have a better
    architecture? Please adviceYes, do away with the EJB. I think Think about what you want to really do with the thing labelled as "DAO". In short, look for the core J2EE patterns and try to understand what each layer is intended to do, if it is a part of the architecture..
    4) If you look at the above layered sequence, I am
    calling the external application , say for example
    any rule engine(External application) call is via
    this application service layer and Web service call
    is also through the application layer.Do i need to
    have a seperate layer to differnsiate the call from
    the webservice and the other external application?You might have another layer of abstraction if you expect a change in requirements. Else it would be just another layer. :-)
    Disclaimer: All the replies are to the best of my knowledge! Consult someone, especially J2EE patterns.

  • Can any one answer this?

    All,
    Can we have any limit for using nested loop in PL/SQL?
    Regards
    ND

    user8900449 wrote:
    The recurssion no doubt is elegant but the only problem arises when you are doing some sql or dml inside it.
    Because it will end up opening as many cursors as your recursion revolves around.That depends on the scope of the cursor - whether it remains open for the duration of the procedure's lifetime, or whether it is closed before recursion occurs.
    Simple (and ugly) example using implicit cursors (cursor is created and destroyed before the recursive call is made in the current active code unit), thus a single open cursor exist (per call) for the lifespan of the entire recursive call.
    SQL> create or replace procedure Nest( levelNo number ) is
      2          i       integer;
      3  begin
      4          if levelNo > 0 then
      5                  select levelNo-1 into i from dual;
      6                  Nest( i );
      7          end if;
      8  end;
      9  /
    Procedure created.
    SQL>
    SQL> exec Nest(1000000)
    PL/SQL procedure successfully completed.
    So be careful in recursion along with sql operation inside it.Agreed. But why would one want to use open SQL cursors in recursion? (i.e. each recursion creating a cursor with scope that spans the recursive call)
    There are nested loop joins (courtesy of the CBO), hierarchical query support and so on. Using PL to solve a SQL problem (like doing manual nested loops in PL) is always a problem - not just an issue with PL recursion.

  • Doubt in this code can any one clarify this

    this is a code in program generated by sap query
    SELECT VBRKBUKRS VBRKBZIRK VBRKFKDAT VBRKKUNAG VBRK~SPART
           VBRKVBELN VBRKVKORG VBRKVTWEG VBRKXBLNR VBRP~FKIMG
           VBRPMATKL VBRPMATNR VBRPPOSNR VBRPVBELN VBRP~VKBUR
           VBRPVKGRP VBRPVRKME VBFAERDAT VBFAMEINS VBFA~POSNN
           VBFAPOSNV VBFARFMNG VBFAVBELN VBFAVBELV VBFA~VBTYP_N
           VBFA~VBTYP_V
    INTO (VBRK-BUKRS , VBRK-BZIRK , VBRK-FKDAT , VBRK-KUNAG , VBRK-SPART
         , VBRK-VBELN , VBRK-VKORG , VBRK-VTWEG , VBRK-XBLNR , VBRP-FKIMG
         , VBRP-MATKL , VBRP-MATNR , VBRP-POSNR , VBRP-VBELN , VBRP-VKBUR
         , VBRP-VKGRP , VBRP-VRKME , VBFA-ERDAT , VBFA-MEINS , VBFA-POSNN
         , VBFA-POSNV , VBFA-RFMNG , VBFA-VBELN , VBFA-VBELV , VBFA-VBTYP_N
         , VBFA-VBTYP_V )
    FROM ( VBRK
           INNER JOIN VBRP
           ON VBRPVBELN = VBRKVBELN
           INNER JOIN VBFA
           ON VBFAPOSNV = VBRPPOSNR
           AND VBFAVBELV = VBRPVBELN )
           WHERE VBRK~BUKRS IN SP$00009
             AND VBRK~BZIRK IN SP$00012
             AND VBRK~FKDAT IN SP$00002
             AND VBRK~KUNAG IN SP$00003
             AND VBRK~SPART IN SP$00013
             AND VBRK~VBELN IN SP$00001
             AND VBRK~VKORG IN SP$00010
             AND VBRK~VTWEG IN SP$00011
             AND VBRP~MATKL IN SP$00008
             AND VBRP~VKBUR IN SP$00015
             AND VBRP~VKGRP IN SP$00014
             AND VBFA~VBTYP_N IN SP$00004
             AND VBFA~VBTYP_V IN SP$00005.
      %DBACC = %DBACC - 1.
      IF %DBACC = 0.
        STOP.
      ENDIF.
      CHECK SP$00004.
      CHECK SP$00005.
      CHECK SP$00009.
      CHECK SP$00012.
      CHECK SP$00002.
      CHECK SP$00003.
      CHECK SP$00013.
      CHECK SP$00001.
      CHECK SP$00010.
      CHECK SP$00011.
      CHECK SP$00008.
      CHECK SP$00015.
      CHECK SP$00014.
      CHECK SP$00006.
      PERFORM TEXTFIELD_REFRESH(RSAQEXCE).
      PERFORM TEXTFIELD_CONTEXT(RSAQEXCE) USING 'VBRK' VBRK.
      PERFORM TEXTFIELD_CONTEXT(RSAQEXCE) USING 'VBRP' VBRP.
      PERFORM TEXTFIELD_CONTEXT(RSAQEXCE) USING 'VBFA' VBFA.
      PERFORM TEXTFIELD_CALL(RSAQEXCE) USING VBRP 'VBRP' 'MATKL'
              TEXT_VBRP_MATKL.
      PERFORM TEXTFIELD_CALL(RSAQEXCE) USING VBFA 'VBFA' 'VBTYP_N'
              TEXT_VBFA_VBTYP_N.
      PERFORM TEXTFIELD_CALL(RSAQEXCE) USING VBFA 'VBFA' 'VBTYP_V'
              TEXT_VBFA_VBTYP_V.
      ADD 1 TO %COUNT-VBRK.
      %LINR-VBRK = '01'.
      EXTRACT %FG01.
      %LINR-VBRK = '02'.
      EXTRACT %FG02.
      %EXT-VBRP02 = 'X'.
        EXTRACT %FGWRVBRP02.
      %LINR-VBRK = '03'.
      EXTRACT %FG03.
      %LINR-VBRK = '04'.
      EXTRACT %FG04.
      %EXT-VBFA04 = 'X'.
        EXTRACT %FGWRVBFA04.
      %LINR-VBRK = '05'.
      EXTRACT %FG05.
    ENDSELECT.
    in this code what check statement does

    Hi Avinash kodarapu,
                    The use of check statement is ...
    Terminating a Loop Pass Conditionally
    To terminate a single loop pass conditionally, use the
    CHECK <condition> statement in the statement block of
    the loop.
    If the condition is not true, any remaining statements
    in the current statement block after the CHECK statement
    are ignored, and the next loop pass starts. <condition>
    can be any logical expression.
    DO 4 TIMES.
      CHECK SY-INDEX BETWEEN 2 and 3.
      WRITE SY-INDEX.
    ENDDO.
    The output is:
             2          3
    The first and fourth loop passes are terminated without
    the WRITE statement being processed, because SY-INDEX is
    not between 2 and 3.
    So what the check statement does is that it checks if
    SPXXXXX values are null or not. If SPXXXXX values are
    null the current loop terminates and starts with next
    value for the select statement.
    Hope this helps you.
    Regards,
    Maheswaran.B

  • Can any one believe this tech support trying to delete legacy adobe apps!!!!!!

    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: I need to know that NONE of my legacy adobe apps will be affected. CS5 suite and CS6 products will NOT be affected is that right??????????????
    info: Your chat transcript will be sent to dixxx.net at the end of your chat.
    Vipin: It will be affected.
    ADOBE CUSTOMER: WHOA! you are saying that my CS% and CS 6 apps will be hurt and not run correctly is that right?
    Vipin: We need to remove all the Adobe apps installed on your computer.
    Vipin: Is that okay.
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: There is no way I give permission to delete CS5 creative suite, CS6 video production suite or hurt them in any way what so ever. I have THOUSANDS of dollars of plugins and other workfow products that depend on them. Sorry but my only recourse is to
    ADOBE CUSTOMER: see if you have ANY loyalty to an OVER 30 years adobe customer (me) when you demand payout for the remaining 5 months of the subscription. I'm betting you will just send the bill to collections for non payment. If so, you WILL be sued for non service and non delivery of product. And yes, I am ready to spend over xxxx on a suit vs adobe because of how you have treated me. The point is I know that I am not alone, and that's sad.
    Then customer service has the gall to ....
    ME:
    1) First I need a credit for $10.81 for months October, November, and December of 2014... and January of 2015.
    2) Second I need my subscription extended at the SAME price for ONE year WHEN I START A NEW SUBSCRIPTION upon new releases of the photography CC bundle. The current one does NOT install correctly on a purpose built computer to handle Video and 3D processing. I will not tolerate you deleting legacy products that go back to CS3 and newer that I depend on to pay my bills. The forums are full of folks with the same install problems for CC 2014. That is one year free for the extreme hassle and loss of time productivity, travel expenses, and monies due to being forced to use my standalone
    PS CS6 products for core work and another copy of the CC PS for 3D work at another location with a different persons subscription for my clients jobs.
    3) You need to get PS CC installed on my new production box on its “D” drive before I will agree to anything except the above. Lightroom CC 2014 installed just fine. There is no excuse for a product like PS to fail on extraction prior to install!
    Britt from adobe:
    If you do decide to cancel, we can refund your subscription.
    If you stay with the service, we can provide 2 free months as an apology for the technical difficulties. We cannot provide a free year.
    Please let me know which you would like to do.
    Thanks,
    Britt
    Kee Jee You want me to stay with a service that provides no product? And has not provided me with a usable product since October of 2014? And now the word is out that you are raising subscription prices after the first year? Who do you think you are? You HURT peoples ability to earn a living! You cost us hours and days and months trying trying to fix your problems so we can move forward with your products? Who in the hell do you think you are? Tell you what, dont cancel a thing. A media blitz and maybe a subpoena to San Jose is the right move to protect peoples rights. Your company needs to learn a lesson in how to treat legacy customers. It seems no one has taught you that "if you take care of the customer, they will take care of adobe." Britt, care to guess how many dollars I have given adobe in almost 30 years?

    Britt, I'm still waiting for my refund!
    1) I am STILL waiting for a full refund.
    2) Second I need my subscription extended at the SAME price for ONE year WHEN I START A NEW SUBSCRIPTION upon new releases of the photography CC bundle. The current one does NOT install correctly on a purpose built computer to handle Video and 3D processing with PS. I will not tolerate adobe and your text support wanting to delete legacy products that go back to CS3 and newer that I depend on to pay my bills.
    You and your tech support was worthless in suggesting they wanted to CLEAN my ENTIRE box of ALL ADOBE products. The LEGACY Apps WORK, they are PAID FOR, and thousands of dollars of After Effects, Premiere, and medical scientific plugins for Photoshop would be invalid and not useful without the legacy installed products. I sure as hell am NOT upgrading to CC for my production bundles after the way you have treated me and many of my clients now. Instead we are pursuing alternative solutions that are not adobe.
    The forums are full of folks with the same install problems for CC 2014. That is one year free for the extreme hassle and loss of time productivity, travel expenses, and monies due to being forced to use my standalone PS CS6 products for core work and another copy of the CC PS for 3D work at another location with a different persons subscription for my clients jobs.
    3)  There is no excuse for a product like PS to fail on extraction prior to install!
    4)  Your software has a poor history in the security department and I am now dealing with the second zero-day affecting my Flash, exploiting Internet Explorer and Firefox on
    my Windows 7. You all deny that you have a problem. I am waiting for you to notify me soon on what needs updating and I need to know when you plan to push out a fix. Only then will
    I allow flash back on my systems.
    Charles Fonetnot

  • Can any one Modify this Code and reply back

    Hi,
    Iam using this UDF presently to get one return value from RFC Lookup mapping Table.
    Now I want two return values from the RFC Lookup Mapping Table.
       //write your code here
         int length=pospymtvalue.length;
         String DBTABLE = tabname[0];
                                    String lookUpField = lkpfld[0];
                                    String sapClient = "500";
                                    String hostName = "xidev";
                                    String systemNumber = "00";
                                    String userName = "user1";
                                    String password = "pass";
                                    String language = "EN";
                                    JCO.Repository mRepository;
                                    JCO.Client mConnection = JCO.createClient(
                                                   sapClient,
                                                   userName,
                                                   password,
                                                   language,
                                                   hostName,
                                                   systemNumber );
                                    // connect to SAP
                                    mConnection.connect();
                   for(int j=0;j<length;j++)
                                    String WHERE_CLAUSE = pospymt[0]" = ""'"pospymtvalue[j]"'";
                                    // create repository
                                    mRepository = new JCO.Repository( "GenericRFCMappingLookup", mConnection );
                                    // create function template to select data from any table
                                    JCO.Function function = null;
                                    IFunctionTemplate ft = mRepository.getFunctionTemplate("RFC_READ_TABLE");
                                    function = ft.getFunction();
                                    // Obtain parameter list for function
                                    JCO.ParameterList input = function.getImportParameterList();
                                    // Pass function parameters
                                    // set import parameters table name and RFC
                                    input.setValue( DBTABLE, "QUERY_TABLE");
                                    input.setValue( "," , "DELIMITER");
                                    //Fill the where clause of the table
                                    JCO.ParameterList tabInput = function.getTableParameterList();
                                    JCO.Table inputTable = tabInput.getTable("OPTIONS");
                                    inputTable.appendRow();
                                    inputTable.setValue(WHERE_CLAUSE,"TEXT");
                                    mConnection.execute( function );
                                    //Find the position of the field that has to be lookedUp
                                    JCO.Table lookupFieldPos = function.getTableParameterList().getTable("FIELDS");
                                    int pos = -1;
                                    for (int i = 0; i < lookupFieldPos.getNumRows(); i++)
                                              lookupFieldPos.setRow(i);
                                              if (lookupFieldPos.getString("FIELDNAME").equals(lookUpField))
                                              pos = i;
                                    //Get the exact lookupvalue from the position obtained above
                                    JCO.Table valueSet = function.getTableParameterList().getTable("DATA");
                                    for (int i = 0; i < valueSet.getNumRows(); i++)
                                              valueSet.setRow(i);
                                              String resultSet [] = valueSet.getString("WA").split(",(?=(?:[\"]*\"[\"]\")(?![^\"]*\"))");
                                              result.addValue(resultSet[pos]);
                                  mConnection.disconnect();
    Regards
    Bopanna

    Hi Boppana,
    For loop at the end will return more than one values if it has more than one value for the input values.
    chirag.

  • Can any one do this

    3 5 14 22 30 44
    6 12 15 16 31 44
    11 17 21 29 30 40
    26 35 38 43 47 49
    3 5 9 13 14 38
    2 3 27 29 39 44
    9 17 32 36 42 44
    2 5 21 22 25 32
    7 17 23 32 38 42
    6 16 20 30 31 47
    4 16 25 26 31 43
    1 7 37 38 42 46
    15 18 29 35 38 48
    16 19 21 29 36 45
    5 8 10 18 31 33
    11 12 17 26 32 42
    2 13 22 27 29 46
    9 18 19 24 31 41
    4 17 41 42 44 49
    22 25 30 32 41 43
    14 17 22 24 42 47
    1 4 6 23 26 49
    8 18 20 33 36 38
    9 15 22 31 34 48
    5 14 17 35 43 48
    7 16 25 26 28 41
    15 16 17 28 32 46
    12 13 25 37 44 45
    1 21 29 31 32 40
    12 15 26 44 46 49
    Determine how frequently (i.e. how often) each of the winning numbers occurs. For this you will need another array (i.e. a �frequency array�) to store how often each of the winning numbers occurs. For example you can see from the data file that the winning number 9 has occurred 4 times, so that the frequency of 9 is 4. In this case the frequency array element 9 will contain 4. Write java code to determine an array of frequencies. Test your code by providing output of the frequency array.
    Note: The first element (a[0]) is effectively redundant!
    does anyone in here know how to do this I haven't got a clue!!
    Please help!!

    for loops dude..
    use for loops to seee how many times a number occurs, and then record it into a vector or something.
    PS. Dont post homework questions on here. Think about the question try it and then ask us for help getting around more specific problems like why is the count always higher than it should be, or what should i use to record the occurence of something.
    Then people will answer you.

  • Can any one fix this problem

    Hello i have recently have asked here before about a burning problem that I have encountered. I was told that i needed enough detail for someone to help me. So I will write what the problem is in a 45 page essay. Ok maybe not that detailed. Well first of all i downloaded three videos from my jvc camcorder into imovies. BTW I have a brand new macbook like a month old so yeah everything is new. Well i edited the movies and wanted to burn them in idvd. i dont have a superdrive but bought an external dvd burner from sony. I then made a slideshow of pics in imovie. So i have a total of three medias that i want to burn in idvd. The first video which is a ceremony is 34:37. The second video is a reception is 35:26 long. The third video which is a slideshow is only 4:36. Now twice i have burn a dvd successfully. When this has happen its only the ceremony video and the slideshow that get burned. using an old wedding silver theme. So i tried many times with the three videos there and it gives me the multiplexing error. So at least I know it burns dvds its just i cant get all three of them in there. I am new to mac world and i know for sure though that i didnt do anything different from the two videos.

    Before you start the burn process, turn off all energy savers, screen savers, drive sleep, etc.
    Any of these will interfere/halt the rendering/MUXing process. Generally you end up with a coaster instead of a playable DVD.
    how much free HD space do you have?
    On my system, 1-1/2 hours video needs approx 35gb space to render.
    Below that, if fails or generates errors.
    Older versions of iDVD and iMovie were not happy with 8bit audio.
    Had to redo the import in 16 bit. Don't know if 08 fixed that issue.
    Might want to create slideshow as a slideshow inside of iDVD instead of as a movie in iMovie.

  • Can any one verify this..

    Which two statements are true about WHERE and HAVING clauses? (Choose two)
    A. A WHERE clause can be used to restrict both rows and groups.
    B. A WHERE clause can be used to restrict rows only.
    C. A HAVING clause can be used to restrict both rows and groups.
    D. A HAVING clause can be used to restrict groups only.
    E. A WHERE clause CANNOT be used in a query of the query uses a HAVING clause.
    F. A HAVING clause CANNOT be used in subqueries.
    ans.. B,D(according to me)

    We can discuss about the C.
    Without having clause, the following query return 3 rows, like Oracle write.
    SQL> select deptno,count(*)
      2  from   emp
      3  group by deptno
      4  /
        DEPTNO   COUNT(*)
            30          6
            20          5
            10          3
    3 rows selected.Now, just by adding a having clause, the number of returned rows is less :
    SQL> select deptno,count(*)
      2  from   emp
      3  group by deptno
      4  having count(*)>3
      5  /
        DEPTNO   COUNT(*)
            30          6
            20          5
    2 rows selected.
    SQL> So, a having clause restrict the number of rows. Am I wrong ?
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • Can any one solve this?

    Hello Guys,
    I hv Solaris 10 update 4 Installed through Vmware on My Windows. Now I hv a POPE WAN Internet Connection
    Here are some details
    Physical address -00-53-45-00-00-00
    IP Address-59.94.140.244
    Subnet mask -255.255.255.255
    Default gateway- 59.94.140.244
    DNS Servers- 218.248.240.79
    218.248.240.135
    Now Could someone gimme step by step details on how to set up Internet Connection on Solaris 10.
    thanks
    Somil

    The IP address you have is the same as the Default Gateway. If the IP address for the server is correct then you need to determine the the address for the Default Gateway (router). The default gateway IP is placed in /etc/defaultrouter.
    DNS information is placed in /etc/resolv.conf
    The hosts line in /etc/nsswitch.conf needs to be midified to add "dns" before "files.
    I suggest reading the man pages for /etc/resolv.conf, /etc/nsswitch.conf and /etc/defaultrouter.
    Check with the network people and sysadmin to make sure you have the right IPs.
    Cheers

  • Can any one explain this crash log?

    6/28/2014 Ipad4g NEED SOME HELP PLEASE.  APPLE WILL NOT ACKNOWLEDGE ALL MY DEVICES ARE BEING HACKED. 2 years, 5 phones, 6 computers, 3 iPads later.  All crashed.  Help anyone?  bundleID":"com.enchantedcloud.photovault","app_name":"PhotoVault","bug_type":"1 09","name":"PhotoVault","os_version":"iPhone OS 7.1.1 (11D201)","version":"6.2 (6.2)"} Incident Identifier: ED8132A0-29DC-4674-95E1-40F89540FE8A CrashReporter Key:  e8400f096d6fd8b90b4c45d602809bd6bb1e17b7 Hardware Model:      iPad4,2 Process:            PhotoVault [169] Path:                /var/mobile/Applications/F8A6D5B8-23B4-4DE0-8FB4-49FD88A8CDD9/PhotoVault.app/Ph otoVault Identifier:          com.enchantedcloud.photovault Version:            6.2 (6.2) Code Type:          ARM (Native) Parent Process:      launchd [1] Date/Time:          2014-06-27 10:26:19.966 -0400 OS Version:          iOS 7.1.1 (11D201) Report Version:      104 Exception Type:  EXC_CRASH (SIGSEGV) Exception Codes: 0x0000000000000000, 0x0000000000000000 Triggered by Thread:  1 Thread 0: 0  libobjc.A.dylib              0x3ac42627 0x3ac35000 + 54823 1  UIKit                        0x32d2bea7 0x32887000 + 4869799 2  UIKit                        0x32aa91f3 0x32887000 + 2236915 3  UIKit                        0x32aa90fb 0x32887000 + 2236667 4  UIKit                        0x329b07ef 0x32887000 + 1218543 5  UIKit                        0x32a62caf 0x32887000 + 1948847 6  UIKit                        0x32911e07 0x32887000 + 568839 7  UIKit                        0x3288ab53 0x32887000 + 15187 8  CoreFoundation                0x3002e037 0x2ff8e000 + 655415 9  CoreFoundation                0x3002b9c3 0x2ff8e000 + 645571 10  CoreFoundation                0x3002bd0f 0x2ff8e000 + 646415 11  CoreFoundation                0x2ff96765 0x2ff8e000 + 34661 12  CoreFoundation                0x2ff96547 0x2ff8e000 + 34119 13  GraphicsServices              0x34ecd6cf 0x34ec4000 + 38607 14  UIKit                        0x328f588d 0x32887000 + 452749 15  PhotoVault                    0x000b2a8b 0x9f000 + 80523 16  libdyld.dylib                0x3b136ab5 0x3b135000 + 6837 Thread 1 Crashed: 0  libsystem_kernel.dylib        0x3b1da804 0x3b1da000 + 2052 1  libdispatch.dylib            0x3b129051 0x3b121000 + 32849 2  libdispatch.dylib            0x3b1232df 0x3b121000 + 8927 Thread 2: 0  libsystem_kernel.dylib        0x3b1edc70 0x3b1da000 + 81008 1  libsystem_pthread.dylib      0x3b252c1f 0x3b252000 + 3103 2  libsystem_pthread.dylib      0x3b252ad8 0x3b252000 + 2776 Thread 3 name:  WebThread Thread 3: 0  libsystem_kernel.dylib        0x3b1daa50 0x3b1da000 + 2640 1  libsystem_kernel.dylib        0x3b1da849 0x3b1da000 + 2121 2  CoreFoundation                0x3002d625 0x2ff8e000 + 652837 3  CoreFoundation                0x3002bd45 0x2ff8e000 + 646469 4  CoreFoundation                0x2ff96765 0x2ff8e000 + 34661 5  CoreFoundation                0x2ff96547 0x2ff8e000 + 34119 6  WebCore                      0x38531c49 0x38473000 + 781385 7  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 8  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 9  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 4 name:  com.apple.NSURLConnectionLoader Thread 4: 0  libsystem_kernel.dylib        0x3b1daa50 0x3b1da000 + 2640 1  libsystem_kernel.dylib        0x3b1da849 0x3b1da000 + 2121 2  CoreFoundation                0x3002d625 0x2ff8e000 + 652837 3  CoreFoundation                0x3002bd45 0x2ff8e000 + 646469 4  CoreFoundation                0x2ff96765 0x2ff8e000 + 34661 5  CoreFoundation                0x2ff96547 0x2ff8e000 + 34119 6  Foundation                    0x309d623d 0x3097e000 + 361021 7  Foundation                    0x30a4ba0b 0x3097e000 + 842251 8  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 9  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 10  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 5 name:  JavaScriptCore::BlockFree Thread 5: 0  libsystem_kernel.dylib        0x3b1ecf2c 0x3b1da000 + 77612 1  libsystem_pthread.dylib      0x3b253f63 0x3b252000 + 8035 2  libsystem_pthread.dylib      0x3b254d9d 0x3b252000 + 11677 3  JavaScriptCore                0x30fc3589 0x30fb2000 + 71049 4  JavaScriptCore                0x30fc0bf1 0x30fb2000 + 60401 5  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 6  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 7  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 6 name:  JavaScriptCore::Marking Thread 6: 0  libsystem_kernel.dylib        0x3b1ecf2c 0x3b1da000 + 77612 1  libsystem_pthread.dylib      0x3b253f63 0x3b252000 + 8035 2  libsystem_pthread.dylib      0x3b254d9d 0x3b252000 + 11677 3  JavaScriptCore                0x31161ca3 0x30fb2000 + 1768611 4  JavaScriptCore                0x31161cfd 0x30fb2000 + 1768701 5  JavaScriptCore                0x30fc0bf1 0x30fb2000 + 60401 6  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 7  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 8  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 7 name:  com.apple.CFSocket.private Thread 7: 0  libsystem_kernel.dylib        0x3b1ed434 0x3b1da000 + 78900 1  CoreFoundation                0x3003151f 0x2ff8e000 + 668959 2  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 3  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 4  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 8: 0  libsystem_kernel.dylib        0x3b1edc70 0x3b1da000 + 81008 1  libsystem_pthread.dylib      0x3b252c1f 0x3b252000 + 3103 2  libsystem_pthread.dylib      0x3b252ad8 0x3b252000 + 2776 Thread 9: 0  libsystem_kernel.dylib        0x3b1edc70 0x3b1da000 + 81008 1  libsystem_pthread.dylib      0x3b252c1f 0x3b252000 + 3103 2  libsystem_pthread.dylib      0x3b252ad8 0x3b252000 + 2776 Thread 10: 0  libsystem_kernel.dylib        0x3b1daa50 0x3b1da000 + 2640 1  libsystem_kernel.dylib        0x3b1da849 0x3b1da000 + 2121 2  CoreFoundation                0x3002d625 0x2ff8e000 + 652837 3  CoreFoundation                0x3002bd45 0x2ff8e000 + 646469 4  CoreFoundation                0x2ff96765 0x2ff8e000 + 34661 5  CoreFoundation                0x2ffda387 0x2ff8e000 + 312199 6  CoreMotion                    0x306554fd 0x3061c000 + 234749 7  libsystem_pthread.dylib      0x3b254957 0x3b252000 + 10583 8  libsystem_pthread.dylib      0x3b2548c7 0x3b252000 + 10439 9  libsystem_pthread.dylib      0x3b252ae4 0x3b252000 + 2788 Thread 11: 0  libsystem_kernel.dylib        0x3b1edc70 0x3b1da000 + 81008 1  libsystem_pthread.dylib      0x3b252c1f 0x3b252000 + 3103 2  libsystem_pthread.dylib      0x3b252ad8 0x3b252000 + 2776 Thread 12: 0  libsystem_kernel.dylib        0x3b1edc70 0x3b1da000 + 81008 1  libsystem_pthread.dylib      0x3b252c1f 0x3b252000 + 3103 2  libsystem_pthread.dylib      0x3b252ad8 0x3b252000 + 2776 Thread 1 crashed with ARM Thread State (32-bit):     r0: 0x00000004    r1: 0x00000000      r2: 0x00000001      r3: 0x00a2f6f0     r4: 0x00000001    r5: 0x00000000      r6: 0x00000000      r7: 0x00a2f760     r8: 0x3cebe250    r9: 0xffffffff    r10: 0x00000000    r11: 0x3cebdec0     ip: 0x00000171    sp: 0x00a2f6d0      lr: 0x3b129055      pc: 0x3b1da804   cpsr: 0x20000010 Binary Images: 0x9f000 - 0x726fff PhotoVault armv7  /var/mobile/Applications/F8A6D5B8-23B4-4DE0-8FB4-49FD88A8CDD9/PhotoVault.app/Ph otoVault 0x9f1000 - 0x9f2fff GeoServices armv7s  /System/Library/AccessibilityBundles/GeoServices.axbundle/GeoServices 0x2bcc000 - 0x2bccfff iAdFramework armv7s  /System/Library/AccessibilityBundles/iAdFramework.axbundle/iAdFramework 0x2cc4000 - 0x2d3efff UIKit armv7s  /System/Library/AccessibilityBundles/UIKit.axbundle/UIKit 0x2dd0000 - 0x2dd6fff AddressBookUIFramework armv7s  /System/Library/AccessibilityBundles/AddressBookUIFramework.axbundle/AddressBoo kUIFramework 0x2de4000 - 0x2de9fff MapKitFramework armv7s  /System/Library/AccessibilityBundles/MapKitFramework.axbundle/MapKitFramework 0x2df4000 - 0x2df9fff PassKitFramework armv7s  /System/Library/AccessibilityBundles/PassKitFramework.axbundle/PassKitFramework 0x2e04000 - 0x2e0afff MessageUIFramework armv7s  /System/Library/AccessibilityBundles/MessageUIFramework.axbundle/MessageUIFrame work 0x2e18000 - 0x2e18fff TwitterFramework armv7s  /System/Library/AccessibilityBundles/TwitterFramework.axbundle/TwitterFramework 0x2e1b000 - 0x2e1cfff StoreKitFramework armv7s  /System/Library/AccessibilityBundles/StoreKitFramework.axbundle/StoreKitFramewo rk 0x2e20000 - 0x2e27fff MediaPlayerFramework armv7s  /System/Library/AccessibilityBundles/MediaPlayerFramework.axbundle/MediaPlayerF ramework 0x2e35000 - 0x2e41fff StoreKitUI armv7s  /System/Library/AccessibilityBundles/StoreKitUI.axbundle/StoreKitUI 0x2e5a000 - 0x2e5ffff PreferencesFramework armv7s  /System/Library/AccessibilityBundles/PreferencesFramework.axbundle/PreferencesF ramework 0x2e68000 - 0x2e69fff QuickLook armv7s  /System/Library/AccessibilityBundles/QuickLook.axbundle/QuickLook 0x2e6c000 - 0x2e6dfff AccountsUI armv7s  /System/Library/AccessibilityBundles/AccountsUI.axbundle/AccountsUI 0x2e71000 - 0x2e71fff iTunesStoreFramework armv7s  /System/Library/AccessibilityBundles/iTunesStoreFramework.axbundle/iTunesStoreF ramework 0x2e74000 - 0x2e7ffff EventKitUIFramework armv7s  /System/Library/AccessibilityBundles/EventKitUIFramework.axbundle/EventKitUIFra mework 0x2e91000 - 0x2e98fff iTunesStoreUIFramework armv7s  /System/Library/AccessibilityBundles/iTunesStoreUIFramework.axbundle/iTunesStor eUIFramework 0x30ab000 - 0x30adfff SocialFramework armv7s  /System/Library/AccessibilityBundles/SocialFramework.axbundle/SocialFramework 0x30b4000 - 0x30ccfff VectorKit armv7s  /System/Library/AccessibilityBundles/VectorKit.axbundle/VectorKit 0x367e000 - 0x3693fff PhotoLibraryFramework armv7s  /System/Library/AccessibilityBundles/PhotoLibraryFramework.axbundle/PhotoLibrar yFramework 0x36b5000 - 0x36bcfff PhotosUIFramework armv7s  /System/Library/AccessibilityBundles/PhotosUIFramework.axbundle/PhotosUIFramewo rk 0x2be03000 - 0x2be26fff dyld armv7s  /usr/lib/dyld 0x2ec94000 - 0x2ec98fff AccessibilitySettingsLoader armv7s  /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/Accessi bilitySettingsLoader 0x2eee7000 - 0x2efe9fff AVFoundation armv7s  /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x2efea000 - 0x2f012fff libAVFAudio.dylib armv7s  /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib 0x2f013000 - 0x2f013fff Accelerate armv7s  /System/Library/Frameworks/Accelerate.framework/Accelerate 0x2f014000 - 0x2f01cfff libCGInterfaces.dylib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Res ources/libCGInterfaces.dylib 0x2f01d000 - 0x2f1eafff vImage armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vIm age 0x2f1eb000 - 0x2f2cdfff libBLAS.dylib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib BLAS.dylib 0x2f2ce000 - 0x2f586fff libLAPACK.dylib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib LAPACK.dylib 0x2f587000 - 0x2f5f5fff libvDSP.dylib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vDSP.dylib 0x2f5f6000 - 0x2f608fff libvMisc.dylib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vMisc.dylib 0x2f609000 - 0x2f609fff vecLib armv7s  /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vec Lib 0x2f60a000 - 0x2f62afff Accounts armv7s  /System/Library/Frameworks/Accounts.framework/Accounts 0x2f62b000 - 0x2f62bfff AdSupport armv7s  /System/Library/Frameworks/AdSupport.framework/AdSupport 0x2f62c000 - 0x2f693fff AddressBook armv7s  /System/Library/Frameworks/AddressBook.framework/AddressBook 0x2f694000 - 0x2f7aafff AddressBookUI armv7s  /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI 0x2f7ab000 - 0x2f7bcfff AssetsLibrary armv7s  /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x2f901000 - 0x2fc1dfff AudioToolbox armv7s  /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x2fc1e000 - 0x2fd24fff CFNetwork armv7s  /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x2fd25000 - 0x2fd80fff CoreAudio armv7s  /System/Library/Frameworks/CoreData.framework/CoreData 0x2ff8e000 - 0x300d1ff0 CoreFoundation armv7s  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x300d2000 - 0x301f6fff CoreGraphics armv7s  /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x301f8000 - 0x30233fff libCGFreetype.A.dylib armv7s  /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dyl ib 0x30235000 - 0x3023ffff libCMSBuiltin.A.dylib armv7s  /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dyl ib 0x30424000 - 0x3043efff libRIP.A.dylib armv7s  /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib 0x3043f000 - 0x30518fff CoreImage armv7s  /System/Library/Frameworks/CoreImage.framework/CoreImage 0x30519000 - 0x30568fff CoreLocation armv7s  /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x305a0000 - 0x3061bfff CoreMedia armv7s  /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x3061c000 - 0x306c4fff CoreMotion armv7s  /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x306c5000 - 0x3071dfff CoreTelephony armv7s  /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x3071e000 - 0x307aefff CoreText armv7s  /System/Library/Frameworks/CoreText.framework/CoreText 0x307af000 - 0x307befff CoreVideo armv7s  /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x307bf000 - 0x3087efff EventKit armv7s  /System/Library/Frameworks/EventKit.framework/EventKit 0x3087f000 - 0x3096dfff EventKitUI armv7s  /System/Library/Frameworks/EventKitUI.framework/EventKitUI 0x3097e000 - 0x30b68fff Foundation armv7s  /System/Library/Frameworks/Foundation.framework/Foundation 0x30b69000 - 0x30b93fff GLKit armv7s  /System/Library/Frameworks/GLKit.framework/GLKit 0x30d4a000 - 0x30da0fff IOKit armv7s  /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x30da1000 - 0x30fb1fff ImageIO armv7s  /System/Library/Frameworks/ImageIO.framework/ImageIO 0x30fb2000 - 0x311fdfff JavaScriptCore armv7s  /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x311fe000 - 0x312adfff MapKit armv7s  /System/Library/Frameworks/MapKit.framework/MapKit 0x312ae000 - 0x312b2fff MediaAccessibility armv7s  /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x312b3000 - 0x314b0fff MediaPlayer armv7s  /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x314b1000 - 0x317b7fff MediaToolbox armv7s  /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x317b8000 - 0x31863fff MessageUI armv7s  /System/Library/Frameworks/MessageUI.framework/MessageUI 0x31864000 - 0x318c7fff MobileCoreServices armv7s  /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x31923000 - 0x31956fff OpenAL armv7s  /System/Library/Frameworks/OpenAL.framework/OpenAL 0x3230f000 - 0x32317fff OpenGLES armv7s  /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x32319000 - 0x32319fff libCVMSPluginSupport.dylib armv7s  /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x3231e000 - 0x32321fff libCoreVMClient.dylib armv7s  /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x32322000 - 0x32329fff libGFXShared.dylib armv7s  /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x3232a000 - 0x3236afff libGLImage.dylib armv7s  /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x324bb000 - 0x32501fff PassKit armv7s  /System/Library/Frameworks/PassKit.framework/PassKit 0x32502000 - 0x32649fff QuartzCore armv7s  /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x3264a000 - 0x326a0fff QuickLook armv7s  /System/Library/Frameworks/QuickLook.framework/QuickLook 0x326a3000 - 0x326e5fff Security armv7s  /System/Library/Frameworks/Security.framework/Security 0x326e6000 - 0x3275dfff Social armv7s  /System/Library/Frameworks/Social.framework/Social 0x32820000 - 0x32834fff StoreKit armv7s  /System/Library/Frameworks/StoreKit.framework/StoreKit 0x32835000 - 0x32884fff SystemConfiguration armv7s  /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x32885000 - 0x32886fff Twitter armv7s  /System/Library/Frameworks/Twitter.framework/Twitter 0x32887000 - 0x32ffafff UIKit armv7s  /System/Library/Frameworks/UIKit.framework/UIKit 0x32ffb000 - 0x33049fff VideoToolbox armv7s  /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x3304a000 - 0x33079fff iAd armv7s  /System/Library/Frameworks/iAd.framework/iAd 0x3322c000 - 0x3324ffff ACTFramework armv7s  /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework 0x33282000 - 0x33287fff AITTarget armv7s  /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget 0x3328c000 - 0x33295fff AOSNotification armv7s  /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification 0x332c3000 - 0x332e2fff AXRuntime armv7s  /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime 0x332fb000 - 0x33345fff AccessibilityUtilities armv7s  /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/Accessibilit yUtilities 0x3339a000 - 0x333bafff AccountsUI armv7s  /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI 0x333bb000 - 0x333bffff AggregateDictionary armv7s  /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictio nary 0x3369d000 - 0x336b1fff AirTraffic armv7s  /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic 0x336b2000 - 0x339e3fff Altitude armv7s  /System/Library/PrivateFrameworks/Altitude.framework/Altitude 0x33a1b000 - 0x33a59fff AppSupport armv7s  /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x33a5a000 - 0x33a91fff AppleAccount armv7s  /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x33b3f000 - 0x33b4ffff ApplePushService armv7s  /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x33b50000 - 0x33b56fff AppleSRP armv7s  /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP 0x33b83000 - 0x33b8ffff AssetsLibraryServices armv7s  /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibrary Services 0x33b90000 - 0x33bacfff AssistantServices armv7s  /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x33bd9000 - 0x33bdcfff BTLEAudioController armv7s  /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioContro ller 0x33bdd000 - 0x33c02fff BackBoardServices armv7s  /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x33c05000 - 0x33c0afff BluetoothManager armv7s  /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x33c0b000 - 0x33c2ffff Bom armv7s  /System/Library/PrivateFrameworks/Bom.framework/Bom 0x33cd0000 - 0x33cd8fff CaptiveNetwork armv7s  /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x33cd9000 - 0x33db5fff Celestial armv7s  /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x33db6000 - 0x33dc1fff CertInfo armv7s  /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo 0x33dc2000 - 0x33dc7fff CertUI armv7s  /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x33e93000 - 0x33eb3fff ChunkingLibrary armv7s  /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x33ebc000 - 0x33f00fff ColorSync armv7s  /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x33f04000 - 0x33f0ffff CommonUtilities armv7s  /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x33f10000 - 0x33f14fff CommunicationsFilter armv7s  /System/Library/PrivateFrameworks/CommunicationsFilter.framework/Communications Filter 0x33fa5000 - 0x33fa7fff ConstantClasses armv7s  /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x33fae000 - 0x33fe6fff ContentIndex armv7s  /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex 0x33fe7000 - 0x33fe9fff CoreAUC armv7s  /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x33ff6000 - 0x3404afff CoreDAV armv7s  /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x3408b000 - 0x3418afff CoreMediaStream armv7s  /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x3418b000 - 0x34223fff CorePDF armv7s  /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x34224000 - 0x3422efff CoreRecents armv7s  /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x3422f000 - 0x34262fff CoreRecognition armv7s  /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition 0x3427e000 - 0x3429cfff CoreServicesInternal armv7s  /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal 0x3429d000 - 0x3429efff CoreSurface armv7s  /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface 0x3429f000 - 0x34305fff CoreSymbolication armv7s  /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x34345000 - 0x343a1fff CoreUI armv7s  /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x343a2000 - 0x343f6fff CoreUtils armv7s  /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x343f7000 - 0x343fcfff CrashReporterSupport armv7s  /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterS upport 0x343fd000 - 0x34433fff DataAccess armv7s  /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess 0x345c8000 - 0x345defff DataAccessExpress armv7s  /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x345e8000 - 0x345fefff DataDetectorsCore armv7s  /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x34600000 - 0x34618fff DataDetectorsUI armv7s  /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI 0x34619000 - 0x3461dfff DataMigration armv7s  /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x34622000 - 0x34623fff DiagnosticLogCollection armv7s  /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticL ogCollection 0x34624000 - 0x3463dfff DictionaryServices armv7s  /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServic es 0x3465c000 - 0x34679fff EAP8021X armv7s  /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x34682000 - 0x3468dfff ExFAT armv7s  /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT 0x3468e000 - 0x3469efff FTAWD armv7s  /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD 0x3469f000 - 0x346a1fff FTClientServices armv7s  /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x346a2000 - 0x346ccfff FTServices armv7s  /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x346cd000 - 0x34ae8fff FaceCore armv7s  /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x34d0a000 - 0x34d16fff GenerationalStorage armv7s  /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalSto rage 0x34d17000 - 0x34ec3fff GeoServices armv7s  /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x34ec4000 - 0x34edafff GraphicsServices armv7s  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x34f6a000 - 0x34ff0fff HomeSharing armv7s  /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x34ff1000 - 0x34ffefff IAP armv7s  /System/Library/PrivateFrameworks/IAP.framework/IAP 0x35064000 - 0x35098fff IDS armv7s  /System/Library/PrivateFrameworks/IDS.framework/IDS 0x35108000 - 0x35119fff IDSFoundation armv7s  /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x3511a000 - 0x3517efff IMAVCore armv7s  /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore 0x3517f000 - 0x3520cfff IMCore armv7s  /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x3528c000 - 0x352e6fff IMFoundation armv7s  /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x352f0000 - 0x352f7fff IOMobileFramebuffer armv7s  /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebu ffer 0x352f8000 - 0x352fdfff IOSurface armv7s  /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface 0x352fe000 - 0x35349fff ImageCapture armv7s  /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture 0x3534a000 - 0x3534ffff IncomingCallFilter armv7s  /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilt er 0x3536f000 - 0x3537bfff Librarian armv7s  /System/Library/PrivateFrameworks/Librarian.framework/Librarian 0x3537c000 - 0x353b5fff MIME armv7s  /System/Library/PrivateFrameworks/MIME.framework/MIME 0x353b6000 - 0x353f3fff MMCS armv7s  /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x353fc000 - 0x35407fff MailServices armv7s  /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x3543b000 - 0x354b6fff ManagedConfiguration armv7s  /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfigu ration 0x354b7000 - 0x354b8fff Marco armv7s  /System/Library/PrivateFrameworks/Marco.framework/Marco 0x354b9000 - 0x35532fff MediaControlSender armv7s  /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSend er 0x35571000 - 0x3557efff MediaRemote armv7s  /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x3557f000 - 0x35597fff MediaStream armv7s  /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x355fc000 - 0x356d0fff Message armv7s  /System/Library/PrivateFrameworks/Message.framework/Message 0x356d5000 - 0x356d7fff MessageSupport armv7s  /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x356e3000 - 0x356effff MobileAsset armv7s  /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x35713000 - 0x3571bfff MobileBluetooth armv7s  /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x3572e000 - 0x35735fff MobileIcons armv7s  /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x35736000 - 0x35739fff MobileInstallation armv7s  /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallati on 0x3573a000 - 0x35744fff MobileKeyBag armv7s  /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x3576c000 - 0x3576ffff MobileSystemServices armv7s  /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemSe rvices 0x3578e000 - 0x35799fff MobileWiFi armv7s  /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x357d9000 - 0x35976fff MusicLibrary armv7s  /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x35a35000 - 0x35a3afff Netrb armv7s  /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x35a3b000 - 0x35a40fff NetworkStatistics armv7s  /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x35a41000 - 0x35a65fff Notes armv7s  /System/Library/PrivateFrameworks/Notes.framework/Notes 0x35a66000 - 0x35a68fff OAuth armv7s  /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x361bf000 - 0x361fafff OpenCL armv7s  /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL 0x36774000 - 0x3679ffff PassKitCore armv7s  /System/Library/PrivateFrameworks/PassKitCore.framework/PassKitCore 0x367a0000 - 0x367c7fff PersistentConnection armv7s  /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConn ection 0x367d1000 - 0x36913fff PhotoLibrary armv7s  /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary 0x36914000 - 0x36a8dfff PhotoLibraryServices armv7s  /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibrarySe rvices 0x36a8e000 - 0x36be2fff PhotosUI armv7s  /System/Library/PrivateFrameworks/PhotosUI.framework/PhotosUI 0x36be3000 - 0x36c16fff PhysicsKit armv7s  /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x36c17000 - 0x36c1afff PowerLog armv7s  /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x36c9c000 - 0x36d0cfff Preferences armv7s  /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x36d0d000 - 0x36d44fff PrintKit armv7s  /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit 0x36d48000 - 0x36dcefff ProofReader armv7s  /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x36dcf000 - 0x36dd9fff ProtocolBuffer armv7s  /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x36dda000 - 0x36e0afff PrototypeTools armv7s  /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x36e0b000 - 0x36e7ffff Quagga armv7s  /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x36e8b000 - 0x36f31fff Radio armv7s  /System/Library/PrivateFrameworks/Radio.framework/Radio 0x36fc0000 - 0x37045fff SAObjects armv7s  /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x37052000 - 0x37071fff ScreenReaderCore armv7s  /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore 0x37172000 - 0x37187fff SpringBoardServices armv7s  /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServ ices 0x3721c000 - 0x373cafff StoreKitUI armv7s  /System/Library/PrivateFrameworks/StoreKitUI.framework/StoreKitUI 0x373cb000 - 0x374edfff StoreServices armv7s  /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x3759d000 - 0x3759ffff TCC armv7s  /System/Library/PrivateFrameworks/TCC.framework/TCC 0x375f3000 - 0x37614fff TelephonyUtilities armv7s  /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtiliti es 0x37615000 - 0x37c3cfff KBLayouts_iPad.dylib armv7s  /System/Library/PrivateFrameworks/TextInput.framework/KBLayouts_iPad.dylib 0x37c3d000 - 0x37c70fff TextInput armv7s  /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x37c71000 - 0x37e67fff TextToSpeech armv7s  /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech 0x37eca000 - 0x37ef2fff UIAccessibility armv7s  /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility 0x37ef3000 - 0x37fb3fff UIFoundation armv7s  /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x37fb4000 - 0x37fcafff Ubiquity armv7s  /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity 0x37fcb000 - 0x37fcefff UserFS armv7s  /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x37fe4000 - 0x38244fff VectorKit armv7s  /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x383f8000 - 0x38415fff VoiceServices armv7s  /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x38438000 - 0x3845dfff WebBookmarks armv7s  /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x38473000 - 0x38f22fff WebCore armv7s  /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x38f23000 - 0x38fe3fff WebKit armv7s  /System/Library/PrivateFrameworks/WebKit.framework/WebKit 0x39127000 - 0x3912dfff XPCKit armv7s  /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x3912e000 - 0x39136fff XPCObjects armv7s  /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects 0x392ed000 - 0x39310fff iCalendar armv7s  /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x394ed000 - 0x39527fff iTunesStore armv7s  /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x39528000 - 0x396cafff iTunesStoreUI armv7s  /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI 0x3a131000 - 0x3a132fff libAXSafeCategoryBundle.dylib armv7s  /usr/lib/libAXSafeCategoryBundle.dylib 0x3a133000 - 0x3a138fff libAXSpeechManager.dylib armv7s  /usr/lib/libAXSpeechManager.dylib 0x3a139000 - 0x3a140fff libAccessibility.dylib armv7s  /usr/lib/libAccessibility.dylib 0x3a33d000 - 0x3a353fff libCRFSuite.dylib armv7s  /usr/lib/libCRFSuite.dylib 0x3a367000 - 0x3a368fff libMobileCheckpoint.dylib armv7s  /usr/lib/libMobileCheckpoint.dylib 0x3a369000 - 0x3a37efff libMobileGestalt.dylib armv7s  /usr/lib/libMobileGestalt.dylib 0x3a37f000 - 0x3a385fff libMobileGestaltExtensions.dylib armv7s  /usr/lib/libMobileGestaltExtensions.dylib 0x3a39c000 - 0x3a39dfff libSystem.B.dylib armv7s  /usr/lib/libSystem.B.dylib 0x3a40c000 - 0x3a43afff libTelephonyUtilDynamic.dylib armv7s  /usr/lib/libTelephonyUtilDynamic.dylib 0x3a53c000 - 0x3a55efff libarchive.2.dylib armv7s  /usr/lib/libarchive.2.dylib 0x3a589000 - 0x3a595fff libbsm.0.dylib armv7s  /usr/lib/libbsm.0.dylib 0x3a596000 - 0x3a59ffff libbz2.1.0.dylib armv7s  /usr/lib/libbz2.1.0.dylib 0x3a5a0000 - 0x3a5ebfff libc++.1.dylib armv7s  /usr/lib/libc++.1.dylib 0x3a5ec000 - 0x3a606fff libc++abi.dylib armv7s  /usr/lib/libc++abi.dylib 0x3a616000 - 0x3a61dfff libcupolicy.dylib armv7s  /usr/lib/libcupolicy.dylib 0x3a664000 - 0x3a751fff libiconv.2.dylib armv7s  /usr/lib/libiconv.2.dylib 0x3a752000 - 0x3a8a3fff libicucore.A.dylib armv7s  /usr/lib/libicucore.A.dylib 0x3a8ab000 - 0x3a8abfff liblangid.dylib armv7s  /usr/lib/liblangid.dylib 0x3a8ac000 - 0x3a8b6fff liblockdown.dylib armv7s  /usr/lib/liblockdown.dylib 0x3a8b7000 - 0x3a8ccfff liblzma.5.dylib armv7s  /usr/lib/liblzma.5.dylib 0x3abf8000 - 0x3ac0cfff libmis.dylib armv7s  /usr/lib/libmis.dylib 0x3ac35000 - 0x3add4fff libobjc.A.dylib armv7s  /usr/lib/libobjc.A.dylib 0x3ae9c000 - 0x3aeb1fff libresolv.9.dylib armv7s  /usr/lib/libresolv.9.dylib 0x3aeda000 - 0x3af71fff libsqlite3.dylib armv7s  /usr/lib/libsqlite3.dylib 0x3af72000 - 0x3afbffff libstdc++.6.dylib armv7s  /usr/lib/libstdc++.6.dylib 0x3afc0000 - 0x3afe6fff libtidy.A.dylib armv7s  /usr/lib/libtidy.A.dylib 0x3afea000 - 0x3b09dfff libxml2.2.dylib armv7s  /usr/lib/libxml2.2.dylib 0x3b09e000 - 0x3b0bffff libxslt.1.dylib armv7s  /usr/lib/libxslt.1.dylib 0x3b0c0000 - 0x3b0ccfff libz.1.dylib armv7s  /usr/lib/libz.1.dylib 0x3b0cd000 - 0x3b0d1fff libcache.dylib armv7s  /usr/lib/system/libcache.dylib 0x3b0d2000 - 0x3b0dafff libcommonCrypto.dylib armv7s  /usr/lib/system/libcommonCrypto.dylib 0x3b0db000 - 0x3b0dffff libcompiler_rt.dylib armv7s  /usr/lib/system/libcompiler_rt.dylib 0x3b0e0000 - 0x3b0e6fff libcopyfile.dylib armv7s  /usr/lib/system/libcopyfile.dylib 0x3b0e7000 - 0x3b120fff libcorecrypto.dylib armv7s  /usr/lib/system/libcorecrypto.dylib 0x3b121000 - 0x3b134fff libdispatch.dylib armv7s  /usr/lib/system/libdispatch.dylib 0x3b135000 - 0x3b136fff libdyld.dylib armv7s  /usr/lib/system/libdyld.dylib 0x3b137000 - 0x3b137fff libkeymgr.dylib armv7s  /usr/lib/system/libkeymgr.dylib 0x3b138000 - 0x3b13efff liblaunch.dylib armv7s  /usr/lib/system/liblaunch.dylib 0x3b13f000 - 0x3b142fff libmacho.dylib armv7s  /usr/lib/system/libmacho.dylib 0x3b143000 - 0x3b144fff libremovefile.dylib armv7s  /usr/lib/system/libremovefile.dylib 0x3b145000 - 0x3b152fff libsystem_asl.dylib armv7s  /usr/lib/system/libsystem_asl.dylib 0x3b153000 - 0x3b153fff libsystem_blocks.dylib armv7s  /usr/lib/system/libsystem_blocks.dylib 0x3b154000 - 0x3b1b6fff libsystem_c.dylib armv7s  /usr/lib/system/libsystem_c.dylib 0x3b1b7000 - 0x3b1b9fff libsystem_configuration.dylib armv7s  /usr/lib/system/libsystem_configuration.dylib 0x3b1ba000 - 0x3b1c0fff libsystem_dnssd.dylib armv7s  /usr/lib/system/libsystem_dnssd.dylib 0x3b1c1000 - 0x3b1d9fff libsystem_info.dylib armv7s  /usr/lib/system/libsystem_info.dylib 0x3b1da000 - 0x3b1f2fff libsystem_kernel.dylib armv7s  /usr/lib/system/libsystem_kernel.dylib 0x3b1f3000 - 0x3b211fff libsystem_m.dylib armv7s  /usr/lib/system/libsystem_m.dylib 0x3b212000 - 0x3b223fff libsystem_malloc.dylib armv7s  /usr/lib/system/libsystem_malloc.dylib 0x3b224000 - 0x3b244fff libsystem_network.dylib armv7s  /usr/lib/system/libsystem_network.dylib 0x3b245000 - 0x3b24cfff libsystem_notify.dylib armv7s  /usr/lib/system/libsystem_notify.dylib 0x3b24d000 - 0x3b251fff libsystem_platform.dylib armv7s  /usr/lib/system/libsystem_platform.dylib 0x3b252000 - 0x3b257fff libsystem_pthread.dylib armv7s  /usr/lib/system/libsystem_pthread.dylib 0x3b258000 - 0x3b259fff libsystem_sandbox.dylib armv7s  /usr/lib/system/libsystem_sandbox.dylib 0x3b25a000 - 0x3b25cfff libsystem_stats.dylib armv7s  /usr/lib/system/libsystem_stats.dylib 0x3b25d000 - 0x3b25dfff libunwind.dylib armv7s  /usr/lib/system/libunwind.dylib 0x3b25e000 - 0x3b278fff libxpc.dylib armv7s  /usr/lib/system/libxpc.dylib

    That's because you're not being hacked. Stop trying to interpret things you don't understand.

Maybe you are looking for

  • Vertical text with JTextPane?

    I am writing an application for displaying and editing sign language texts using Sutton SignWriting. It is a sign language writing system which enables the Deaf people to write to each other in their own language. And it is language-neutral, that mea

  • ' Character present in BEx queries and Workbooks

    Hi Guys, I've got a problem with the ' character when executing a query or workbook. This character only becomes apparent when clicking on a cell (appears in the formula bar in excel)  (usually apears in cells which does not have a value). This chara

  • I want to sync my folders, not replace them

    I work across multiple drives and sometimes there are saved things on my main drive that are not on my back up. ie: I have a folder named "Job 30" on my main drive and on my back up and my back up has a lot of the pieces my main drive does, just not

  • FSL-06002 Error 2 is occuring for WEB AS Java 640 when applying SP18 64-bit

    Hi, We are on SQL server 2005 ,  Windows server 2003 all 64-bit. We have installed WEB AS JAVA 6.40 successfully. We are trying to apply SP18 and running into error FSL-06002  Error 2 (The system cannot find the file specified. ) in execution of a 'C

  • How to parental control on airport extreme

    hi, I like to parental control on airport extreme router to limit the time for using network.please help me. Thanlks.