Debugging a game

Hi,
I was wondering if there are any special tools available for degugging a full screen game. When i began Java i was writing code for applications. When i was writing GUI's with Swing i could go through the code in a debugger and see what was happening to the GUI at every line of code.
I want to be able to do this with a game that takes over the full screen? Is this possible??
Thanks for reading,

im using the eclipse IDE by the way, is there a plugin maybe that anyone has used. (Also this may be a really stupid question, but have patience, im just beginning graphics programming in college!)

Similar Messages

  • Debugging AS3 - watch panel?

    Hi,
    I'm pretty new to AS3 so sorry if I ask anything dumb!
    Basically I'm trying to debug a game I'm developing, I always used
    the 'watch' panel to track the value of variables as the movie
    plays, but I can't find it in AS3. All I have is a 'variables'
    panel with absolutely everything in it which doesn't make it
    particularly usable. I must be missing something, but I can't see
    what!
    Regards
    Kevin

    Can you ensure that the SWF your are debugging is a release SWF?
    I've recently fixed a bug (which is not publicly available) where the same stacktrace was visible:
    A release SWF loads a debug SWF via SWFLoader/ModuleLoader, etc.
    Making sure the main container SWF is a debug one. That should fix this problem.
    (You can check whether a SWF is debug or not by opening it in nemo440 (google for that) and looking for debugfile / debugline opcodes.)
    Let me know how it works out.
    Cheers,
    Anirudh

  • I can't register Spore and now I can't play it either, it just wants me to debug it then won't. What have I done? This game has been a pain from the start.

    I bought this game some time ago but have never been able to register it. I even bought another one when they became cheaper but still can't register. I've tried every whichway and now it won't load either. It wants me to debug then it won't. I've tried trashing then reinstalling but no luck. The Spore creature creator won't play either. What did I do and is there a cleanup software Mac users can recommend? Thanks

    Carol,
    BTW please update your profile, you aren't using OS X 10.1.x. If you don't know what version you're using click the Apple Symbol in the upper left of this screen and select About this Mac. Once you know the version  you can update your profile by clicking Your Stuff on this screen (upper right) and you will see the Profile link. This is useful so we can help you troubleshoot problems.
    You can remove apps 3 ways.
    Inquire with the developer to see if they have an Uninstall routine. I suspect this game does not.
    Drag the app to the Trash
    Download and install an app such as AppCleaner. You can find it at www.macupdate.com and search for AppCleaner.

  • The PyramidVille game in Facebook is not loading.I have no problems with the other games.I'm receiving the message" Forbidden 403" CSRF Verification failed.Request aborted. More information is available with Debug= True

    The PyramidVille game in Facebook is not loading.I have no problems with the other games.I'm receiving the message" Forbidden 403" CSRF Verification failed.Request aborted. More information is available with Debug= True edit

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Starting game, debugging simple things: help =]

    Hi, this is my first post here and I've been playing around with Java for a little less than a year now. I'm trying to create a simple 2d game and need some help in the basics, such as the listeners and double-buffering.
    So far I've tried implementing keylistener and using another method but neither are working. When I type space, c = 32 for the scope of keyTyped(), but in the switch of the thread "game," c = 0. So I can't transition form the intro/splash screen into the game.
    Also when I skip to case 0, the double-buffering is horrible, it doesn't seem like there is any. On my computer the fillOval() and drawString() keep flickering.
    Thanks for the help.
    The following is my code in entirety (short but growing):
                TC STUDIOS PRESENTS
    ||_ \  ||- ]  ][  ||\/||   ][  ']['  ][  \\  //  ||--/
    ||__/  || \\    \\    //  //-\\    ||- ]  \\//   ||-
    ||               \\/\//  ADVANCED  || \\         ||__|
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.applet.*;
    <applet code="pwGUI" width = 500 height = 400>
    </applet>
    public class pwGUI extends Applet implements Runnable, MouseMotionListener //,KeyListener
         int gamestate;
         int mouseX, mouseY;
         char c;
         int pressedKey;
         Thread game, ai;
         //boolean splash;
         Image offscreen;
         Graphics buffer;
         public void init(){
              setBackground(Color.black);
              offscreen = createImage(500,400);
              buffer = offscreen.getGraphics();
    //          addKeyListener(this);
              addMouseMotionListener(this);
              //splash = true
              gamestate = -2;
              //load graphics
              resize(500,400);
         public void run(){
              //reset ints
              while(game!=null){
                   switch(gamestate){
                        case -2:
                             showStatus("game menu");
                             buffer.setColor(Color.red);
                             buffer.drawString("PRIMITIVE WARS ADVANCED", 150, 50);
                             buffer.drawString("Press SPACE to start",160,70);
                             //splash == false;
                             gamestate = -1;
                             break;
                        case -1:
    //                         showStatus(String.valueOf((int)c));
    //                         showStatus("start" + (char)0 + "end");
                             if(pressedKey == ' ')
                                  showStatus("c is: start" + (char)c + "end");
                             if(pressedKey == ' '){
                                  gamestate = 0;
                                  showStatus("gamestate");
                             break;
                        case 0: // Prepare for new game
                             //showStatus("Start game");
                             buffer.clearRect(0,0,500,400);
                             buffer.setColor(Color.red);
                             buffer.fillOval(mouseX, mouseY, 20,20);
                             buffer.drawString("Playing game",10,10);
                             break;
                   buffer = offscreen.getGraphics();
                   repaint();
         public void start(){
              showStatus("hello");
              if(game == null){
                   game = new Thread(this, "game");
                   game.start();
                   showStatus("Starting thread");
         public boolean keyDown(java.awt.Event evt, int key)
              pressedKey=key;
              return true;
         public boolean keyUp(java.awt.Event evt, int key)
              pressedKey=0;
              return true;
         /** Handle the key typed event from the text field. */
    /*     public void keyTyped(KeyEvent e) {
              char c = e.getKeyChar();
              showStatus(String.valueOf((int)c));
              //if(c == ' ')
              //     showStatus("typed space2");
         /** Handle the key pressed event from the text field. */
    /*     public void keyPressed(KeyEvent e) {
    //          showStatus(String.valueOf((int)c));
    //          showStatus("pressed");
    //          displayInfo(e, "KEY PRESSED: ");
         /** Handle the key released event from the text field. */
    /*     public void keyReleased(KeyEvent e) {
    //          showStatus(String.valueOf((int)c));
    //          displayInfo(e, "KEY RELEASED: ");
         public void mouseMoved(MouseEvent me){
              mouseX = me.getX();
              mouseY = me.getY();
              showStatus("moved " + mouseX + ", " + mouseY);
         public void mouseDragged(MouseEvent evt){
         public void loadMap(int mapnum){ //maybe instead param (string map)
         public void paint(Graphics g){
               g.drawImage(offscreen,0,0,this);
         public void update(Graphics g){
              paint(g);
    }

    You problem with keyTyped is scope problem.
    Because you declare char c inside keyTyped, it masks the declaration of char c that has class instance scope.
    All you need to do in keyTyped() is remove the char in front of the declaration to unmask the instance variable.
         public void keyTyped(KeyEvent e) {
    // should be          char c = e.getKeyChar();
              c = e.getKeyChar(); // this line uses c declared above
              showStatus(String.valueOf((int)c));
              //if(c == ' ')
              //     showStatus("typed space2");
         }� {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Play My java Game - Debug

    Hi there, you can download my game at :
    http://www.hypercreative.co.nz/Space%20Walker.zip
    I am having problems with it, for some reason, if the game doesnt play sound, the animation becomes waaay slower.
    And also, I have tried to add more asteriods in to make the game more challenging but the animation lags aswell.
    Also, the game speed is variable, everytime you run it goes at a different speed
    wtf!

    Mate no one here wants to donwload your game... if you have a problem with coding we can help you.
    MeTitus

  • Code::Blocks and gdb's Debug Attach to process; crash

    Hello!
    I've just started using Code::Blocks and very happy with it, but there is one problem: say I have a binary file with debugging symbols, then I try to attach to it using Code::Blocks (Debug>Attach to process); when I enter the PID and press "OK" button - IDE crashes.
    Here is the stacktrace of codeblocks itself from gdb:
    [user@host ~]$ gdb codeblocks
    GNU gdb (GDB) 7.4
    Copyright (C) 2012 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "i686-pc-linux-gnu".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>...
    Reading symbols from /usr/bin/codeblocks...(no debugging symbols found)...done.
    (gdb) run
    Starting program: /usr/bin/codeblocks
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/lib/libthread_db.so.1".
    [New Thread 0xb1881b40 (LWP 8035)]
    Initialize EditColourSet .....
    [New Thread 0xae6c4b40 (LWP 8036)]
    [New Thread 0xadec3b40 (LWP 8037)]
    [New Thread 0xad6c2b40 (LWP 8038)]
    [New Thread 0xacec1b40 (LWP 8039)]
    Initialize EditColourSet: done.
    Loading toolbar...
    OpenFilesList: loaded
    ThreadSearch: loaded
    lib_finder: loaded
    EnvVars: loaded
    CodeStat: loaded
    ClassWizard: loaded
    HeaderFixup: loaded
    BYOGames: loaded
    CodeSnippets: loaded
    cbDragScroll: loaded
    SymTab: loaded
    CB_Koders: loaded
    HelpPlugin: loaded
    Compiler: loaded
    Debugger: loaded
    wxSmithAui: loaded
    Autosave: loaded
    wxSmith: loaded
    wxSmithMime: loaded
    Profiler: loaded
    ScriptedWizard: loaded
    Valgrind: loaded
    RegExTestbed: loaded
    wxSmithContribItems: loaded
    CppCheck: loaded
    ToDoList: loaded
    [New Thread 0xab9b8b40 (LWP 8040)]
    CodeCompletion: loaded
    FilesExtensionHandler: loaded
    Cccc: loaded
    Exporter: loaded
    AStylePlugin: loaded
    AutoVersioning: loaded
    IncrementalSearch: loaded
    ProjectsImporter: loaded
    cbKeyBinder: loaded
    MouseSap: loaded
    BrowseTracker: loaded
    HexEditor: loaded
    copystrings: loaded
    Open files list plugin activated
    ThreadSearch plugin activated
    Library finder plugin activated
    Environment variables plugin activated
    Code statistics plugin activated
    Class wizard plugin activated
    Header Fixup plugin activated
    BYO Games plugin activated
    Code snippets plugin activated
    DragScroll plugin activated
    Symbol Table Plugin plugin activated
    Koders query plugin activated
    Help plugin plugin activated
    Added compiler "GNU GCC Compiler"
    Added compiler "Intel C/C++ Compiler"
    Added compiler "SDCC Compiler"
    Added compiler "Tiny C Compiler"
    Added compiler "GDC D Compiler"
    Added compiler "Digital Mars D Compiler"
    Added compiler "GNU ARM GCC Compiler"
    Added compiler "GNU AVR GCC Compiler"
    Added compiler "GNU GCC Compiler for PowerPC"
    Added compiler "GNU GCC Compiler for TriCore"
    Compiler plugin activated
    Debugger plugin activated
    wxSmith - Aui plugin activated
    Autosave plugin activated
    wxSmith plugin activated
    wxSmith - MIME plugin plugin activated
    Code profiler plugin activated
    Project wizard added for 'Empty project'
    Project wizard added for 'Console application'
    Project wizard added for 'D application'
    Project wizard added for 'FLTK project'
    Project wizard added for 'GLFW project'
    Project wizard added for 'GLUT project'
    Project wizard added for 'GTK+ project'
    Project wizard added for 'Irrlicht project'
    Project wizard added for 'Lightfeather project'
    Project wizard added for 'OpenGL project'
    Project wizard added for 'Ogre project'
    Project wizard added for 'Code::Blocks plugin'
    Project wizard added for 'QT4 project'
    Project wizard added for 'SDL project'
    Project wizard added for 'SFML project'
    Project wizard added for 'Static library'
    Project wizard added for 'Shared library'
    Project wizard added for 'wxWidgets project'
    Build-target wizard added for 'Console'
    Build-target wizard added for 'Static library'
    Build-target wizard added for 'wxWidgets'
    Project wizard added for 'ARM Project'
    Project wizard added for 'AVR Project'
    Project wizard added for 'TriCore Project'
    Project wizard added for 'PowerPC Project'
    File(s) wizard added for 'Empty file'
    File(s) wizard added for 'C/C++ source'
    File(s) wizard added for 'C/C++ header'
    Scripted wizard plugin activated
    Valgrind plugin activated
    Regular expressions testbed plugin activated
    wxSmith - Contrib Items plugin activated
    CppCheck plugin activated
    Todo List plugin activated
    Code completion plugin activated
    Files extension handler plugin activated
    Cccc plugin activated
    Source Exporter plugin activated
    Source code formatter (AStyle) plugin activated
    AutoVersioning plugin activated
    IncrementalSearch plugin activated
    Foreign projects importer plugin activated
    Keyboard shortcuts plugin activated
    MouseSap plugin activated
    BrowseTracker plugin activated
    HexEditor plugin activated
    Copy Strings to clipboard plugin activated
    Initializing plugins...
    [New Thread 0xaaddcb40 (LWP 8047)]
    Program received signal SIGSEGV, Segmentation fault.
    0xb75237aa in wxStringBase::operator=(wxStringBase const&) () from /usr/lib/libwx_baseu-2.8.so.0
    (gdb) backtrace
    #0 0xb75237aa in wxStringBase::operator=(wxStringBase const&) () from /usr/lib/libwx_baseu-2.8.so.0
    #1 0xabee2133 in DebuggerGDB::Debug() () from /usr/lib/codeblocks/plugins/libdebugger.so
    #2 0xabed197b in DebuggerGDB::OnAttachToProcess(wxCommandEvent&) () from /usr/lib/codeblocks/plugins/libdebugger.so
    #3 0xb74ce9f8 in wxAppConsole::HandleEvent(wxEvtHandler*, void (wxEvtHandler::*)(wxEvent&), wxEvent&) const () from /usr/lib/libwx_baseu-2.8.so.0
    #4 0xb755e59a in wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&, wxEvtHandler*, wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #5 0xb755e71b in wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) () from /usr/lib/libwx_baseu-2.8.so.0
    #6 0xb755ead1 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #7 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #8 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #9 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #10 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #11 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #12 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #13 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #14 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #15 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #16 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #17 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #18 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #19 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #20 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #21 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #22 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #23 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #24 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #25 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #26 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #27 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #28 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #29 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #30 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #31 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #32 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #33 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #34 0xb755ea61 in wxEvtHandler::ProcessEvent(wxEvent&) () from /usr/lib/libwx_baseu-2.8.so.0
    #35 0xb778cfb7 in ?? () from /usr/lib/libwx_gtk2u_core-2.8.so.0
    #36 0xb6a2016c in g_cclosure_marshal_VOID__VOID () from /usr/lib/libgobject-2.0.so.0
    #37 0xb6a1ec5c in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
    #38 0xb6a31a10 in ?? () from /usr/lib/libgobject-2.0.so.0
    #39 0xb6a3a7a7 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #40 0xb6a3a913 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #41 0xb6d7d6c5 in gtk_widget_activate () from /usr/lib/libgtk-x11-2.0.so.0
    #42 0xb6c5b3c7 in gtk_menu_shell_activate_item () from /usr/lib/libgtk-x11-2.0.so.0
    #43 0xb6c5b7d1 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
    #44 0xb6c4fb2d in ?? () from /usr/lib/libgtk-x11-2.0.so.0
    #45 0xb6c46762 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
    #46 0xb6a1d6ad in ?? () from /usr/lib/libgobject-2.0.so.0
    #47 0xb6a1ec5c in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
    #48 0xb6a31858 in ?? () from /usr/lib/libgobject-2.0.so.0
    #49 0xb6a3a5b9 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #50 0xb6a3a913 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #51 0xb6d7e743 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
    #52 0xb6c4492e in gtk_propagate_event () from /usr/lib/libgtk-x11-2.0.so.0
    #53 0xb6c44cc0 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0
    #54 0xb6ab9078 in ?? () from /usr/lib/libgdk-x11-2.0.so.0
    #55 0xb693907f in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
    #56 0xb69397b0 in ?? () from /usr/lib/libglib-2.0.so.0
    #57 0xb6939dbb in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
    #58 0xb6c43a5f in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0
    #59 0xb772ad8a in wxEventLoop::Run() () from /usr/lib/libwx_gtk2u_core-2.8.so.0
    #60 0xb77a6c1f in wxAppBase::MainLoop() () from /usr/lib/libwx_gtk2u_core-2.8.so.0
    #61 0xb77a64af in wxAppBase::OnRun() () from /usr/lib/libwx_gtk2u_core-2.8.so.0
    #62 0x08074566 in ?? ()
    #63 0xb7504ac6 in wxEntry(int&, wchar_t**) () from /usr/lib/libwx_baseu-2.8.so.0
    #64 0xb7504b66 in wxEntry(int&, char**) () from /usr/lib/libwx_baseu-2.8.so.0
    #65 0x0806c597 in ?? ()
    #66 0xb71db3d5 in __libc_start_main () from /lib/libc.so.6
    #67 0x08073d3d in ?? ()
    (gdb)
    Here is the XML file (debug report) that CodeBlocks gave to me after crash:
    <?xml version="1.0" encoding="utf-8"?>
    <report version="1.0" kind="exception">
    <system description="Linux 3.3.2-1-ARCH i686"/>
    <modules>
    <module path="/usr/bin/codeblocks" address="08048000" size="0008f000"/>
    <module path="/usr/bin/codeblocks" address="080dc000" size="00003000"/>
    <module path="[heap]" address="087ef000" size="0138e000"/>
    <module path="/usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf" address="aa53f000" size="0004d000"/>
    <module path="/usr/lib/codeblocks/plugins/libHexEditor.so" address="aa5f7000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libHexEditor.so" address="aa5fb000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libBrowseTracker.so" address="aa631000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libMouseSap.so" address="aa634000" size="0000a000"/>
    <module path="/usr/lib/codeblocks/plugins/libMouseSap.so" address="aa63f000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libkeybinder.so" address="aa676000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libprojectsimporter.so" address="aa679000" size="0002a000"/>
    <module path="/usr/lib/codeblocks/plugins/libprojectsimporter.so" address="aa6a4000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libAutoVersioning.so" address="aa6de000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libastyle.so" address="aa6e1000" size="0003c000"/>
    <module path="/usr/lib/codeblocks/plugins/libastyle.so" address="aa71e000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libexporter.so" address="aa7df000" size="00003000"/>
    <module path="/usr/lib/codeblocks/plugins/libdefaultmimehandler.so" address="aa7e8000" size="00015000"/>
    <module path="/usr/lib/codeblocks/plugins/libdefaultmimehandler.so" address="aa7ff000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libIncrementalSearch.so" address="aa902000" size="00013000"/>
    <module path="/usr/lib/codeblocks/plugins/libIncrementalSearch.so" address="aa916000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libcodecompletion.so" address="ab118000" size="000a7000"/>
    <module path="/usr/lib/codeblocks/plugins/libcodecompletion.so" address="ab1c2000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libtodo.so" address="ab1c4000" size="00023000"/>
    <module path="/usr/lib/codeblocks/plugins/libtodo.so" address="ab1e8000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libCppCheck.so" address="ab1eb000" size="0000c000"/>
    <module path="/usr/lib/codeblocks/plugins/libCppCheck.so" address="ab1f8000" size="00001000"/>
    <module path="/usr/lib/wxSmithContribItems/libwxchartctrl.so.0.0.1" address="ab220000" size="00001000" version="0.0.1"/>
    <module path="/usr/lib/wxSmithContribItems/libwxchartctrl.so.0.0.1" address="ab223000" size="00001000" version="0.0.1"/>
    <module path="/usr/lib/codeblocks/plugins/libwxsmithcontribitems.so" address="ab24b000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libRegExTestbed.so" address="ab24e000" size="0000d000"/>
    <module path="/usr/lib/codeblocks/plugins/libRegExTestbed.so" address="ab25c000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libscriptedwizard.so" address="ab2a9000" size="00004000"/>
    <module path="/usr/lib/codeblocks/plugins/libProfiler.so" address="ab2ae000" size="0001a000"/>
    <module path="/usr/lib/codeblocks/plugins/libProfiler.so" address="ab2c9000" size="00001000"/>
    <module path="/usr/lib/libwxsmithlib.so.0.0.1" address="ab554000" size="00015000" version="0.0.1"/>
    <module path="/usr/lib/codeblocks/plugins/libValgrind.so" address="ab581000" size="0000d000"/>
    <module path="/usr/lib/codeblocks/plugins/libValgrind.so" address="ab58f000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libautosave.so" address="ab59d000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libwxSmithAui.so" address="ab59f000" size="00049000"/>
    <module path="/usr/lib/codeblocks/plugins/libwxSmithAui.so" address="ab5e9000" size="00003000"/>
    <module path="/usr/lib/codeblocks/plugins/libdebugger.so" address="ab5ef000" size="00097000"/>
    <module path="/usr/lib/codeblocks/plugins/libdebugger.so" address="ab68c000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libcompiler.so" address="ab68e000" size="0011c000"/>
    <module path="/usr/lib/codeblocks/plugins/libcompiler.so" address="ab7ad000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libhelp_plugin.so" address="ab7b0000" size="0010d000"/>
    <module path="/usr/lib/codeblocks/plugins/libhelp_plugin.so" address="ab8be000" size="00004000"/>
    <module path="/usr/lib/codeblocks/plugins/libcb_koders.so" address="ab8c8000" size="00012000"/>
    <module path="/usr/lib/codeblocks/plugins/libcb_koders.so" address="ab8db000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libSymTab.so" address="ab8f6000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libdragscroll.so" address="ab8f8000" size="0001c000"/>
    <module path="/usr/lib/codeblocks/plugins/libdragscroll.so" address="ab916000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libcodesnippets.so" address="aba1a000" size="00007000"/>
    <module path="/usr/lib/codeblocks/plugins/libbyogames.so" address="aba25000" size="00027000"/>
    <module path="/usr/lib/codeblocks/plugins/libbyogames.so" address="aba4f000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libheaderfixup.so" address="abb0b000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libclasswizard.so" address="abb0e000" size="00018000"/>
    <module path="/usr/lib/codeblocks/plugins/libclasswizard.so" address="abb27000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libcodestat.so" address="abb3c000" size="00001000"/>
    <module path="/usr/lib/wxSmithContribItems/libwxflatnotebook.so.0.0.1" address="abb3e000" size="0003e000" version="0.0.1"/>
    <module path="/usr/lib/wxSmithContribItems/libwxflatnotebook.so.0.0.1" address="abb7e000" size="00002000" version="0.0.1"/>
    <module path="/usr/lib/codeblocks/plugins/liblib_finder.so" address="abbf0000" size="00003000"/>
    <module path="/usr/lib/codeblocks/plugins/libThreadSearch.so" address="abbf4000" size="0004a000"/>
    <module path="/usr/lib/codeblocks/plugins/libThreadSearch.so" address="abc41000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libopenfileslist.so" address="abc43000" size="00009000"/>
    <module path="/usr/lib/codeblocks/plugins/libopenfileslist.so" address="abc4d000" size="00001000"/>
    <module path="/usr/share/fonts/TTF/DejaVuSansMono.ttf" address="abcae000" size="00052000"/>
    <module path="/usr/lib/codeblocks/plugins/libcopystrings.so" address="abe00000" size="00007000"/>
    <module path="/usr/lib/codeblocks/plugins/libcopystrings.so" address="abe08000" size="00001000"/>
    <module path="/usr/lib/codeblocks/plugins/libenvvars.so" address="abe23000" size="00001000"/>
    <module path="/usr/lib/wxSmithContribItems/libwxcustombutton.so.0.0.1" address="abe25000" size="0000a000" version="0.0.1"/>
    <module path="/usr/lib/wxSmithContribItems/libwxcustombutton.so.0.0.1" address="abe30000" size="00001000" version="0.0.1"/>
    <module path="/usr/share/mime/mime.cache" address="ade35000" size="0001f000"/>
    <module path="/usr/lib/libgvfscommon.so.0.0.0" address="ade6a000" size="00001000" version="0.0.0"/>
    <module path="/usr/lib/codeblocks/plugins/libCccc.so" address="ade6c000" size="00007000"/>
    <module path="/usr/lib/codeblocks/plugins/libCccc.so" address="ade74000" size="00001000"/>
    <module path="/usr/share/mime/mime.cache" address="ade76000" size="0001f000"/>
    <module path="/usr/lib/gio/modules/libgvfsdbus.so" address="adebf000" size="00001000"/>
    <module path="/usr/local/share/icons/hicolor/icon-theme.cache" address="adec1000" size="00091000"/>
    <module path="/usr/share/icons/hicolor/icon-theme.cache" address="af2a9000" size="01357000"/>
    <module path="/usr/lib/codeblocks/plugins/libwxsmith.so" address="b0701000" size="00002000"/>
    <module path="/usr/lib/codeblocks/plugins/libwxsmith.so" address="b0704000" size="00001000"/>
    <module path="/usr/share/fonts/TTF/DejaVuSans.ttf" address="b0721000" size="000b0000"/>
    <module path="/usr/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo" address="b07d4000" size="00008000"/>
    <module path="/dev/shm/pulse-shm-3776743730" address="b0fdd000" size="04001000"/>
    <module path="/lib/libnsl-2.15.so" address="b4ff3000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libvorbisenc.so.2.0.9" address="b4ff7000" size="00166000" version="2.0.9"/>
    <module path="/usr/lib/libvorbisenc.so.2.0.9" address="b516e000" size="00001000" version="2.0.9"/>
    <module path="/usr/lib/libFLAC.so.8.2.0" address="b51be000" size="00001000" version="8.2.0"/>
    <module path="/usr/lib/libasyncns.so.0.3.1" address="b51c4000" size="00001000" version="0.3.1"/>
    <module path="/usr/lib/libsndfile.so.1.0.25" address="b51c6000" size="0006c000" version="1.0.25"/>
    <module path="/usr/lib/libsndfile.so.1.0.25" address="b5233000" size="00001000" version="1.0.25"/>
    <module path="/usr/lib/libdbus-1.so.3.5.9" address="b5238000" size="00048000" version="3.5.9"/>
    <module path="/usr/lib/libdbus-1.so.3.5.9" address="b5281000" size="00001000" version="3.5.9"/>
    <module path="/usr/lib/libpulsecommon-1.1.so" address="b52e7000" size="00001000" version="1.1"/>
    <module path="/usr/lib/libpulse.so.0.13.5" address="b52e9000" size="0004c000" version="0.13.5"/>
    <module path="/usr/lib/libpulse.so.0.13.5" address="b5336000" size="00001000" version="0.13.5"/>
    <module path="/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so" address="b533f000" size="00001000" version="xpm"/>
    <module path="/usr/lib/libudev.so.0.13.1" address="b5341000" size="0000e000" version="0.13.1"/>
    <module path="/usr/lib/libudev.so.0.13.1" address="b5350000" size="00001000" version="0.13.1"/>
    <module path="/usr/lib/libcanberra-0.28/libcanberra-pulse.so" address="b5360000" size="00006000" version="pulse"/>
    <module path="/usr/lib/libcanberra-0.28/libcanberra-pulse.so" address="b5367000" size="00001000" version="pulse"/>
    <module path="/var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le32d4.cache-3" address="b540d000" size="0002a000"/>
    <module path="/var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le32d4.cache-3" address="b5478000" size="00041000"/>
    <module path="/usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so" address="b5519000" size="0002f000" version="2.0/2.10.0/engines/libclearlooks"/>
    <module path="/usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so" address="b5549000" size="00001000" version="2.0/2.10.0/engines/libclearlooks"/>
    <module path="/usr/lib/libltdl.so.7.3.0" address="b5553000" size="00001000" version="7.3.0"/>
    <module path="/usr/lib/libtdb.so.1.2.9" address="b5555000" size="00011000" version="1.2.9"/>
    <module path="/usr/lib/libtdb.so.1.2.9" address="b5567000" size="00001000" version="1.2.9"/>
    <module path="/usr/lib/libogg.so.0.8.0" address="b556e000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libvorbis.so.0.4.6" address="b5599000" size="00001000" version="0.4.6"/>
    <module path="/usr/lib/libvorbisfile.so.3.3.5" address="b559b000" size="00008000" version="3.3.5"/>
    <module path="/usr/lib/libvorbisfile.so.3.3.5" address="b55a4000" size="00001000" version="3.3.5"/>
    <module path="/usr/lib/libcanberra.so.0.2.5" address="b55b5000" size="00001000" version="0.2.5"/>
    <module path="/usr/lib/libcanberra-gtk.so.0.1.8" address="b55b7000" size="00004000" version="0.1.8"/>
    <module path="/usr/lib/libcanberra-gtk.so.0.1.8" address="b55bc000" size="00001000" version="0.1.8"/>
    <module path="/lib/libnss_files-2.15.so" address="b55f3000" size="0000b000" version="2.15"/>
    <module path="/lib/libnss_files-2.15.so" address="b55ff000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libjson.so.0.0.1" address="b5603000" size="00007000" version="0.0.1"/>
    <module path="/usr/lib/libjson.so.0.0.1" address="b560b000" size="00001000" version="0.0.1"/>
    <module path="/var/cache/fontconfig/a98d8961fa319a64d3cfd8640c79e62d-le32d4.cache-3" address="b561c000" size="00007000"/>
    <module path="/usr/share/locale/ru/LC_MESSAGES/libc.mo" address="b5629000" size="0002e000"/>
    <module path="/usr/lib/locale/locale-archive" address="b5788000" size="00200000"/>
    <module path="/lib/libbz2.so.1.0.6" address="b598e000" size="0000f000" version="1.0.6"/>
    <module path="/lib/libresolv-2.15.so" address="b599e000" size="00013000" version="2.15"/>
    <module path="/lib/libresolv-2.15.so" address="b59b2000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libpixman-1.so.0.24.4" address="b59b5000" size="00093000" version="0.24.4"/>
    <module path="/usr/lib/libpixman-1.so.0.24.4" address="b5a4c000" size="00001000" version="0.24.4"/>
    <module path="/usr/lib/libfreetype.so.6.8.1" address="b5ae4000" size="00004000" version="6.8.1"/>
    <module path="/usr/lib/libXdmcp.so.6.0.0" address="b5ae9000" size="00005000" version="6.0.0"/>
    <module path="/usr/lib/libXdmcp.so.6.0.0" address="b5aef000" size="00001000" version="6.0.0"/>
    <module path="/usr/lib/libXau.so.6.0.0" address="b5af1000" size="00002000" version="6.0.0"/>
    <module path="/usr/lib/libXau.so.6.0.0" address="b5af4000" size="00001000" version="6.0.0"/>
    <module path="/usr/lib/liblzma.so.5.0.3" address="b5b1a000" size="00001000" version="5.0.3"/>
    <module path="/usr/lib/libuuid.so.1.3.0" address="b5b1c000" size="00004000" version="1.3.0"/>
    <module path="/usr/lib/libuuid.so.1.3.0" address="b5b21000" size="00001000" version="1.3.0"/>
    <module path="/usr/lib/libICE.so.6.3.0" address="b5b38000" size="00001000" version="6.3.0"/>
    <module path="/usr/lib/libffi.so.5.0.10" address="b5b3c000" size="00005000" version="5.0.10"/>
    <module path="/usr/lib/libffi.so.5.0.10" address="b5b42000" size="00001000" version="5.0.10"/>
    <module path="/lib/librt-2.15.so" address="b5b44000" size="00007000" version="2.15"/>
    <module path="/lib/librt-2.15.so" address="b5b4c000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libpcre.so.1.0.0" address="b5ba7000" size="00001000" version="1.0.0"/>
    <module path="/usr/lib/libpcre.so.1.0.0" address="b5ba9000" size="00001000" version="1.0.0"/>
    <module path="/usr/lib/libXdamage.so.1.1.0" address="b5bac000" size="00001000" version="1.1.0"/>
    <module path="/usr/lib/libXcomposite.so.1.0.0" address="b5bae000" size="00002000" version="1.0.0"/>
    <module path="/usr/lib/libXcomposite.so.1.0.0" address="b5bb1000" size="00001000" version="1.0.0"/>
    <module path="/usr/lib/libXcursor.so.1.0.2" address="b5bbb000" size="00001000" version="1.0.2"/>
    <module path="/usr/lib/libXrandr.so.2.2.0" address="b5bbe000" size="00007000" version="2.2.0"/>
    <module path="/usr/lib/libXrandr.so.2.2.0" address="b5bc6000" size="00001000" version="2.2.0"/>
    <module path="/usr/lib/libXi.so.6.1.0" address="b5bd5000" size="00001000" version="6.1.0"/>
    <module path="/usr/lib/libXrender.so.1.3.0" address="b5bd7000" size="00009000" version="1.3.0"/>
    <module path="/usr/lib/libXrender.so.1.3.0" address="b5be1000" size="00001000" version="1.3.0"/>
    <module path="/usr/lib/libXext.so.6.4.0" address="b5bf3000" size="00001000" version="6.4.0"/>
    <module path="/usr/lib/libgmodule-2.0.so.0.3000.2" address="b5bf5000" size="00003000" version="0.3000.2"/>
    <module path="/usr/lib/libgmodule-2.0.so.0.3000.2" address="b5bf9000" size="00001000" version="0.3000.2"/>
    <module path="/usr/lib/libfontconfig.so.1.4.4" address="b5bfb000" size="00033000" version="1.4.4"/>
    <module path="/usr/lib/libfontconfig.so.1.4.4" address="b5c2f000" size="00001000" version="1.4.4"/>
    <module path="/usr/lib/libpangoft2-1.0.so.0.2904.0" address="b5c5c000" size="00001000" version="0.2904.0"/>
    <module path="/usr/lib/libgio-2.0.so.0.3000.2" address="b5c5e000" size="00140000" version="0.3000.2"/>
    <module path="/usr/lib/libgio-2.0.so.0.3000.2" address="b5da0000" size="00001000" version="0.3000.2"/>
    <module path="/usr/lib/libcairo.so.2.11000.2" address="b5da2000" size="000b4000" version="2.11000.2"/>
    <module path="/usr/lib/libcairo.so.2.11000.2" address="b5e57000" size="00001000" version="2.11000.2"/>
    <module path="/usr/lib/libatk-1.0.so.0.20209.1" address="b5e5a000" size="0001e000" version="0.20209.1"/>
    <module path="/usr/lib/libatk-1.0.so.0.20209.1" address="b5e7a000" size="00001000" version="0.20209.1"/>
    <module path="/usr/lib/libXfixes.so.3.1.0" address="b5e7c000" size="00004000" version="3.1.0"/>
    <module path="/usr/lib/libXfixes.so.3.1.0" address="b5e81000" size="00001000" version="3.1.0"/>
    <module path="/usr/lib/libpangocairo-1.0.so.0.2904.0" address="b5e8d000" size="00001000" version="0.2904.0"/>
    <module path="/usr/lib/libxcb.so.1.1.0" address="b5e8f000" size="00020000" version="1.1.0"/>
    <module path="/usr/lib/libxcb.so.1.1.0" address="b5eb0000" size="00001000" version="1.1.0"/>
    <module path="/usr/lib/libexpat.so.1.6.0" address="b5ed7000" size="00001000" version="1.6.0"/>
    <module path="/usr/lib/libexpat.so.1.6.0" address="b5eda000" size="00001000" version="1.6.0"/>
    <module path="/usr/lib/libz.so.1.2.6" address="b5ef0000" size="00001000" version="1.2.6"/>
    <module path="/usr/lib/libtiff.so.5.0.6" address="b5ef3000" size="0006f000" version="5.0.6"/>
    <module path="/usr/lib/libtiff.so.5.0.6" address="b5f63000" size="00002000" version="5.0.6"/>
    <module path="/usr/lib/libjpeg.so.8.0.2" address="b5f66000" size="00045000" version="8.0.2"/>
    <module path="/usr/lib/libjpeg.so.8.0.2" address="b5fac000" size="00001000" version="8.0.2"/>
    <module path="/usr/lib/libpng15.so.15.10.0" address="b5fbd000" size="0002e000" version="15.10.0"/>
    <module path="/usr/lib/libpng15.so.15.10.0" address="b5fec000" size="00001000" version="15.10.0"/>
    <module path="/usr/lib/libSM.so.6.0.1" address="b5ff4000" size="00001000" version="6.0.1"/>
    <module path="/usr/lib/libXxf86vm.so.1.0.0" address="b5ff6000" size="00004000" version="1.0.0"/>
    <module path="/usr/lib/libXxf86vm.so.1.0.0" address="b5ffb000" size="00001000" version="1.0.0"/>
    <module path="/usr/lib/libXinerama.so.1.0.0" address="b5ffe000" size="00001000" version="1.0.0"/>
    <module path="/usr/lib/libgthread-2.0.so.0.3000.2" address="b6001000" size="00004000" version="0.3000.2"/>
    <module path="/usr/lib/libgthread-2.0.so.0.3000.2" address="b6006000" size="00001000" version="0.3000.2"/>
    <module path="/usr/lib/libpango-1.0.so.0.2904.0" address="b604f000" size="00001000" version="0.2904.0"/>
    <module path="/usr/lib/libglib-2.0.so.0.3000.2" address="b6051000" size="000f6000" version="0.3000.2"/>
    <module path="/usr/lib/libglib-2.0.so.0.3000.2" address="b6148000" size="00001000" version="0.3000.2"/>
    <module path="/usr/lib/libgdk_pixbuf-2.0.so.0.2400.1" address="b616b000" size="00001000" version="0.2400.1"/>
    <module path="/usr/lib/libgobject-2.0.so.0.3000.2" address="b616d000" size="0004c000" version="0.3000.2"/>
    <module path="/usr/lib/libgobject-2.0.so.0.3000.2" address="b61ba000" size="00001000" version="0.3000.2"/>
    <module path="/usr/lib/libgdk-x11-2.0.so.0.2400.10" address="b61bc000" size="000ab000" version="0.2400.10"/>
    <module path="/usr/lib/libgdk-x11-2.0.so.0.2400.10" address="b6269000" size="00001000" version="0.2400.10"/>
    <module path="/usr/lib/libgtk-x11-2.0.so.0.2400.10" address="b66be000" size="00001000" version="0.2400.10"/>
    <module path="/usr/lib/libgtk-x11-2.0.so.0.2400.10" address="b66c3000" size="00002000" version="0.2400.10"/>
    <module path="/lib/libm-2.15.so" address="b66c7000" size="0002a000" version="2.15"/>
    <module path="/lib/libm-2.15.so" address="b66f2000" size="00001000" version="2.15"/>
    <module path="/lib/libdl-2.15.so" address="b66f6000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libX11.so.6.3.0" address="b66f8000" size="00132000" version="6.3.0"/>
    <module path="/usr/lib/libX11.so.6.3.0" address="b682b000" size="00001000" version="6.3.0"/>
    <module path="/usr/lib/libwx_baseu_xml-2.8.so.0.8.0" address="b682f000" size="00008000" version="0.8.0"/>
    <module path="/usr/lib/libwx_baseu_xml-2.8.so.0.8.0" address="b6838000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_richtext-2.8.so.0.8.0" address="b683a000" size="000da000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_richtext-2.8.so.0.8.0" address="b691a000" size="00001000" version="0.8.0"/>
    <module path="/lib/libc-2.15.so" address="b691d000" size="0019b000" version="2.15"/>
    <module path="/lib/libc-2.15.so" address="b6ab9000" size="00002000" version="2.15"/>
    <module path="/usr/lib/libgcc_s.so.1" address="b6abf000" size="0001c000" version="1"/>
    <module path="/usr/lib/libstdc++.so.6.0.17" address="b6adc000" size="000dc000" version="6.0.17"/>
    <module path="/usr/lib/libstdc++.so.6.0.17" address="b6bbc000" size="00001000" version="6.0.17"/>
    <module path="/lib/libpthread-2.15.so" address="b6bc4000" size="00017000" version="2.15"/>
    <module path="/lib/libpthread-2.15.so" address="b6bdc000" size="00001000" version="2.15"/>
    <module path="/usr/lib/libwx_baseu-2.8.so.0.8.0" address="b6be0000" size="00136000" version="0.8.0"/>
    <module path="/usr/lib/libwx_baseu-2.8.so.0.8.0" address="b6d17000" size="00004000" version="0.8.0"/>
    <module path="/usr/lib/libwx_baseu_net-2.8.so.0.8.0" address="b6d26000" size="00029000" version="0.8.0"/>
    <module path="/usr/lib/libwx_baseu_net-2.8.so.0.8.0" address="b6d50000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_core-2.8.so.0.8.0" address="b6d52000" size="002f7000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_core-2.8.so.0.8.0" address="b704a000" size="00026000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_adv-2.8.so.0.8.0" address="b707d000" size="000ab000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_adv-2.8.so.0.8.0" address="b7130000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_html-2.8.so.0.8.0" address="b7133000" size="00089000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_html-2.8.so.0.8.0" address="b71c1000" size="00002000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_qa-2.8.so.0.8.0" address="b71c4000" size="00019000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_qa-2.8.so.0.8.0" address="b71de000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_xrc-2.8.so.0.8.0" address="b71e0000" size="0007a000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_xrc-2.8.so.0.8.0" address="b725d000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_aui-2.8.so.0.8.0" address="b725f000" size="0005d000" version="0.8.0"/>
    <module path="/usr/lib/libwx_gtk2u_aui-2.8.so.0.8.0" address="b72bf000" size="00001000" version="0.8.0"/>
    <module path="/usr/lib/libcodeblocks.so.0.0.1" address="b72c1000" size="00431000" version="0.0.1"/>
    <module path="/usr/lib/libcodeblocks.so.0.0.1" address="b7703000" size="00005000" version="0.0.1"/>
    <module path="/usr/local/share/mime/mime.cache" address="b770e000" size="00001000"/>
    <module path="/lib/libutil-2.15.so" address="b7711000" size="00001000" version="2.15"/>
    <module path="/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so" address="b7713000" size="00005000" version="module"/>
    <module path="/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so" address="b7719000" size="00001000" version="module"/>
    <module path="/usr/lib/gconv/UTF-32.so" address="b7733000" size="00002000" version="32"/>
    <module path="/usr/lib/gconv/UTF-32.so" address="b7736000" size="00001000" version="32"/>
    <module path="[vdso]" address="b7738000" size="00001000"/>
    <module path="/lib/ld-2.15.so" address="b7759000" size="00001000" version="2.15"/>
    </modules>
    <stack>
    <frame level="0" function="wxFatalSignalHandler" offset="00000023"/>
    <frame level="1"/>
    <frame level="2" function="wxStringBase::operator=(wxStringBase const&amp;)" offset="0000001a"/>
    <frame level="3" function="DebuggerGDB::Debug()" offset="000001f3"/>
    <frame level="4" function="DebuggerGDB::OnAttachToProcess(wxCommandEvent&amp;)" offset="0000014b"/>
    <frame level="5" function="wxAppConsole::HandleEvent(wxEvtHandler*, void (wxEvtHandler::*)(wxEvent&amp;), wxEvent&amp;) const" offset="00000028"/>
    <frame level="6" function="wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&amp;, wxEvtHandler*, wxEvent&amp;)" offset="0000007a"/>
    <frame level="7" function="wxEventHashTable::HandleEvent(wxEvent&amp;, wxEvtHandler*)" offset="000000ab"/>
    <frame level="8" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="000000e1"/>
    <frame level="9" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="10" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="11" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="12" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="13" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="14" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="15" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="16" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="17" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="18" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="19" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="20" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="21" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="22" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="23" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="24" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="25" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="26" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="27" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="28" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="29" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="30" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="31" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="32" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="33" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="34" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="35" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="36" function="wxEvtHandler::ProcessEvent(wxEvent&amp;)" offset="00000071"/>
    <frame level="37"/>
    <frame level="38" function="g_cclosure_marshal_VOID__VOID" offset="0000008c"/>
    <frame level="39" function="g_closure_invoke" offset="000001ac"/>
    <frame level="40"/>
    <frame level="41" function="g_signal_emit_valist" offset="00000777"/>
    <frame level="42" function="g_signal_emit" offset="00000033"/>
    <frame level="43" function="gtk_widget_activate" offset="00000095"/>
    <frame level="44" function="gtk_menu_shell_activate_item" offset="00000117"/>
    <frame level="45"/>
    <frame level="46"/>
    <frame level="47"/>
    <frame level="48"/>
    <frame level="49" function="g_closure_invoke" offset="000001ac"/>
    <frame level="50"/>
    <frame level="51" function="g_signal_emit_valist" offset="00000589"/>
    <frame level="52" function="g_signal_emit" offset="00000033"/>
    <frame level="53"/>
    <frame level="54" function="gtk_propagate_event" offset="000000ce"/>
    <frame level="55" function="gtk_main_do_event" offset="000002c0"/>
    <frame level="56"/>
    <frame level="57" function="g_main_context_dispatch" offset="000001df"/>
    <frame level="58"/>
    <frame level="59" function="g_main_loop_run" offset="0000014b"/>
    <frame level="60" function="gtk_main" offset="000000af"/>
    <frame level="61" function="wxEventLoop::Run()" offset="0000004a"/>
    <frame level="62" function="wxAppBase::MainLoop()" offset="0000004f"/>
    <frame level="63" function="wxAppBase::OnRun()" offset="0000001f"/>
    <frame level="64"/>
    </stack>
    </report>
    I've just wrote a simple helloworld in C, added getchar() to wait, compiled it with "-g" flag and tried to attach to it with this IDE. Tried on 2 machines, different binaries: same result - IDE crashes. Am I doing something wrong, or this is a problem with WxWidgets/Code::Blocks?
    My packages are: wxgtk 2.8.12.1-3, codeblocks 10.05-2 and gdb 7.4-1.
    Last edited by dontbugme (2012-04-24 02:19:16)

    Are you running on an x86_64 architecture?  If so I have a pacman Code::Blocks package which is the current SVN I could upload somewhere for you..
    If not, check: Here to download and make the latest SVN version.  There is a patch you have to apply on that page and also you need to make the build using the makepkg "-fpermissive" option.
    Why do you want this SVN version (version 7932)?  Well, it's current as of April 14 this month.  The C::B 10.05 version is 2010, 5th month.  So way out of date.  There have been no official builds since then so you want to be using SVN until there is.
    I don't know if using the SVN version would fix your issue but even if not: it has a host of other enhancements and fixes.

  • Error #1010 on drag n drop game. Please Help

    Hello everyone,
    I am having been building a drag n drop flash game where you need to drag pictures of organisms into their position on a food web. The code was working when it was a simple food chain with each animals only have one position on the chain. I have no decided to make it a more complex and have things such as plants, having a couple of different positions in the chain. I have decided to try this using an array for each of the sets of pictures. At the moment the pictures can be picked up and moved around the screen, but not placed on any of the targets that I have put on the screen. My other problem is that the following error keeps coming up whenever I go to the frame.
    TypeError: Error #1010: A term is undefined and has no properties.
    at foodweb_fla::MainTimeline/activateDraggables()
    at foodweb_fla::MainTimeline/frame6()
    I have been trying for a couple of days now to work out whats going on withoutmuch luck due to my very average flash skills. The coding that I have done so far is below:
    [CODE]
    stop();
    var startX2:Number;
    var startY2:Number;
    var counter2:Number=0;
    score_txt.text=score;
    var dropTargetss = new Array();
    dropTargetss[0]=targetsun2_mc1;
    dropTargetss[1]=targetsun2_mc2;
    dropTargetss[2]=targetsun2_mc3;
    dropTargetss[3]=targetsun2_mc4;
    var dropTargetsp = new Array();
    dropTargetsp[0]=targetplant2_mc1;
    dropTargetsp[1]=targetplant2_mc2;
    dropTargetsp[2]=targetplant2_mc3;
    var dropTargetsi = new Array();
    dropTargetsi[0]=targetinsect2_mc1;
    dropTargetsi[1]=targetinsect2_mc2;
    var draggableObjectss = new Array();
    draggableObjectss[0]=sun2_mc1;
    draggableObjectss[1]=sun2_mc2;
    draggableObjectss[2]=sun2_mc3;
    draggableObjectss[3]=sun2_mc4;
    var draggableObjectsp = new Array();
    draggableObjectsp[0]=plant2_mc1;
    draggableObjectsp[1]=plant2_mc2;
    draggableObjectsp[2]=plant2_mc3;
    var draggableObjectsi = new Array();
    draggableObjectsi[0]=insect2_mc1;
    draggableObjectsi[1]=insect2_mc2;
    Next3_b.addEventListener(MouseEvent.CLICK, onGuessClick3);
    SA3_b.addEventListener(MouseEvent.CLICK, onSAClick3);
    bird2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
    snake2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt5);
    bird2_mc.buttonMode=true;
    snake2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
    bird2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt5);
    snake2_mc.buttonMode=true;
    //BUTTON FUNCTIONS
    function onGuessClick3(event:MouseEvent) {
    //if(counter2 == 11){
    gotoAndPlay(7);
    //} else {
    //reply2_txt.text = "You need to complete this food chain before moving forward!";
    function onSAClick3(event:MouseEvent) {
    gotoAndStop(1);
    //PICKUP AND DROP FUNCTIONS
    function activateDraggables():void {
    for (var i:int = 0; i < draggableObjectss.length; i++) {
      draggableObjectss[i].buttonMode=true;
      draggableObjectss[i].addEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
    for (var j:int = 0; j < draggableObjectsp.length; j++) {
      draggableObjectsp[j].buttonMode=true;
      draggableObjectsp[j].addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    for (var k:int = 0; k < draggableObjectss.length; k++) {
      draggableObjectsi[k].buttonMode=true;
      draggableObjectsi[k].addEventListener(MouseEvent.MOUSE_DOWN, pickUp4);
    activateDraggables();
    function pickUp2(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt2);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt2(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt2);
    if (event.target.dropTarget&&dropTargetss.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp3(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt3(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt3);
    if (event.target.dropTarget&&dropTargetsp.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp4(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt4);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt4(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt4);
    if (event.target.dropTarget&&dropTargetsi.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp5(event:MouseEvent):void {
    event.target.startDrag(true);
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    event.target.parent.addChild(event.target);
    startX=event.target.x;
    startY=event.target.y;
    function dropIt5(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String="target"+event.target.name;
    var myTarget:DisplayObject=getChildByName(myTargetName);
    if (event.target.dropTarget!=null&&event.target.dropTarget.parent==myTarget) {
      reply2_txt.text="Good Work!";
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
      event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt5);
      event.target.buttonMode=false;
      event.target.x=myTarget.x;
      event.target.y=myTarget.y;
      counter2++;
    } else {
      reply2_txt.text="That tile doesn't go there!";
      event.target.x=startX2;
      event.target.y=startY2;
    if (counter2==11) {
      reply2_txt.text="Congratulations you have completed the forest ecosystem!";
      score++;
      score++;
      score++;
      score++;
      score++;
      score++;
      score_txt.text=score;
    [/CODE]
    Any help will be much appreciated. Thankyou in advance

    click file/publish settings/flash and tick "permit debugging".  retest and using the line number in the error message fix your problem or post the line with the error.

  • Should I use Standard C++ Containers and Stuff for games and other real time activities?

    Hello,
    I'm a C++ developer using VS 2012 and VS 2010 for developing AAA titles. I have read about not using STL and other stuff provided in the standard headers that come with VS. I read most of the stuff on the websites based on game programming and some
    are really from the people well known in the industry. I have seen cases where they wont even use vector, list, map and others and not even use utility functions and algorithms. In such cases they write those containers and stuff themselves which has almost
    the same interface and so much of debug and implementation time spent on such huge code.
    I have two questions:
    1: Isn't the C++ implementation that comes with VS optimized for the platform for better performance? Isn't it using some intrinsic functions that people on the client end doesn't know about and supplying their own implementation would indeed be
    more slower in basic container operations such as insert, remove, find, swap, copy? Lets assume that we supply our own custom allocators for faster memory management to every container that we use. Also, they take care of fragmentation, alignment and stuff.
    Why develop custom containers with almost same interface, why not spend that time on writing allocators and other stuff that might actually help?
    2: There are times when we include a lot, a lot, of unnecessary stuff through the standard headers in a huge code base. Unnecessary, because we only needed a thing or two from such huge headers including other huge headers and so on. Now, I know templates
    aren't instantiated unless used, same goes for the members functions inside them and blah blah. Since, these are precompiled headers, it is safe to assume that there is no compile time hit for that unnecessary stuff. My question is, is there any hidden effect
    of such inclusions on code size (executable) that grows with the huge growth of the code base? In my opinion there shouldn't be, but I wanna know I'm not mistaken just in case. 

    Hi
    I can tell you a story about one of our projects. We had to implement a block management system for harddisks (like the parts of file systems that allocate, free blocks and do the bookkeeping stuff). Now, one guy was convinced, that we should use the STL,
    because it's easy to use and very well optimized and things like that. An other one said, that he would implement it by hand. So we decided to do both for a little test. The result was, that the hand implemented thing was much easier to write and much faster...
    and the one using STL saw, that some classes were so slow, that he couldn't believe it... he then tryed to build some classes by hand and exchange them (e.g. array classes and stuff like that) and it was way faster than the STL and he wrote them in minutes
    (!)... since then nobody wanted to use STL again... we don't even try it. It ended that we wrote our own string and array classes and stuff like that... easy little things that we understand. Now it's easy to use and fast and still flexible, because we know
    what it's doing...
    ... but, that's just a story about our development and of course, we're often programming very close to the hardware and also using assembler languages often... so, I don't know what this tells us... you have to decide :-)
    Rudolf

  • 1 month old MSI 560TI twinfrozrII 880/OC artifacts in multiple games (long)

     
    I have had this computer for about 8 months and had to RMA my first card because it would artifact after being on for 3 days requiring a cold boot (a known problem that affects some 500 series cards from different manufaturers)
    This new one lasted a month (I shut down every night now) before I started to get artifacts (these ones are different then the other ones though) and they only affect CERTAIN portions of games and not others ... for example a wall that flickers will always flicker and a wall that never flickers will never flicker... they are kind of rare in Everquest / Persona 4 but artifacting is common in BFBC2 and dead island to the point of making things unplayable in certain portions.
    I have tried 275.33 and 280.26 without any noticeable difference
    here are a ton of examples:
    (Everquest - Wall flickering based on viewing angle)
    (Persona 4 emulated w/ original disk -- retaining wall flickering)
    (Persona 4 emulated -- misc flickering near the Barber Shop, Liquor store, shrine)
    (Persona 4 emulated -- flickering pipe)
    (Persona 4 emulated -- fridge wall flicker)
    (everquest classic -- flickering character models belt, bracers and sometimes head ... goes and comes and is worse in some zones)
    ( bad company 2 -- flickering strip in the distance reminiscent of everquest and persona artifacts)
    (bad company 2 -- flickering shed wall and some shadows flicker)
    (bad company 2 -- weird shadow line that stops drawing (LOD?)
    (bad company 2 -- near and medium distance lod popping at same time -- most likely game engine?)
    (bad company 2 -- LOD pop in and general ugliness, never noticed this before)
    (bad company 2 -- another poor place for shadow rendeing that gets cut off with a very visable line 25 feet infront of me)
    (bad company 2 -- weird texture flicker on destroyed building in addition to some lod pop in on other building)
    Video Card: N560GTX-Ti Twin Frozr II/OC 880 (BIOS listed as: 70.24.21.00.00 by GPU-Z):
    VDCC: .9500V idle to 1.000V load (this oscillates when gaming from .95 to 1.0 is this normal?)
    GPU-Z Core: 882.3 MHz load, 50.6MHz idle
    gpu-Z Shader: 1760.0 MHz load, 101.0 MHz idle
    gpu-z Memory: 1050.0 MHz load, 67.5MHz idle
    PSU: Corsair TX650
    CPU: I7 950 Stock w/ CM212+ artic silver
    RAM: Gskill 6GB triple channel kit
    Mobo: Asus P6X58D-E
    HDD: Western Digital WD1002FAEX black 1TB
    UPS: Cyberpower CP1500PFCLCD
    sound: onboard
    case: Fractal R3 (1x default fan front intake, 1 default fan back exhaust, 1 noctua 120mm front intake, 1 noctua 120mm top exhaust)
    Logitech G5 mouse / G15 V2 keyboard
    Samsung T240HD on DVI1
    Windows 7 ultimate 64bit + SP1 and all updates
    CPU temps: Idle ~ 39C. Below 60C~ when gaming (I do not run synthetic stress tests)
    GPU temps: 32 idle, sub 60C gaming load (I do not run synthetic stress tests)
    PC worked fine for a month before this started happening one night.
    System Information
    Time of this report: 9/17/2011, 18:36:13
           Machine name: NIMBUS
       Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110408-1631)
               Language: English (Regional Setting: English)
    System Manufacturer: System manufacturer
           System Model: System Product Name
                   BIOS: BIOS Date: 05/25/10 14:39:27 Ver: 08.00.15
              Processor: Intel(R) Core(TM) i7 CPU         950  @ 3.07GHz (4 CPUs), ~3.1GHz
                 Memory: 6144MB RAM
    Available OS Memory: 6136MB RAM
              Page File: 1522MB used, 10746MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
            Sound Tab 3: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: NVIDIA GeForce GTX 560 Ti
           Manufacturer: NVIDIA
              Chip type: GeForce GTX 560 Ti
               DAC type: Integrated RAMDAC
             Device Key: Enum\PCI\VEN_10DE&DEV_1200&SUBSYS_23821462&REV_A1
         Display Memory: 3804 MB
       Dedicated Memory: 993 MB
          Shared Memory: 2811 MB
           Current Mode: 1920 x 1200 (32 bit) (59Hz)
           Monitor Name: SyncMaster T240HD(Digital)
          Monitor Model: SyncMaster
             Monitor Id: SAM0425
            Native Mode: 1920 x 1200(p) (59.950Hz)
            Output Type: DVI
            Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 8.17.0012.8026 (English)
         Driver Version: 8.17.12.8026
            DDI Version: 11
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 8/3/2011 04:50:00, 15064168 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71E3E-5140-11CF-8868-8E031FC2C535}
              Vendor ID: 0x10DE
              Device ID: 0x1200
              SubSys ID: 0x23821462
            Revision ID: 0x00A1
     Driver Strong Name: oem3.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section005:8.17.12.8026:pci\ven_10de&dev_1200
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
       Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_104383C0&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output (Realtek High Definition Audio)
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_104383C0&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output(Optical) (Realtek High Definition Audio)
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_104383C0&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: USB Gaming Mouse
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC049
            FF Driver: n/a
          Device Name: USB Gaming Mouse
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC049
            FF Driver: n/a
          Device Name: G15 Gaming Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC226
            FF Driver: n/a
          Device Name: G15 Gaming Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC226
            FF Driver: n/a
          Device Name: G15 GamePanel LCD
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC227
            FF Driver: n/a
          Device Name: CRCA102.981
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x0764, 0x0501
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3A36
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC226
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC227
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC049
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
          Drive: C:
     Free Space: 661.0 GB
    Total Space: 893.9 GB
    File System: NTFS
          Model: WDC WD1002FAEX-00Y9A0 ATA Device
          Drive: D:
     Free Space: 19.8 GB
    Total Space: 59.9 GB
    File System: NTFS
          Model: WDC WD1002FAEX-00Y9A0 ATA Device
          Drive: F:
          Model: DTSOFT Virtual CdRom Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
          Drive: E:
          Model: HL-DT-ST DVDRAM GH22NS50 ATA Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    System Devices
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
    Device ID: PCI\VEN_8086&DEV_3A39&SUBSYS_82D41043&REV_00\3&11583659&0&D2
       Driver: n/a
         Name: Intel(R) ICH10R LPC Interface Controller - 3A16
    Device ID: PCI\VEN_8086&DEV_3A16&SUBSYS_82D41043&REV_00\3&11583659&0&F8
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 1 - 3408
    Device ID: PCI\VEN_8086&DEV_3408&SUBSYS_836B1043&REV_13\3&11583659&0&08
       Driver: n/a
         Name: Universal Serial Bus (USB) Controller
    Device ID: PCI\VEN_1033&DEV_0194&SUBSYS_84131043&REV_03\4&CF85AA7&0&0010
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
    Device ID: PCI\VEN_8086&DEV_3A38&SUBSYS_82D41043&REV_00\3&11583659&0&D1
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub Throttle Registers - 3438
    Device ID: PCI\VEN_8086&DEV_3438&SUBSYS_00000000&REV_13\3&11583659&0&A3
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub to ESI Port - 3405
    Device ID: PCI\VEN_8086&DEV_3405&SUBSYS_836B1043&REV_13\3&11583659&0&00
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
    Device ID: PCI\VEN_8086&DEV_3A37&SUBSYS_82D41043&REV_00\3&11583659&0&D0
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub System Management Registers - 342E
    Device ID: PCI\VEN_8086&DEV_342E&SUBSYS_00000000&REV_13\3&11583659&0&A0
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_82D41043&REV_90\3&11583659&0&F0
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 3 - 3A44
    Device ID: PCI\VEN_8086&DEV_3A44&SUBSYS_84181043&REV_00\3&11583659&0&E2
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
    Device ID: PCI\VEN_8086&DEV_3A36&SUBSYS_82D41043&REV_00\3&11583659&0&EA
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub Control Status and RAS Registers - 3423
    Device ID: PCI\VEN_8086&DEV_3423&SUBSYS_00000000&REV_13\3&11583659&0&A2
       Driver: n/a
         Name: Standard AHCI 1.0 Serial ATA Controller
    Device ID: PCI\VEN_1B4B&DEV_9123&SUBSYS_84001043&REV_11\4&37C265C7&0&0008
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
    Device ID: PCI\VEN_8086&DEV_3A40&SUBSYS_84181043&REV_00\3&11583659&0&E0
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
    Device ID: PCI\VEN_8086&DEV_3A35&SUBSYS_82D41043&REV_00\3&11583659&0&E9
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers - 3422
    Device ID: PCI\VEN_8086&DEV_3422&SUBSYS_00000000&REV_13\3&11583659&0&A1
       Driver: n/a
         Name: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller
    Device ID: PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&18ABAD59&0&00E2
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3A3E&SUBSYS_84181043&REV_00\3&11583659&0&D8
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
    Device ID: PCI\VEN_8086&DEV_3A34&SUBSYS_82D41043&REV_00\3&11583659&0&E8
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 7 - 340E
    Device ID: PCI\VEN_8086&DEV_340E&SUBSYS_836B1043&REV_13\3&11583659&0&38
       Driver: n/a
         Name: VIA 1394 OHCI Compliant Host Controller
    Device ID: PCI\VEN_1106&DEV_3044&SUBSYS_81FE1043&REV_C0\4&1B359D48&0&10F0
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
    Device ID: PCI\VEN_8086&DEV_3A3C&SUBSYS_82D41043&REV_00\3&11583659&0&D7
       Driver: n/a
         Name: Intel(R) ICH10 Family SMBus Controller - 3A30
    Device ID: PCI\VEN_8086&DEV_3A30&SUBSYS_82D41043&REV_00\3&11583659&0&FB
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 3 - 340A
    Device ID: PCI\VEN_8086&DEV_340A&SUBSYS_836B1043&REV_13\3&11583659&0&18
       Driver: n/a
         Name: NVIDIA GeForce GTX 560 Ti
    Device ID: PCI\VEN_10DE&DEV_1200&SUBSYS_23821462&REV_A1\4&2F1C4782&0&0018
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
    Device ID: PCI\VEN_8086&DEV_3A3A&SUBSYS_82D41043&REV_00\3&11583659&0&EF
       Driver: n/a
         Name: Intel(R) ICH10 Family 6 Port SATA AHCI Controller - 3A22
    Device ID: PCI\VEN_8086&DEV_3A22&SUBSYS_82D41043&REV_00\3&11583659&0&FA
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 2 - 3409
    Device ID: PCI\VEN_8086&DEV_3409&SUBSYS_836B1043&REV_13\3&11583659&0&10
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_10DE&DEV_0E0C&SUBSYS_23821462&REV_A1\4&2F1C4782&0&0118
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.01.3951.0000
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.01.3951.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.01.3951.0000
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.01.3951.0000
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17514
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17514
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17514
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPC - MPEG-2 Video Decoder (Gabest),0x00500001,1,1,Mpeg2DecFilter.ax,1.05.0003.3514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    MPC - FLV Splitter (Gabest),0x00600000,1,1,FLVSplitter.ax,1.05.0003.3514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17514
    WavPack Audio Decoder,0x00600000,1,1,WavPackDSDecoder.ax,1.01.0000.0484
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Haali Media Splitter,0x00800001,0,1,splitter.ax,1.11.0096.0014
    Haali Media Splitter (AR),0x00400000,1,1,splitter.ax,1.11.0096.0014
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    Xvid MPEG-4 Video Decoder,0x00800002,1,1,xvid.ax,
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17514
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17514
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17514
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17514
    Haali Video Renderer,0x00200000,1,0,dxr.dll,
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Haali Simple Media Splitter,0x00200000,0,1,splitter.ax,1.11.0096.0014
    DirectVobSub,0x00200000,2,1,VSFilter.dll,2.40.3514.0003
    DirectVobSub (auto-loading version),0x00800002,2,1,VSFilter.dll,2.40.3514.0003
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17514
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17514
    Haali Matroska Muxer,0x00200000,1,0,splitter.ax,1.11.0096.0014
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17514
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.01.3951.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    MPC - FLV Source (Gabest),0x00600000,0,0,FLVSplitter.ax,1.05.0003.3514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17514
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17514
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    WavPack Audio Splitter,0x00600000,1,1,WavPackDSSplitter.ax,1.01.0000.0323
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.01.3951.0000
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17514
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17514
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17514
    Haali Video Sink,0x00200000,1,0,splitter.ax,1.11.0096.0014
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17514
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.01.3951.0000
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17514
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    ffdshow Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Xvid MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17514
    WDM Streaming Capture Devices:
    Realtek HD Audio CD input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Optical Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17528
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Realtek Digital Output(Optical) (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Realtek Digital Output(Optical),0x00200000,1,0,quartz.dll,6.06.7601.17514
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    Quote from: Svet on 18-September-11, 18:31:16
    apply vga reference clocks then retest
    Thanks for the reply Svet.
    I assume you mean to use MSI afterburner and put the clocks at the default for 560 TI which are the following based on my googling?
    MY card currently:
    VDDC .9500V-1.000V (depending on 3d load and according to GPU-Z)
    GPU clock: 880 MHz (the "sensors" tab reports this as 882.3 for some reason)
    Shader clock: 1760MHz
    Memory clock: 1050MHz
    what you want me to change them to:
    VDDC 1.0000 (which is default for this card IIRC I haven't unlocked voltage controls yet to check)
    GPU clock: 822MHz
    Shader Clock: 1644MHz
    Memory: 1002MHz

  • Help with Kevin Bacon game

    I would really appreciate some help. Yes this is an assignment who in his crazy mind would try to do this just to learn or practice their java. I have some code already done but I ran out of memory. The other thing my code works like the one at Virginia University. I'm awarding 10 dukes I can award another 10 dukes. I'll let you know later, thanks in advance.
    This is the code I have:
    import java.io.*;
    import java.util.zip.*;
    import java.util.ArrayList;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Set;
    import java.util.Iterator;
    * A class that download files , create Maps and search for information with
    * in the maps, giving an output of the actor that share more movies with the
    * input actor that the user gives
    public class DataBase
      private Map map1 = new HashMap( );  // actor
      private Map map2= new HashMap( );   //movies
      private int okactor = 0;
    // Main Method
      public static void main (String args [])throws IOException
        DataBase testing = new DataBase();
        System.out.println("Program was run in Pentium 4 in AUL");
        System.out.println("Starting Time : " + System.currentTimeMillis());
        testing.loadFile("C:\\My Documents\\FIU\\COP3530_Data_Strutures\\program5\\actresses.list.gz");   
        testing.loadFile("C:\\My Documents\\FIU\\COP3530_Data_Strutures\\program5\\actors.list.gz");
        //testing.loadFile("\\\\Cougar\\cop3530\\actresses.list.gz");   
        //testing.loadFile("\\\\Cougar\\cop3530\\actors.list.gz");
        System.out.println(" Ending Time of Downloading:  " + System.currentTimeMillis());
        int infiniteloop = 0 ;
           while (infiniteloop == 0)
                     System.out.println("Number of Actors and Actresses : " + testing.getActorCount());
                  System.out.println("Number of Movies: " + testing.getMovieCount());  
                      System.out.println("");
                      System.out.println("Enter a name please");
                      BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                      String name = in.readLine(); 
                      testing.computeSharedMovies(name);
                  List listofnames = new ArrayList();
                  listofnames =  testing.mostSharedMovies();  
                  testing.print(name, listofnames);
    //static class actor 
      private static final class Actor
         String name;
         int    data;  // number of shared movies,
                       // determined by computeSharedMovies
         public String toString( )
           { return name; }
         public int hashCode( )
           { return name.hashCode( ); }
         public boolean equals( Object other )
           { return (other instanceof Actor) &&
                    ( (Actor) other ).name.equals( name );
    *Loads the two files files
    *@param String is the fileName to be download
      public void loadFile( String fileName ) throws IOException
           BufferedReader x = new BufferedReader ( new InputStreamReader(new GZIPInputStream (new BufferedInputStream( new FileInputStream(fileName)))));
                String line;
          int start = 0 ;
          ArrayList actorList = new ArrayList();
          ArrayList movies = new ArrayList();
          Actor key = new Actor();
          int p = 0;    //parameters
          int p2 =0 ;
          String you = null ;
          String year = null;
          String trimMovie = null;
          int par1 = 0;    //parameter
          int par2 =0;
          String addingmovie = null;
            while((line = x.readLine()) != null)
                if(line.indexOf("Name") == 0 )
                      start++;
                if(start == 0)
                continue;
                  if( start >= 1)
                                  if(line.indexOf("-----------------------") == 0)
                                          break;
                                  if(((line.trim()).length()) == 0)
                                         continue;
                                  else if(line.indexOf("----") == 0)
                                          continue;
                                     else if (line.indexOf("Name") == 0)
                                             continue;
                                  else if(line.indexOf("\t") != 0)
                                     p  = line.indexOf("\t");
                                     p2 = line.lastIndexOf(")");
                                     String actor = (line.substring(0,p));
                                       key = new Actor();
                                       key.name = actor;                              
                                        you = (line.substring(p, (p2 + 1)));
                                          if (you.indexOf("(TV)") > 0)
                                                         continue;                                                                                                
                                       p = you.indexOf("\t");
                                       p2 = you.indexOf(")");
                                      you = (you.substring(p, p2 +1)).trim();                                 
                                            if(you.indexOf("\"") == 0)
                                                    continue;                                                                                        
                                            year = you ;
                                       p = year.indexOf("(");
                                       p2 = year.indexOf(")");
                                       year = year.substring(p + 1 , p2);                                 
                                            if ( ( ((Comparable)year).compareTo("2002") ) >= 0)
                                                    continue;                                                                                         
                                     you = you.intern();                                                                  
                                     movies = new ArrayList();
                                      movies.add(you);
                                     movies.trimToSize() ;                    
                                        map1.put(key , movies);
                                           if(map2.containsKey(you))
                                                      ((ArrayList)map2.get(you)).add(key) ;
                                            else
                                                         actorList = new ArrayList();
                                                           actorList.add(key);
                                                           actorList.trimToSize() ;                                                          
                                                           map2.put(you, actorList);
                               else if(line.indexOf("\t") == 0)
                                    par1 = line.indexOf(")");
                                    par2 = line.indexOf("\t");
                                    trimMovie = (line.substring(par2, par1 +1)).trim();
                                    trimMovie = trimMovie.intern();                              
                                    String ye = trimMovie;
                                    par1 = trimMovie.indexOf("(");
                                    par2 = trimMovie .indexOf(")");                              
                                    ye = (ye.substring(par1 + 1 , par2));                             
                                     addingmovie = (line.trim());
                                           if(addingmovie.indexOf("(TV)") > 0)
                                           else if ( (((Comparable)ye).compareTo("2002")) >= 0)
                                           else  if(addingmovie.indexOf("\"") == 0)
                                           else if(addingmovie.indexOf("(archive footage)") > 0)
                                            else
                                                     if(map1.containsKey(key))
                                                                 ((ArrayList)map1.get(key)).add(trimMovie);                         
                                                              ((ArrayList)map1.get(key)).trimToSize() ;
                                                    else
                                                          movies = new ArrayList();
                                                          movies.add(trimMovie);
                                                          movies.trimToSize() ;
                                                          map1.put(key, movies);
                                              if(map2.containsKey(trimMovie))
                                                 {     ((ArrayList)map2.get(trimMovie)).add(key);
                                                     ((ArrayList)map2.get(trimMovie)).trimToSize() ;
                                            else
                                                           actorList = new ArrayList();
                                                         actorList.add(key);
                                                        actorList.trimToSize() ;
                                                        map2.put(trimMovie, actorList);
    *Compute the amount of shared movies for all actor compared to the one
    *given from the user
    *@param String actor is the actor that the user wish to search for some
    *other actors/actresses with the most shared movies with him
        public void computeSharedMovies( String actor )
             Actor actor2 = new Actor();
             actor2.name = actor;
            if(map1.containsKey(actor2))
                  okactor = 0 ;
                  Actor actor3 = new Actor();
                  actor3 = actor2;
                      for(int count = 0 ; count < ((ArrayList)(map1.get(actor2))).size() ; count++)
                           String movie = (String)((ArrayList)(map1.get(actor2))).get(count);      
                                for (int count2 = 0 ; count2 < ((ArrayList)map2.get(movie)).size() ; count2++)     
                                          Actor iuu = (Actor)((ArrayList)map2.get(movie)).get(count2);
                                          if(!(iuu.name).equals( actor3.name))
                                                     iuu.data++;
             Set entries = map1.entrySet();
             Iterator itr = entries.iterator();
                 List x2 = new ArrayList() ;
                 Actor big = new Actor();
                 big.data = 0;
                 List list = new ArrayList();
             while (itr.hasNext())
                       Map.Entry thisPair = (Map.Entry) itr.next();                 
                          Actor actorCompare = ((Actor)thisPair.getKey());                                   
                          if( actorCompare.data > big.data)
                               big.name = actorCompare.name;
                               big.data = actorCompare.data;
                               list = new ArrayList();
                               list.add(actorCompare);
                      else if (actorCompare.data == big.data)
                                list.add(actorCompare);
          }//end of if, if actor is in map
           else
                   okactor = 1;
    *Prints the final output
    *@param String actor1 is the actor pick by the user to be search
    *@param List most is the list with all the actors/actresses that had
    *the most shared movies
      public void print (String actor1 , List most)
         if(okactor == 0)
               Actor actorPrint = new Actor();
               actorPrint.name = actor1;
               Actor y = new Actor();
               y = actorPrint;
               List  list = new ArrayList();
               list = most;
               int data = ((Actor)list.get(0)).data;
               ArrayList list2 = new ArrayList();
               list2 = (ArrayList)(map1.get(actorPrint));
                  for(int getActor = 0 ; getActor < list.size() ;getActor++)
                           System.out.println(list.get(getActor) + "  :   (" +  data  + "  " + "Shared roles)");
                            Actor name3  = (Actor)list.get(getActor);
                           String na  = name3.name;
                             Map map3 = new HashMap();
                            ArrayList ji = new ArrayList ();
                            ji = (ArrayList)map1.get(list.get(getActor));
                    for (int array1 = 0 ; array1 < ji.size()  ; array1++)
                         map3.put( ji.get(array1) , na);
                    for(int count = 0 ; count < list2.size() ; count++)
                           if(map3.containsKey(list2.get(count)))
                           System.out.println("                    " + (list2.get(count))); 
             Set entries =map1.entrySet();
             Iterator itr = entries.iterator();
             Actor  actortoclean = new Actor();
                  while(itr.hasNext())
                       Map.Entry thisPair = (Map.Entry)itr.next();
                       actortoclean = (Actor)thisPair.getKey();     
                       actortoclean.data = 0 ;      
       else  //else if okactor greater than 0
       System.out.println("THE ACTOR IS NOT IN FILE PLEASE TRY AGAIN") ;
    * Coputes what actors or actresses have the most shared movies
    *return a List with all the actor that have the most shared
    *movies
      public List mostSharedMovies( )
        if(okactor == 0)
        Set entries = map1.entrySet();
        Iterator itr = entries.iterator();
        List x = new ArrayList() ;
        Actor big = new Actor();
        big.data = 0;
        List list = new ArrayList();
          while (itr.hasNext())
                  Map.Entry thisPair = (Map.Entry) itr.next();
                     Actor o1 = ((Actor)thisPair.getKey());
                          if( o1.data > big.data)
                               big.name = o1.name;
                               big.data = o1.data;                 
                               list = new ArrayList();
                               list.add(o1);
                           else if (o1.data == big.data)
                                list.add(o1);
        return list;
      else
         return null;
    *Gives the amount of actor in the map of actors
    *return an int with the quantity
      public int getActorCount( )
          return map1.size();
    *Gives the amount of movies in the map of movies
    *return an int with the quantity
      public int getMovieCount()
           return map2.size();
    }Kevin Bacon Game
    For a description of the Kevin Bacon game, follow this link http://www.cs.virginia.edu/oracle/ . Try the game a few times and see if you can find someone with a Bacon Number higher than 3. In this program you will find all persons with a Bacon Number of 8 or higher. One of these persons is a former President of the United States.
    Strategy
    This is basically a shortest path problem. After that is done, find the large Bacon numbers by scanning the bacon numbers and print out the high-numbered actors and their chains. To print out a high-numbered actor, you should use recursion. Specifically, if some actor x has a Bacon number of b, then you know that they must have been in a movie with someone, call them actor y with a Bacon number of b-1. To print out x's chain, you would print out y's chain (recursively) and then the movie that x and y had in common.
    The Input Files
    There are two data files; both have identical formats. These files are: actors file and actresses file. These files are both compressed in .gz format, and were obtained from the Internet Movie Database. Combined, they are 52 Mbytes (compressed!) and were last updated October 17, 2002. These files are available at ftp://ftp.imdb.com/pub/interfaces/
    These datafiles contain approximately 571,000 actors/actresses in a total of 192,000 movies, with 2,144,000 roles. These files also list TV roles, but you must not include TV roles in your analysis.
    Before you run on the large data sets, use the small (uncompressed) file sample.list(http://www.fiu.edu/~lmore004/cop3530/sample.list) to debug the basic algorithms. In this data file, there are six actors, named a, b, c, d, e, and f, who have been in movies such as X, Y, and Z.
    Input File Hints
    Since it is not my input file, I cannot answer questions about it. Here are some observations that I used in my program, that should suffice. You can read the input file line by line by wrapping a FileInputStream inside a BufferedInputStream inside a GZIPInputStream inside an InputStreamReader inside a BufferedReader. You may not uncompress the file outside of your program.
    There are over 200 lines of preamble that can be skipped. This varies from file to file. However, you can figure it out by skipping all lines until the first occurrence of a line that begins with "Name", and then skipping one more.
    There are many postamble lines, too, starting with a line that has at least nine dashes (i.e. ---------).
    A name is listed once; all roles are together; the name starts in the first column.
    A movie title follows the optional name and a few tab stops ('\t'). There are some messed up entries that have spaces in addition to tab stops.
    The year should be part of the movie title.
    Movies made in 2003 or later should be skipped.
    A TV movie, indicated by (TV) following the year, is to be skipped.
    Archive material, indicated by (archive footage), is to be skipped. (Otherwise JFK is a movie star).
    Cameo appearances, indicated by [Cameo appearance], should be skipped.
    A TV series, indicated by a leading " in the title is to be skipped.
    A video-only movie, indicated by (V) following the year is allowed.
    Blank lines separate actors/actresses, and should be skipped.
    Strategy
    In order to compute your answers, you will need to store the data that you read. The main data structures are a Map in which each key is an Actor and each value is the corresponding list of movies that the actor has been in, and then a second Map, in which key is a movie and each value is the list of Actors in the movie (i.e. the cast). A movie is represented simply as a String that includes the year in which it was made, but an Actor includes both the name of the actor, and a data field that you can use to store computed information later on. Thus, ideally, you would like to define a class that looks somewhat like this (with routines to compute Bacon Numbers not listed):
    public class Database
      private static final class Actor
         String name;
         int    data;  // Bacon number ,
                       // determined by computeBaconNumbers
         public String toString( )
           { return name; }
         public int hashCode( )
           { return name.hashCode( ); }
         public boolean equals( Object other )
           { return (other instanceof Actor) &&
                    ( (Actor) other ).name.equals( name ); }
        // Open fileName; update the maps
      public void loadFile( String fileName ) throws IOException
      public int getActorCount( )
      public int getMovieCount( )
      private Map actorsToMovies = new HashMap( );
      private Map moviesToActors = new HashMap( );
      Memory Details
    The description above is pretty much what you have to do, except that you must take extra steps to avoid running out of memory.
    First, you will need to increase the maximum size of the Java Virtual Machine from the default of 64Meg to 224Meg. You may not increase it any higher than that. If you are running the java interpreter from the command line, the magic option is -Xmx224m. If you are using an IDE, you will have to consult their documentation --- don't ask me.
    Second, you will quickly run out of memory, because if you find two movies that are the same, but are on different input lines, the default setup will create two separate (yet equal) String objects and place them in the value lists of two different actors. Since there are 2.1 million roles, but only 192,000 movies, this means that you will have ten times as many String objects as you really need. What you need to do is to make sure that each movie title is represented by a single String object, and that the maps simply store references to that single String object. There are two basic alternatives:
    The String class has a method call intern. If you invoke it, the return value on equal Strings will always reference the same internal String object.
    You can keep a HashMap in which each key is a movie title, and each value is the same as the key. When you need a movie title, you use the value in the HashMap.
    Option two is superior (performancewise) to option #1 and it is required that you use it to avoid memory problems.
    When you maintain the list of movies for each actor, you will want to use an ArrayList. It takes little effort to ensure that the capacity in the ArrayList is not more than is needed, and you should do so, to avoid wasting space (since there are 571,000 such array lists).
    When you construct the HashMaps, you can issue a parameter (the load factor). The higher the load factor, the less space you use (at the expense of a small increase in time). You should play around with that too; the default is 0.75; you will probably want a load factor of 2.00 or 3.00.
    You must be very careful to avoid doing any more work in the inner loops than you need to, including creating excessive objects. IF YOU CREATE EXCESSIVE OBJECTS, YOUR PROGRAM MAY SLOW TO A CRAWL BECAUSE ALL ITS TIME WILL BE SPENT IN THE GARBAGE COLLECTOR OR RUN OUT OF MEMORY COMPLETELY.
    What to Submit
    Submit complete source code and the actors/actresses with Bacon Numbers of 8 or higher. Include the complete paths for each of the actors/actresses (with shared movie titles). Also indicate how long your algorithm takes. This means how long it takes to load, and also how long it takes to run the shortest path computation (not including the output of the answer), by inserting calls to System.currentTimeMillis at appropriate points in your code, and tell me how many actors and movies there are. Also, insert this code (at the end of your program) that tells me how large the VM is:
    Runtime rt = Runtime.getRuntime( );
    int vmsize = (int) rt.totalMemory( );
    System.out.println( "Virtual machine size: " + vmsize );
    Don't forget to write in the processor speed of the computer you are using. If it's somewhat fast, or provably space-efficient, you can get extra credit. You cannot receive credit for a working program if your program fails to produce a large set of actors and actresses with Bacon Numbers of 8 or higher. Note: the data you will work on and the data the Oracle uses (and the IMDB data) are all slightly out of sync. So you might not be able to exactly reproduce the results, although I was able to get a complete set of Bacon Numbers 8 and higher when I ran my program on October 23, using the Oct 17 files.
    Due Date
    This program is due on Thursday November 14.
    Additional Notes
    The exact sizes of the data files are 36381624 and 18263563 bytes, respectively. If you download and the files are larger, then you messed up the download. Note that if you are using Windows XP, these files might be uncompressed during downloading. If so, you can use this program to recompress the file. If the files are smaller, then the download probably got interrupted before it finished and you will need to retry. Here is a gzipped sample.list for you to test that aspect of your program.
    Running on COTTON in the AUL, which is a 450 MHz Pentium III, and accessing the files over the network as "\\\\couger\\cop3530\\actors.list.gz", (and similarly for actresses.list.gz), and with no other processes running besides notepad, the data files loaded in 180 seconds. You should be able to get faster results on a faster machine. Some of the AUL machines are 1.6 GHz. You should indicate which AUL machine (with processor speed) ran your submission.
    Entries with years such as (1996/I) are optional.
    When writing and reading make sure you are using BufferedInputStream and BufferedOutputStream, as appropriate.
    Sketch of the basic shortest path computation:
    // typically invoked with Kevin Bacon as parameter
    // This is the basic algorithm; there's stuff

    I forgot to post the code, here it is:
    import java.util.LinkedList ;
    import java.io.*;
    import java.util.zip.*;
    import java.util.ArrayList;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Set;
    import java.util.Iterator;
    import java.util.HashSet;
    * A class that download files , create Maps and search for information with
    public class DataBase2 implements Serializable
      private Map map1 = new HashMap((int)515927, (float)0.85 );  // actor
      private Map map2= new HashMap((int)172911, (float)0.85 );   //movies
      transient private Map map3 = new HashMap();   //movie and movie
      transient private int okactor = 0;
      transient static final int INFINITY = Integer.MAX_VALUE;
    // Main Method
      public static void main (String args [])throws IOException
        int c  = 0 ;
        System.out.println("Program was run in Pentium 4 in AUL");        
        DataBase2 testing = new DataBase2();   
        try{   
            ObjectInputStream ii1 = new ObjectInputStream (new BufferedInputStream (new FileInputStream("file2.ser")));
        catch (FileNotFoundException ex)
            System.out.println("FILE NOT ON DISK PLEASE WAIT WHILE DOWNLOADING");
            long x = System.currentTimeMillis();
            testing.loadFile("\\\\Cougar\\cop3530\\actresses.list.gz");   
            testing.loadFile("\\\\Cougar\\cop3530\\actors.list.gz");
            long y = System.currentTimeMillis();
            System.out.println("DONE WITH DOWNLOADING, USING NORMAL METHOD " +(y - x)/1000 + " seconds");                       
            System.out.println("The actors count is:  " + testing.getActorCount());
            System.out.println("The movies count is:  "  + testing.getMovieCount());
            testing.loadser(testing);      
            System.out.println("END OF DUMPING");      
            testing.findBacon();  
            c++;        
        if (c == 0 )
            long o= System.currentTimeMillis();   
            testing = testing.fastloading(testing);
            long y = System.currentTimeMillis(); 
            System.out.println("DONE WITH LOADING, FROM SERIALIZED FILES  " + (y-o)/1000 + "seconds");         
            System.out.println("The actors count is:   " + testing.getActorCount());
            System.out.println("The movies count is:   " + testing.getMovieCount());
            testing.findBacon();             
            Runtime rt = Runtime.getRuntime( );       
            int vmsize = (int) rt.totalMemory( );       
            System.out.println(" " );
            System.out.println( "The Virtual Machine size is : " + vmsize + " bytes" );
    //static class actor 
      private static final class Actor implements Serializable
         String name;
         int    data;  // number of shared movies,
                       // determined by computeSharedMovies          
         public String toString( )
           { return name; }
         public int hashCode( )
           { return name.hashCode( ); }         
         public boolean equals( Object other )
           { return (other instanceof Actor) && ( (Actor) other ).name.equals( name );}
    *Method to find the bacon number of each actor
    *and also send information, actors greater than 7,  to be print
      public void findBacon()
        ArrayList actorlist = new ArrayList();
        long time1 = System.currentTimeMillis();
        Actor actor2 = new Actor();    
        actor2.name = "Bacon, Kevin";
        actor2.data = 0;
        Set entries =map1.entrySet();
        Iterator itr = entries.iterator();
        Actor  actortoInfinity = new Actor();
        Set listofMovies = new HashSet();          
                    while(itr.hasNext())
                            Map.Entry thisPair = (Map.Entry)itr.next();
                            actortoInfinity = (Actor)thisPair.getKey();    
                            if((actortoInfinity.name).equals( actor2.name))
                                    actortoInfinity.data = 0 ;                     
                            else
                            actortoInfinity.data = INFINITY ;      
         Actor actor3 = new Actor() ;      
         LinkedList list = new LinkedList();
         list.addLast(actor2) ;
         Actor out = new Actor();
                    while (list.isEmpty() != true)
                            out = (Actor)list.getFirst();
                        list.removeFirst() ;
                                    for(int count = 0 ; count < ((ArrayList)(map1.get(out))).size() ; count++)
                                            String movie = (String)((ArrayList)(map1.get(out))).get(count);                      
                            if(listofMovies.contains(movie))
                            {continue;}
                            else
                            listofMovies.add(movie);
                                    for(int count2 = 0; count2 < ((ArrayList)(map2.get(movie))).size() ; count2++)
                                                    actor3  =   (Actor)(((ArrayList)(map2.get(movie))).get(count2) )  ;
                                            if(actor3.data == INFINITY)
                                                actor3.data = out.data + 1;
                                                list.addLast(actor3) ;
                                    if(actor3.data >= 7)
                                            actorlist.add(actor3);                                                                 
                                                             }//inner loop                
                         }//else
                     }//outer loop
                 }//while loop
         long time2 = System.currentTimeMillis();
         System.out.println("Done gettig Bacon Number(shortest path): " + (time2 - time1)/1000 + " Seconds");
                    for(int count = 0 ; count < actorlist.size() ; count++)
                                    print((Actor)(actorlist.get(count)));
    *Method used to print the chain of information within
    *each actor with Bacon number of 7 and over
    *it uses recursion to do it
      private void   printPath (Actor target)
        int c = 0 ;  
        Actor actor = new Actor();
            String movies ;
              if (target.data == 0)
                  System.out.println("-----------------------------END OF PATH-----------------------------");                           
              else
                    for(int x = 0 ; x < ((ArrayList)(map1.get(target))).size(); x++)
                    movies = (String)(((ArrayList)(map1.get(target))).get(x));
                    for (int y = 0 ; y < ((ArrayList)map2.get(movies)).size() ;  y++)
                            actor = (Actor)(((ArrayList)(map2.get(movies))).get(y));
                            if(actor.data == target.data - 1)
                                    System.out.println("* " + target + "  acted with " + actor+ " how's BK # is " + actor.data + ", both in movie: " + movies ) ;
                                c++;
                                break;                      
                     }//inner loop
                   if (c > 0)
                   break;
                  }//outer loop
              printPath(actor);
    *Gets the actor to print
    *and sends the same actor to
    *PrintInfo method to print
    *its chain
    *@param target the actor to print
      public void print(Actor target)
                            System.out.println(" " );
                                    System.out.println(" " ); 
                            System.out.println(" " );
                                    System.out.println(target.name + "'s Bacon number is: " +target.data);
                                    System.out.println(" " );
                                printPath(target);                                                                                                                                                                         
    *A method to load the Serialization file
    *so it,the file,  can be manipulated
    *@param x the DataBase object to be load
    *with all the files
    *@return the object x with all the file
    *withit
      public DataBase2 fastloading(DataBase2  target2) throws IOException
            try{ 
                    ObjectInputStream ii1 = new ObjectInputStream (new BufferedInputStream (new FileInputStream("file2.ser")));
                    target2= (DataBase2) ii1.readObject();
                    ii1.close();
        catch(ClassNotFoundException e )
           System.out.println("Error, class exception");
        catch(FileNotFoundException ex)
           System.out.println("Error, the file is not on the disk");       
        return target2;            
    *Method to write the Object DataBase2, created before, into a Serializable file
      public void loadser(DataBase2 ObjecttoLoad ) throws IOException
            ObjectOutputStream oo = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream("file2.ser")));
            oo.writeObject(ObjecttoLoad);
            oo.close();
    /**Method use to download files for the first time
    *it creates maps, which contains actor and movies
    *@param fileName it gets the file to be read and
    *used to get the data into the maps
      public void loadFile( String fileName ) throws IOException
          BufferedReader x = new BufferedReader ( new InputStreamReader(new GZIPInputStream (new BufferedInputStream( new FileInputStream(fileName)))));
          String line;          
          int start = 0 ;    
          ArrayList actorList = new ArrayList();
          ArrayList movies = new ArrayList();
          Actor key = new Actor();
          int p = 0;    //parameters
          int p2 =0 ;
          String you = null ;
          String year = null;
          String trimMovie = null;
          int par1 = 0;    //parameter
          int par2 =0;
          String addingmovie = null;
            while((line = x.readLine()) != null)
                if(line.indexOf("Name") == 0 )
                    start++;                       
                if(start == 0)
                continue;                       
                if( start >= 1)
                                  if(line.indexOf("-----------------------") == 0)
                                         break;                    
                                  if(((line.trim()).length()) == 0)
                                     continue;
                                  else if(line.indexOf("----") == 0)
                                     continue;
                                      else if (line.indexOf("Name") == 0)
                                             continue;
                                  else if(line.indexOf("\t") != 0)
                                     p  = line.indexOf("\t");
                                     p2 = line.lastIndexOf(")");                               
                                     String actor = (line.substring(0,p));                                        
                                             key = new Actor();
                                             key.name = actor;                               
                                             you = (line.substring(p, (p2 + 1)));                                                                                                                                                                                                                                                                              
                                             if (you.indexOf("(TV)") > 0)
                                                            continue;                                                                                              
                                     p = you.indexOf("\t");
                                     p2 = you.indexOf(")");
                                         you = (you.substring(p, p2 +1)).trim();                                    
                                          if(you.indexOf("\"") == 0)
                                                             continue;                      
                                     year = you ;      
                                     p = year.indexOf("(");
                                     p2 = year.indexOf(")");
                                     year = year.substring(p + 1 , p2);                                 
                                           if ( ( ((Comparable)year).compareTo("2002") ) >= 0)
                                                  continue;                                           
                                           if (map3.containsKey(you))
                                               else
                                                          map3.put(you, you);                                                                                              
                                     movies = new ArrayList();
                                     movies.add(map3.get(you));
                                     movies.trimToSize() ;                         
                                     map1.put(key , movies);
                                          if(map2.containsKey(map3.get(you)))
                                                              ((ArrayList)map2.get(map3.get(you))).add(key) ;
                                          else
                                                              actorList = new ArrayList();
                                                                          actorList.add(key);
                                                                      actorList.trimToSize() ;                                                                     
                                                                      map2.put(map3.get(you), actorList);
                             else if(line.indexOf("\t") == 0)
                                    par1 = line.indexOf(")");
                                    par2 = line.indexOf("\t");                                                          
                                    trimMovie = (line.substring(par2, par1 +1)).trim();
                                    // trimMovie = trimMovie.intern();                           
                                    if(map3.containsKey(trimMovie))
                                    else
                                    map3.put(trimMovie , trimMovie);
                                    String ye = (String)map3.get(trimMovie);
                                    par1 = trimMovie.indexOf("(");
                                    par2 = trimMovie .indexOf(")");                             
                                    ye = (ye.substring(par1 + 1 , par2));                                                               
                                    addingmovie = (line.trim());
                                        if(addingmovie.indexOf("(TV)") > 0)
                                            else if ( (((Comparable)ye).compareTo("2002")) >= 0)
                                            else  if(addingmovie.indexOf("\"") == 0)
                                            else if(addingmovie.indexOf("(archive footage)") > 0)
                                        else
                                            if(map1.containsKey(key))
                                                            ((ArrayList)map1.get(key)).add(map3.get(trimMovie));                            
                                                            ((ArrayList)map1.get(key)).trimToSize() ;
                                            else
                                                    movies = new ArrayList();
                                                    movies.add(map3.get(trimMovie));
                                                    movies.trimToSize() ;
                                                    map1.put(key, movies);
                                           if(map2.containsKey(trimMovie))
                                                {   ((ArrayList)map2.get(map3.get(trimMovie))).add(key);
                                                    ((ArrayList)map2.get(map3.get(trimMovie))).trimToSize() ;
                                               else
                                                            actorList = new ArrayList();
                                                                    actorList.add(key);
                                                            actorList.trimToSize() ;
                                                            map2.put(map3.get(trimMovie), actorList);
                                      }     //end of last else if          
                        }//end of if
                }//end of while
        }//end of method
    *Gives the amount of actor in the map of actors
    *return an int with the quantity
      public int getActorCount( )    
          return map1.size();
    *Gives the amount of movies in the map of movies
    *return an int with the quantity
      public int getMovieCount()
           return map2.size();
    }//end of DataBase2 class

  • [SOLVED]Error while installing a windows game(Witcher 2) in wine 1.4

    I'm using arch linux 64 bit with wine 1.4.
    and Was installing witcher 2 from dvd rom and the installer crashed at the very end.
    The error was with ISBEW64.exe
    this is the details of the error
    Unhandled exception: page fault on read access to 0x00000007 in 64-bit code (0x00007f0f1c10d96c).
    Register dump:
    rip:00007f0f1c10d96c rsp:000000000023f7c0 rbp:000000000002f7f0 eflags:00010246 ( R- -- I Z- -P- )
    rax:0000000000000000 rbx:0000000000000007 rcx:0000000000000007 rdx:00000000000100b0
    rsi:0000000000000000 rdi:00000000000400f0 r8:00000000000100e8 r9:0000000000000000 r10:0000000000000000
    r11:0000000000000029 r12:0000000000000000 r13:000000000002f730 r14:000000000003f950 r15:0000000000000000
    Stack dump:
    0x000000000023f7c0: 0000000000202020 0000000000000000
    0x000000000023f7d0: ffffffffffffffff ffffffffffffffff
    0x000000000023f7e0: 2020202020202020 2020202020202020
    0x000000000023f7f0: 0000000000202020 0000000000000000
    0x000000000023f800: ffffffffffffffff ffffffffffffffff
    0x000000000023f810: 0000000000202020 0000000000000000
    0x000000000023f820: 00ffffffffffffff ff00000000ff0000
    0x000000000023f830: 0000000000000000 0000000000000000
    0x000000000023f840: 0000000000000000 0000000000000000
    0x000000000023f850: 0000000000000000 0000000000000000
    0x000000000023f860: 0000000000000000 0000000000000000
    0x000000000023f870: 0000000000000000 0000000000000000
    Backtrace:
    =>0 0x00007f0f1c10d96c VariantClear+0xdc() in oleaut32 (0x000000000002f7f0)
    1 0x00007f0f1c0ee735 in oleaut32 (+0x3e734) (0x000000000002f7f0)
    2 0x00007f0f1c0e82a5 in oleaut32 (+0x382a4) (0x0000000000000000)
    3 0x000000014000139c in isbew64 (+0x139b) (0x0000000000000063)
    4 0x0000000140001fb6 in isbew64 (+0x1fb5) (0x0000000000000063)
    5 0x0000000140007cca in isbew64 (+0x7cc9) (0x0000000140007d18)
    6 0x000000007b870aa4 in kernel32 (+0x50aa3) (0x0000000140007d18)
    7 0x00007f0f1e85601b call_thread_func+0x6a() in ntdll (0x00007fff9c86c490)
    8 0x00007f0f1e84f786 RtlRaiseException+0x7d() in ntdll (0x00007fff9c86c490)
    9 0x00007f0f1e8216c6 in ntdll (+0x416c5) (0x00007fff9c86c490)
    10 0x00007f0f1f2b1173 wine_call_on_stack+0x12() in libwine.so.1 (0x00007fff9c86c490)
    11 0x00007f0f1f2b11c9 wine_switch_to_stack+0x8() in libwine.so.1 (0x00007fffffbef000)
    12 0x00007f0f1e827490 LdrInitializeThunk+0x45f() in ntdll (0x00007fffffbef000)
    13 0x000000007b877015 __wine_kernel_init+0x904() in kernel32 (0x00007fff9c86d320)
    14 0x00007f0f1e827df4 __wine_process_init+0x273() in ntdll (0x0000000000000400)
    15 0x00007f0f1f2af0f5 wine_init+0x294() in libwine.so.1 (0x0000000000000400)
    16 0x000000007bf00cc1 main+0x80() in <wine-loader> (0x0000000000000003)
    17 0x00007f0f1ece238d __libc_start_main+0xec() in libc.so.6 (0x0000000000000000)
    18 0x000000007bf00dbd _start+0x28() in <wine-loader> (0x0000000000000000)
    0x00007f0f1c10d96c VariantClear+0xdc in oleaut32: movzwl (%rbx),%eax
    Modules:
    Module Address Debug info Name (62 modules)
    ELF 7b800000- 7bc41000 Dwarf kernel32<elf>
    \-PE 7b820000- 7bc41000 \ kernel32
    ELF 7be00000- 7c103000 Dwarf <wine-loader>
    PE 140000000- 14001d000 Export isbew64
    ELF 7f0f18b92000- 7f0f18dcb000 Deferred uxtheme<elf>
    \-PE 7f0f18ba0000- 7f0f18dcb000 \ uxtheme
    ELF 7f0f18dcb000- 7f0f18fd2000 Deferred libxfixes.so.3
    ELF 7f0f18fd2000- 7f0f191dc000 Deferred libxcursor.so.1
    ELF 7f0f192d4000- 7f0f194fe000 Deferred libexpat.so.1
    ELF 7f0f194fe000- 7f0f19734000 Deferred libfontconfig.so.1
    ELF 7f0f19734000- 7f0f19944000 Deferred libxi.so.6
    ELF 7f0f19944000- 7f0f19b47000 Deferred libxcomposite.so.1
    ELF 7f0f19b47000- 7f0f19d50000 Deferred libxrandr.so.2
    ELF 7f0f19d50000- 7f0f19f5b000 Deferred libxrender.so.1
    ELF 7f0f19f5b000- 7f0f1a161000 Deferred libxxf86vm.so.1
    ELF 7f0f1a161000- 7f0f1a364000 Deferred libxinerama.so.1
    ELF 7f0f1a364000- 7f0f1a58b000 Deferred imm32<elf>
    \-PE 7f0f1a370000- 7f0f1a58b000 \ imm32
    ELF 7f0f1a58b000- 7f0f1a791000 Deferred libxdmcp.so.6
    ELF 7f0f1a791000- 7f0f1a995000 Deferred libxau.so.6
    ELF 7f0f1a995000- 7f0f1abb0000 Deferred libxcb.so.1
    ELF 7f0f1abb0000- 7f0f1adb5000 Deferred libuuid.so.1
    ELF 7f0f1adb5000- 7f0f1afd1000 Deferred libice.so.6
    ELF 7f0f1afd1000- 7f0f1b30d000 Deferred libx11.so.6
    ELF 7f0f1b30d000- 7f0f1b520000 Deferred libxext.so.6
    ELF 7f0f1b520000- 7f0f1b728000 Deferred libsm.so.6
    ELF 7f0f1b728000- 7f0f1b9ca000 Deferred winex11<elf>
    \-PE 7f0f1b740000- 7f0f1b9ca000 \ winex11
    ELF 7f0f1b9ca000- 7f0f1bbda000 Deferred libbz2.so.1.0
    ELF 7f0f1bbda000- 7f0f1bdf0000 Deferred libz.so.1
    ELF 7f0f1bdf0000- 7f0f1c08e000 Deferred libfreetype.so.6
    ELF 7f0f1c08e000- 7f0f1c3d4000 Dwarf oleaut32<elf>
    \-PE 7f0f1c0b0000- 7f0f1c3d4000 \ oleaut32
    ELF 7f0f1c3d4000- 7f0f1c751000 Deferred ole32<elf>
    \-PE 7f0f1c400000- 7f0f1c751000 \ ole32
    ELF 7f0f1c751000- 7f0f1ca50000 Deferred comctl32<elf>
    \-PE 7f0f1c760000- 7f0f1ca50000 \ comctl32
    ELF 7f0f1ca50000- 7f0f1cce0000 Deferred shlwapi<elf>
    \-PE 7f0f1ca60000- 7f0f1cce0000 \ shlwapi
    ELF 7f0f1cce0000- 7f0f1d13b000 Deferred shell32<elf>
    \-PE 7f0f1cd00000- 7f0f1d13b000 \ shell32
    ELF 7f0f1d13b000- 7f0f1d354000 Deferred version<elf>
    \-PE 7f0f1d140000- 7f0f1d354000 \ version
    ELF 7f0f1d354000- 7f0f1d645000 Deferred gdi32<elf>
    \-PE 7f0f1d370000- 7f0f1d645000 \ gdi32
    ELF 7f0f1d645000- 7f0f1d9df000 Deferred user32<elf>
    \-PE 7f0f1d660000- 7f0f1d9df000 \ user32
    ELF 7f0f1d9df000- 7f0f1dc5e000 Deferred advapi32<elf>
    \-PE 7f0f1d9f0000- 7f0f1dc5e000 \ advapi32
    ELF 7f0f1dc5e000- 7f0f1def0000 Deferred rpcrt4<elf>
    \-PE 7f0f1dc70000- 7f0f1def0000 \ rpcrt4
    ELF 7f0f1def0000- 7f0f1e0fd000 Deferred libnss_files.so.2
    ELF 7f0f1e2c2000- 7f0f1e4d8000 Deferred libgcc_s.so.1
    ELF 7f0f1e4d8000- 7f0f1e7cc000 Deferred libm.so.6
    ELF 7f0f1e7cc000- 7f0f1eaba000 Dwarf ntdll<elf>
    \-PE 7f0f1e7e0000- 7f0f1eaba000 \ ntdll
    ELF 7f0f1eabd000- 7f0f1ecc1000 Deferred libdl.so.2
    ELF 7f0f1ecc1000- 7f0f1f062000 Dwarf libc.so.6
    ELF 7f0f1f063000- 7f0f1f27f000 Deferred libpthread.so.0
    ELF 7f0f1f2a7000- 7f0f1f5d9000 Dwarf libwine.so.1
    ELF 7f0f1f5da000- 7f0f1f7fd000 Deferred ld-linux-x86-64.so.2
    ELF 7fff9c9ff000- 7fff9ca00000 Deferred [vdso].so
    Threads:
    process tid prio (all id:s are in hex)
    0000000e services.exe
    0000001f 0
    0000001e 0
    00000015 0
    00000010 0
    0000000f 0
    00000012 winedevice.exe
    0000001c 0
    00000019 0
    00000014 0
    00000013 0
    0000001a plugplay.exe
    00000020 0
    0000001d 0
    0000001b 0
    0000002c rpcss.exe
    00000009 0
    00000026 0
    00000032 0
    00000031 0
    00000030 0
    0000002e 0
    0000002d 0
    00000041 explorer.exe
    00000017 0
    00000043 (D) C:\users\ebs\Temp\{43B73120-0931-47A3-9D74-0EB39F7926A3}\ISBEW64.exe
    00000049 0
    0000003f 0
    00000045 0
    0000003b 0 <==
    System information:
    Wine build: wine-1.4
    Platform: x86_64
    Host system: Linux
    Host version: 3.2.9-1-ARCH
    How can I fix this error and play witcher 2?
    Any help is highly appreciated
    Last edited by ebshankar (2012-03-16 13:11:04)

    Kaustic wrote:
    Edit: Btw, you should have left this thread as [SOLVED] and created a new thread for the new problem. Please read: https://wiki.archlinux.org/index.php/Fo … ow_to_Post
    Edit2: This problem might not have anything to do with mouse sensitivity and may just be a bug in Wine or the Game, however it's worth a try to eliminate the possibility. (Wine had a similar issue with CS:S and erratic mouse movement (just jumpy) and was patched (wine 1.3.35 to 1.3.36 iirc))
    Righto,
    So your mouse is either "PS/2 Generic Mouse" or "OM". Whichever it is we'll only be paying attention to the id=#.
    Before I start, I'll assume that you've turned off mouse acceleration, which is ideal for games. You also might have to tweak these settings to find a happy medium.
    I'm also assuming that device 16 is your mouse (PS/2 Generic Mouse).
    My idea is to temporarily lower the mouse sensitivity when you launch the game, and then return it to default when you close the game.
    Firstly list current properties for your mouse, make note of the numbers in the parentheses. Most of the options are self explanatory.
    $ xinput --list-props 16
    [snip]
    Device Accel Profile (252): 0 #Change this to "-1" to completely disable acceleration
    Device Accel Constant Deceleration (253): 1.000000
    Device Accel Adaptive Deceleration (254): 1.000000
    Device Accel Velocity Scaling (255): 10.000000
    [snip]
    Disable mouse acceleration (I have this set by default)
    $ xinput --set-prop 16 "Device Accel Profile" -1
    # Or, if you paid attention to the number in parentheses, you can use:
    $ xinput --set-prop 16 252 -1 # less typing
    To lower your mouse sensitivity, simply do
    $ xinput --set-prop 16 "Device Accel Constant Deceleration" 4 #The higher the slower
    # Or
    $ xinput --set-prop 16 253 4
    Then you simply use a bit of shell script to launch your game (e.g.
    # cd to dir of game's .exe | lower mouse sens | launch game | restore mouse sens to default
    cd ~/.wine_rack/witcher_2/drive_c/The\ Witcher\ 2/bin; xinput --set-prop 16 253 4; WINEPREFIX=~/.wine_rack/witcher_2 WINEDEBUG=-all wine witcher2.exe; xinput --set-prop 16 253 1
    This solution is a little hacky but it should work
    You can probably find out more on your own from here on out, good luck with it.
    (My personal solution to mouse issues was to just disable mouse acceleration, it's fine for me.)
    I actually thought about creating a new thread but momentarily felt I had to write here itself because everything regarding troubleshooting witcher 2 will be here.
    your solution did decrease the mouse sensitivity but, the mouse continues to be jumpy in the game while moving it from left to right or top to bottom.
    Witcher 2 has a mouse emulator built in and some ppl(even windows users) have experienced this problem but for most of them, editing this file called 'user.ini' and setting smoothness = 0 worked. But not for me. Strangely many ppl playing witcher 2 in wine didn't experience this problem at all.
    I think this can be a bug in witcher 2 which can make only some models of mice jumpy.
    I also have an 'enter gamepad' and the game doesn't support it but one joystick works very smoothly (unlike the mouse) so presently I'm searching online for ways to get the gamepad working with the game
    Last edited by ebshankar (2012-03-16 08:53:54)

  • 2 player web-based Flash game problem

    I have a two player web-based Flash game. The Flash calls a
    JavaScript function on the webpage to get and store the user's IP.
    Then an XML file with user's game data is loaded and parsed. The IP
    address is used to identify which player is player 1 and which is
    player 2 according to the XML file. There is a Java applet to send
    and receive messages between the players.
    The first player loads everything just fine. All the first
    player's messages regarding the progress in loading different parts
    of the code sent by the game for debugging are displayed in the
    Java applet's text box, but none of the second player's messages
    sent by the game for debugging are displayed.
    The problem is that the second player's ActionScript code
    appears not to be executing except that I do get a message in the
    game that the XML file attempted to load but was not successful.
    The IP address call is not made and no messages can be sent to the
    other player. The second player's Java applet displays only the
    messages for debugging that came from the first player's game and
    any chat messages sent by the first player.
    This problem always happens to the second player, never to
    the first player. Both player's are always using IE6 or IE7.
    Does anyone have some idea(s) what could cause only the
    second player's ActionScript code not to execute and/or not to load
    an XML file correctly?
    This is just a general question, so any general answers would
    be appreciated. Code specific answers are hopefully not required.
    Thank You in advance.

    Hi,
    I am not very familiar with the multiplayer Game development. For multiplayer games, you'll need to set up a matchmaking server and have the clients connect to it. It can then pair them off and facilitate communications. If the clients have publicly available
    network addresses then it can introduce them and they can talk directly to each other.There isn't anything built in for this so you'll need to either build your own or find a third party implementation. If you are using Unity3d then check out
    http://docs.unity3d.com/Documentation/Components/net-MasterServer.html
    Also, you can use Xbox services, and I find an article below:
    https://msdn.microsoft.com/en-us/library/bb975801.aspx
    For windows Azure problem, you should go to windows Azure forum.
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Games do not detect 740m, default to intel 4600 card (HP Envy Laptop)

    If I uninstall the HD card, computer defaults to VGA... Will not run without the Intel Card, nor will the nVidia panel even open without it being activated. Then games only detect the Integrated Card, so there is no way to run the computer with just the nVidia card...
    Skyrim, Mass Effect 1... None of my games detect the nVidia card.
    I have tried fiddling with the nVidia panel forcing activation of the 740m. Games still do not recognize the card. Tried reinstalling everything - nothing.
    I see this problem all over the internet, what worries me is that I see no solutions whatsoever.
    System Information
    Time of this report: 10/17/2014, 16:02:00
           Machine name: DEVLIN-PC
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140303-2144)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: HP ENVY TS 15 Notebook PC
                   BIOS: Default System BIOS
              Processor: Intel(R) Core(TM) i7-4702MQ CPU @ 2.20GHz (8 CPUs), ~2.2GHz
                 Memory: 16384MB RAM
    Available OS Memory: 16156MB RAM
              Page File: 2454MB used, 29855MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 64bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: Intel(R) HD Graphics 4600
           Manufacturer: Intel Corporation
              Chip type: Intel(R) HD Graphics Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_0416&SUBSYS_1963103C&REV_06
         Display Memory: 4024 MB
       Dedicated Memory: 1976 MB
          Shared Memory: 2048 MB
           Current Mode: 1920 x 1080 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: CMN15BB
            Native Mode: 1920 x 1080(p) (60.049Hz)
            Output Type: Internal
            Driver Name: igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igdumdim32,igd10iumd32,igd10iumd32
    Driver File Version: 9.18.0010.3071 (English)
         Driver Version: 9.18.10.3071
            DDI Version: 11
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 3/20/2013 01:31:46, 8647680 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B78E66-4756-11CF-587C-6E39BBC2C435}
              Vendor ID: 0x10DE
              Device ID: 0x1292
              SubSys ID: 0x1963103C
            Revision ID: 0x00A1
     Driver Strong Name: oem17.inf:Intel.Mfg.NTamd64:iHSWM0:9.18.10.3071ci\ven_8086&dev_0416&subsys_1963103c
         Rank Of Driver: 00E00001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
       Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers / HP (IDT High Definition Audio CODEC)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_76E0&SUBSYS_103C1963&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6454.0000 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: n/a
              Date and Size: 2/5/2013 07:59:48, 544768 bytes
                Other Files:
            Driver Provider: IDT
             HW Accel Level: Basic
                  Cap Flags: 0x0
        Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Internal Microphone Array (IDT High Definition Audio CODEC)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6454.0000 (English)
          Driver Attributes: Final Retail
              Date and Size: 2/5/2013 07:59:48, 544768 bytes
                  Cap Flags: 0x0
               Format Flags: 0x0
                Description: Stereo Mix (IDT High Definition Audio CODEC)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6454.0000 (English)
          Driver Attributes: Final Retail
              Date and Size: 2/5/2013 07:59:48, 544768 bytes
                  Cap Flags: 0x0
               Format Flags: 0x0
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: eGalaxTouch EXC7910-1065-12.01.00
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x0EEF, 0xA124
            FF Driver: n/a
          Device Name: eGalaxTouch EXC7910-1065-12.01.00
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x0EEF, 0xA124
            FF Driver: n/a
          Device Name: Razer Naga
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x002E
            FF Driver: n/a
          Device Name: Razer Naga
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x002E
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x8C2D
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    | Driver: usbhub.sys, 11/26/2013 21:41:37, 343040 bytes
    | Driver: usbd.sys, 11/26/2013 21:41:03, 7808 bytes
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x8008
    | | Location: Port_#0001.Hub_#0001
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    | | Driver: usbhub.sys, 11/26/2013 21:41:37, 343040 bytes
    Gameport Devices
    PS/2 Devices
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    | Driver: i8042prt.sys, 7/13/2009 19:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/13/2009 21:48:04, 50768 bytes
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/20/2010 23:23:47, 33280 bytes
    | Driver: kbdclass.sys, 7/13/2009 21:48:04, 50768 bytes
    |
    + Razer Naga
    | Vendor/Product ID: 0x1532, 0x002E
    | Matching Device ID: hid\vid_1532&pid_002e&mi_01&col01
    | Upper Filters: rzudd
    | Service: kbdhid
    | Driver: rzudd.sys, 9/13/2013 01:49:50, 142008 bytes
    | Driver: kbdhid.sys, 11/20/2010 23:23:47, 33280 bytes
    | Driver: kbdclass.sys, 7/13/2009 21:48:04, 50768 bytes
    | Driver: WdfCoInstaller01009.dll, 7/14/2009 14:21:12, 1721576 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/13/2009 19:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/13/2009 21:48:04, 50768 bytes
    |
    + Synaptics SMBus ClickPad
    | Matching Device ID: *syn1e89
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/13/2009 20:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/13/2009 21:48:27, 49216 bytes
    |
    + Razer Naga
    | Vendor/Product ID: 0x1532, 0x002E
    | Matching Device ID: hid\vid_1532&pid_002e&mi_00
    | Upper Filters: rzudd
    | Service: mouhid
    | Driver: rzudd.sys, 9/13/2013 01:49:50, 142008 bytes
    | Driver: mouhid.sys, 7/13/2009 20:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/13/2009 21:48:27, 49216 bytes
    | Driver: WdfCoInstaller01009.dll, 7/14/2009 14:21:12, 1721576 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 11/20/2010 23:23:47, 63360 bytes
    | Driver: sermouse.sys, 7/13/2009 20:00:20, 26624 bytes
    | Driver: mouclass.sys, 7/13/2009 21:48:27, 49216 bytes
    Disk & DVD/CD-ROM Drives
          Drive: C:
     Free Space: 77.1 GB
    Total Space: 244.0 GB
    File System: NTFS
          Model: Samsung SSD 840 PRO Series ATA Device
          Drive: H:
     Free Space: 246.1 GB
    Total Space: 476.9 GB
    File System: NTFS
          Model: SAMSUNG HM501II USB Device
          Drive: F:
          Model: QVW 4523OTE34H2 SCSI CdRom Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 147456 bytes
    System Devices
         Name: Intel(R) 8 Series/C220 Series USB EHCI #1 - 8C26
    Device ID: PCI\VEN_8086&DEV_8C26&SUBSYS_1963103C&REV_05\3&11583659&0&E8
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:11, 53248 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:11, 325120 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:37, 343040 bytes
         Name: Synaptics SMBus Driver
    Device ID: PCI\VEN_8086&DEV_8C22&SUBSYS_1963103C&REV_05\3&11583659&0&FB
       Driver: n/a
         Name: Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor DRAM Controller - 0C04
    Device ID: PCI\VEN_8086&DEV_0C04&SUBSYS_1963103C&REV_06\3&11583659&0&00
       Driver: n/a
         Name: NVIDIA GeForce GT 740M
    Device ID: PCI\VEN_10DE&DEV_1292&SUBSYS_1963103C&REV_A1\4&1EEE4BDD&0&0008
       Driver: C:\Program Files\NVIDIA Corporation\Drs\dbInstaller.exe, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 441120 bytes
       Driver: C:\Program Files\NVIDIA Corporation\Drs\nvdrsdb.bin, 7/2/2014 16:48:32, 1192732 bytes
       Driver: C:\Windows\System32\DriverStore\FileRepository\nvhmi.inf_amd64_neutral_7ab759e51b9da259\NvCplSetupInt.exe, 1.00.0001.0000 (English), 7/2/2014 16:48:32, 83141328 bytes
       Driver: C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\Nvd3d9wrap.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 164496 bytes
       Driver: C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\detoured.dll, 7/2/2014 16:48:32, 13272 bytes
       Driver: C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\nvdxgiwrap.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 113008 bytes
       Driver: C:\Program Files\NVIDIA Corporation\coprocmanager\Nvd3d9wrapx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 191264 bytes
       Driver: C:\Program Files\NVIDIA Corporation\coprocmanager\detoured.dll, 7/2/2014 16:48:32, 13088 bytes
       Driver: C:\Program Files\NVIDIA Corporation\coprocmanager\nvdxgiwrapx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 130488 bytes
       Driver: C:\Program Files\NVIDIA Corporation\license.txt, 7/2/2014 16:48:32, 21904 bytes
       Driver: C:\Program Files\NVIDIA Corporation\NVSMI\MCU.exe, 1.01.5204.20580 (English), 7/2/2014 16:48:32, 842528 bytes
       Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvdebugdump.exe, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 229320 bytes
       Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.1.pdf, 7/2/2014 16:48:32, 56700 bytes
       Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 338776 bytes
       Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 649160 bytes
       Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL.dll, 1.00.0000.0000 (English), 7/2/2014 16:48:32, 61912 bytes
       Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL64.dll, 1.00.0000.0000 (English), 7/2/2014 16:48:32, 75040 bytes
       Driver: C:\Windows\system32\DRIVERS\nvlddmkm.sys, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 12866008 bytes
       Driver: C:\Windows\system32\DRIVERS\nvpciflt.sys, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 32544 bytes
       Driver: C:\Windows\system32\NvFBC64.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 903624 bytes
       Driver: C:\Windows\system32\NvIFR64.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 944928 bytes
       Driver: C:\Windows\system32\NvIFROpenGL.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 391640 bytes
       Driver: C:\Windows\system32\nvEncodeAPI64.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 502232 bytes
       Driver: C:\Windows\system32\nvapi64.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 3196816 bytes
       Driver: C:\Windows\system32\nvcompiler.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 22994208 bytes
       Driver: C:\Windows\system32\nvcuda.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 13835208 bytes
       Driver: C:\Windows\system32\nvcuvid.dll, 7.17.0013.4052 (English), 7/2/2014 16:48:32, 4247000 bytes
       Driver: C:\Windows\system32\nvd3dumx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 17555104 bytes
       Driver: C:\Windows\system32\nvinfo.pb, 7/2/2014 16:48:32, 26353 bytes
       Driver: C:\Windows\system32\nvinitx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 166568 bytes
       Driver: C:\Windows\system32\nvoglshim64.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 354016 bytes
       Driver: C:\Windows\system32\nvoglv64.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 31512520 bytes
       Driver: C:\Windows\system32\nvopencl.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 13922752 bytes
       Driver: C:\Windows\system32\nvumdshimx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 965312 bytes
       Driver: C:\Windows\system32\nvwgf2umx.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 18626304 bytes
       Driver: C:\Windows\SysWow64\NvFBC.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 869152 bytes
       Driver: C:\Windows\SysWow64\NvIFR.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 907096 bytes
       Driver: C:\Windows\SysWow64\NvIFROpenGL.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 348120 bytes
       Driver: C:\Windows\SysWow64\nvEncodeAPI.dll, 6.14.0013.4052 (English), 7/2/2014 16:48:32, 418760 bytes
       Driver: C:\Windows\SysWow64\nvapi.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 2814656 bytes
       Driver: C:\Windows\SysWow64\nvcompiler.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 15294296 bytes
       Driver: C:\Windows\SysWow64\nvcuda.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 11222048 bytes
       Driver: C:\Windows\SysWow64\nvcuvid.dll, 7.17.0013.4052 (English), 7/2/2014 16:48:32, 3989960 bytes
       Driver: C:\Windows\SysWow64\nvd3dum.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 14498552 bytes
       Driver: C:\Windows\SysWow64\nvinit.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 146480 bytes
       Driver: C:\Windows\SysWow64\nvoglshim32.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 305600 bytes
       Driver: C:\Windows\SysWow64\nvoglv32.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 24196896 bytes
       Driver: C:\Windows\SysWow64\nvopencl.dll, 8.17.0013.4052 (English), 7/2/2014 16:48:32, 11283344 bytes
       Driver: C:\Windows\SysWow64\nvumdshim.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 846832 bytes
       Driver: C:\Windows\SysWow64\nvwgf2um.dll, 9.18.0013.4052 (English), 7/2/2014 16:48:32, 16122344 bytes
       Driver: C:\Windows\system32\nvdispco6434052.dll, 2.00.0040.0004 (English), 7/2/2014 16:48:32, 1890080 bytes
       Driver: C:\Windows\system32\nvdispgenco6434052.dll, 2.00.0019.0002 (English), 7/2/2014 16:48:32, 1539928 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_8C20&SUBSYS_1963103C&REV_05\3&11583659&0&D8
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 122368 bytes
         Name: Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01
    Device ID: PCI\VEN_8086&DEV_0C01&SUBSYS_1963103C&REV_06\3&11583659&0&08
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 184704 bytes
         Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #7 - 8C1C
    Device ID: PCI\VEN_8086&DEV_8C1C&SUBSYS_1963103C&REV_D5\3&11583659&0&E6
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 184704 bytes
         Name: Intel(R) Centrino(R) Wireless-N 2230
    Device ID: PCI\VEN_8086&DEV_0887&SUBSYS_40628086&REV_C4\4&2A3E2E64&0&00E2
       Driver: C:\Windows\system32\DRIVERS\Netwsw00.sys, 15.02.0000.0019 (English), 6/3/2012 11:33:44, 11499008 bytes
       Driver: C:\Windows\system32\Netwcw00.dll, 15.01.0000.0011 (English), 2/17/2012 02:34:58, 885520 bytes
       Driver: C:\Windows\system32\Netwrw00.dll, 15.01.0000.0011 (English), 2/17/2012 02:35:00, 3381008 bytes
       Driver: C:\Windows\system32\drivers\vwifibus.sys, 6.01.7600.16385 (English), 7/13/2009 20:07:21, 24576 bytes
         Name: Intel(R) HM87 LPC Controller - 8C4B
    Device ID: PCI\VEN_8086&DEV_8C4B&SUBSYS_1963103C&REV_05\3&11583659&0&F8
       Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/13/2009 21:48:27, 15424 bytes
         Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #4 - 8C16
    Device ID: PCI\VEN_8086&DEV_8C16&SUBSYS_1963103C&REV_D5\3&11583659&0&E3
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 184704 bytes
         Name: Intel(R) HD Graphics 4600
    Device ID: PCI\VEN_8086&DEV_0416&SUBSYS_1963103C&REV_06\3&11583659&0&10
       Driver: C:\Windows\system32\DRIVERS\igdkmd64.sys, 9.18.0010.3071 (English), 3/20/2013 01:31:42, 4534784 bytes
       Driver: C:\Windows\system32\igd10iumd64.dll, 9.18.0010.3071 (English), 3/20/2013 01:31:42, 9802240 bytes
       Driver: C:\Windows\system32\igdusc64.dll, 9.18.0010.3071 (English), 3/20/2013 01:23:32, 4359168 bytes
       Driver: C:\Windows\system32\igfxcmrt64.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 1040384 bytes
       Driver: C:\Windows\system32\igfx11cmrt64.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 575488 bytes
       Driver: C:\Windows\system32\igfxcmjit64.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 3511296 bytes
       Driver: C:\Windows\system32\IccLibDll_x64.dll, 3/20/2013 01:25:42, 94208 bytes
       Driver: C:\Windows\system32\igdde64.dll, 3/20/2013 01:31:42, 286720 bytes
       Driver: C:\Windows\SysWow64\igdde32.dll, 3/20/2013 01:32:02, 240640 bytes
       Driver: C:\Windows\system32\iglhxs64.vp, 3/20/2013 01:35:56, 17502 bytes
       Driver: C:\Windows\system32\iglhxo64.vp, 3/20/2013 01:25:42, 44025 bytes
       Driver: C:\Windows\system32\iglhxc64.vp, 3/20/2013 01:25:42, 43494 bytes
       Driver: C:\Windows\system32\iglhxg64.vp, 3/20/2013 01:25:42, 43256 bytes
       Driver: C:\Windows\system32\iglhxo64_dev.vp, 3/20/2013 01:25:42, 42079 bytes
       Driver: C:\Windows\system32\iglhxc64_dev.vp, 3/20/2013 01:25:42, 43816 bytes
       Driver: C:\Windows\system32\iglhxg64_dev.vp, 3/20/2013 01:25:42, 43298 bytes
       Driver: C:\Windows\system32\iglhxa64.vp, 3/20/2013 01:25:42, 1125 bytes
       Driver: C:\Windows\system32\iglhxa64.cpa, 3/20/2013 01:25:42, 2813952 bytes
       Driver: C:\Windows\system32\iglhcp64.dll, 3.00.0001.0026 (English), 3/20/2013 01:25:42, 216064 bytes
       Driver: C:\Windows\system32\iglhsip64.dll, 9.00.0000.1244 (English), 3/20/2013 01:25:42, 861184 bytes
       Driver: C:\Windows\SysWow64\igdusc32.dll, 9.18.0010.3071 (English), 3/20/2013 01:24:24, 3401728 bytes
       Driver: C:\Windows\SysWow64\igdumdim32.dll, 9.18.0010.3071 (English), 3/20/2013 01:32:04, 7861760 bytes
       Driver: C:\Windows\SysWow64\igdail32.dll, 3/20/2013 01:32:00, 103936 bytes
       Driver: C:\Windows\SysWow64\igfxdv32.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:54, 348160 bytes
       Driver: C:\Windows\SysWow64\igd10iumd32.dll, 9.18.0010.3071 (English), 3/20/2013 01:32:02, 9362944 bytes
       Driver: C:\Windows\SysWow64\iglhcp32.dll, 3.00.0001.0026 (English), 3/20/2013 01:25:42, 180224 bytes
       Driver: C:\Windows\SysWow64\iglhsip32.dll, 9.00.0000.1244 (English), 3/20/2013 01:25:42, 856576 bytes
       Driver: C:\Windows\SysWow64\IntelCpHeciSvc.exe, 9.00.0000.1340 (English), 3/22/2013 16:16:26, 279024 bytes
       Driver: C:\Windows\SysWow64\igfxcmrt32.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 931840 bytes
       Driver: C:\Windows\SysWow64\igfx11cmrt32.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 542720 bytes
       Driver: C:\Windows\SysWow64\igfxcmjit32.dll, 2.04.0000.1020 (English), 3/20/2013 01:25:42, 3121152 bytes
       Driver: C:\Windows\system32\difx64.exe, 1.04.0001.0000 (English), 3/22/2013 16:16:22, 185840 bytes
       Driver: C:\Windows\system32\hccutils.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 108032 bytes
       Driver: C:\Windows\system32\igfxsrvc.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 65536 bytes
       Driver: C:\Windows\system32\igfxsrvc.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:26, 529392 bytes
       Driver: C:\Windows\system32\igfxpph.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 357888 bytes
       Driver: C:\Windows\system32\igfxcpl.cpl, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 124928 bytes
       Driver: C:\Windows\system32\igfxdev.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 434176 bytes
       Driver: C:\Windows\system32\igfxdo.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 140288 bytes
       Driver: C:\Windows\system32\igfxtray.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:26, 165872 bytes
       Driver: C:\Windows\system32\hkcmd.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:24, 407536 bytes
       Driver: C:\Windows\system32\igfxress.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 8901632 bytes
       Driver: C:\Windows\system32\igfxpers.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:24, 441840 bytes
       Driver: C:\Windows\system32\igfxTMM.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 345600 bytes
       Driver: C:\Windows\system32\gfxSrvc.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 191488 bytes
       Driver: C:\Windows\system32\GfxUIEx.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:22, 7558640 bytes
       Driver: C:\Windows\system32\GfxUIEx.exe.config, 3/20/2013 01:27:40, 1806 bytes
       Driver: C:\Windows\system32\DPTopologyApp.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:22, 534000 bytes
       Driver: C:\Windows\system32\DPTopologyApp.exe.config, 3/20/2013 01:27:40, 935 bytes
       Driver: C:\Windows\system32\CustomModeApp.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:20, 397808 bytes
       Driver: C:\Windows\system32\CustomModeApp.exe.config, 3/20/2013 01:27:40, 935 bytes
       Driver: C:\Windows\system32\GfxRes.dll, 1.00.0000.0000 (English), 3/20/2013 01:27:40, 2384896 bytes
       Driver: C:\Windows\system32\MetroIntelGenericUIFramework.dll, 1.00.0000.0000 (English), 3/20/2013 01:27:42, 3988480 bytes
       Driver: C:\Windows\system32\GfxUIHotKeyMenu.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:24, 745968 bytes
       Driver: C:\Windows\system32\GfxUIHotKeyMenu.exe.config, 3/20/2013 01:27:42, 264 bytes
       Driver: C:\Windows\system32\IGFXDEVLib.dll, 1.00.0000.0000 (Invariant Language), 3/20/2013 01:27:42, 12288 bytes
       Driver: C:\Windows\system32\igfxext.exe, 8.15.0010.3071 (English), 3/22/2013 16:16:24, 250864 bytes
       Driver: C:\Windows\system32\igfxexps.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:40, 29184 bytes
       Driver: C:\Windows\SysWow64\igfxexps32.dll, 8.15.0010.3071 (English), 3/20/2013 01:27:50, 25088 bytes
       Driver: C:\Windows\system32\igfxrara.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 438272 bytes
       Driver: C:\Windows\system32\igfxrchs.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 430080 bytes
       Driver: C:\Windows\system32\igfxrcht.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 430592 bytes
       Driver: C:\Windows\system32\igfxrdan.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 440320 bytes
       Driver: C:\Windows\system32\igfxrdeu.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 442880 bytes
       Driver: C:\Windows\system32\igfxrenu.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 288256 bytes
       Driver: C:\Windows\system32\igfxresn.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 443904 bytes
       Driver: C:\Windows\system32\igfxrfin.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 441344 bytes
       Driver: C:\Windows\system32\igfxrfra.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 443392 bytes
       Driver: C:\Windows\system32\igfxrheb.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 438784 bytes
       Driver: C:\Windows\system32\igfxrhrv.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 441856 bytes
       Driver: C:\Windows\system32\igfxrita.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 442880 bytes
       Driver: C:\Windows\system32\igfxrjpn.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 434176 bytes
       Driver: C:\Windows\system32\igfxrkor.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 432640 bytes
       Driver: C:\Windows\system32\igfxrnld.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 442880 bytes
       Driver: C:\Windows\system32\igfxrnor.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 440832 bytes
       Driver: C:\Windows\system32\igfxrplk.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 443392 bytes
       Driver: C:\Windows\system32\igfxrptb.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 440832 bytes
       Driver: C:\Windows\system32\igfxrptg.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 441856 bytes
       Driver: C:\Windows\system32\igfxrrom.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 442368 bytes
       Driver: C:\Windows\system32\igfxrrus.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 442880 bytes
       Driver: C:\Windows\system32\igfxrsky.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 442368 bytes
       Driver: C:\Windows\system32\igfxrslv.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 441344 bytes
       Driver: C:\Windows\system32\igfxrsve.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 441856 bytes
       Driver: C:\Windows\system32\igfxrtha.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 440320 bytes
       Driver: C:\Windows\system32\igfxrcsy.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 442368 bytes
       Driver: C:\Windows\system32\igfxrell.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 443904 bytes
       Driver: C:\Windows\system32\igfxrhun.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:42, 441856 bytes
       Driver: C:\Windows\system32\igfxrtrk.lrc, 8.15.0010.3071 (English), 3/20/2013 01:27:44, 440832 bytes
       Driver: C:\Windows\system32\Gfxres.ar-SA.resources, 3/20/2013 01:27:42, 192779 bytes
       Driver: C:\Windows\system32\Gfxres.cs-CZ.resources, 3/20/2013 01:27:42, 165389 bytes
       Driver: C:\Windows\system32\Gfxres.da-DK.resources, 3/20/2013 01:27:42, 159440 bytes
       Driver: C:\Windows\system32\Gfxres.de-DE.resources, 3/20/2013 01:27:42, 170868 bytes
       Driver: C:\Windows\system32\Gfxres.el-GR.resources, 3/20/2013 01:27:42, 243062 bytes
       Driver: C:\Windows\system32\Gfxres.es-ES.resources, 3/20/2013 01:27:42, 171308 bytes
       Driver: C:\Windows\system32\Gfxres.en-US.resources, 3/20/2013 01:27:42, 154905 bytes
       Driver: C:\Windows\system32\Gfxres.fi-FI.resources, 3/20/2013 01:27:42, 166207 bytes
       Driver: C:\Windows\system32\Gfxres.fr-FR.resources, 3/20/2013 01:27:42, 170949 bytes
       Driver: C:\Windows\system32\Gfxres.he-IL.resources, 3/20/2013 01:27:42, 184704 bytes
       Driver: C:\Windows\system32\Gfxres.hr-HR.resources, 3/20/2013 01:27:42, 164428 bytes
       Driver: C:\Windows\system32\Gfxres.hu-HU.resources, 3/20/2013 01:27:42, 168624 bytes
       Driver: C:\Windows\system32\Gfxres.it-IT.resources, 3/20/2013 01:27:42, 173641 bytes
       Driver: C:\Windows\system32\Gfxres.ja-JP.resources, 3/20/2013 01:27:42, 189982 bytes
       Driver: C:\Windows\system32\Gfxres.ko-KR.resources, 3/20/2013 01:27:42, 173255 bytes
       Driver: C:\Windows\system32\Gfxres.nb-NO.resources, 3/20/2013 01:27:42, 160055 bytes
       Driver: C:\Windows\system32\Gfxres.nl-NL.resources, 3/20/2013 01:27:42, 167827 bytes
       Driver: C:\Windows\system32\Gfxres.pl-PL.resources, 3/20/2013 01:27:42, 168145 bytes
       Driver: C:\Windows\system32\Gfxres.pt-BR.resources, 3/20/2013 01:27:42, 167279 bytes
       Driver: C:\Windows\system32\Gfxres.pt-PT.resources, 3/20/2013 01:27:42, 165888 bytes
       Driver: C:\Windows\system32\Gfxres.ro-RO.resources, 3/20/2013 01:27:42, 169419 bytes
       Driver: C:\Windows\system32\Gfxres.ru-RU.resources, 3/20/2013 01:27:42, 225909 bytes
       Driver: C:\Windows\system32\Gfxres.sk-SK.resources, 3/20/2013 01:27:42, 166115 bytes
       Driver: C:\Windows\system32\Gfxres.sl-SI.resources, 3/20/2013 01:27:42, 161093 bytes
       Driver: C:\Windows\system32\Gfxres.sv-SE.resources, 3/20/2013 01:27:42, 165805 bytes
       Driver: C:\Windows\system32\Gfxres.th-TH.resources, 3/20/2013 01:27:42, 256973 bytes
       Driver: C:\Windows\system32\Gfxres.tr-TR.resources, 3/20/2013 01:27:42, 168766 bytes
       Driver: C:\Windows\system32\Gfxres.zh-CN.resources, 3/20/2013 01:27:42, 146480 bytes
       Driver: C:\Windows\system32\Gfxres.zh-TW.resources, 3/20/2013 01:27:42, 148171 bytes
       Driver: C:\Windows\system32\ig75icd64.dll, 9.18.0010.3071 (English), 3/20/2013 01:31:50, 7175680 bytes
       Driver: C:\Windows\SysWow64\ig75icd32.dll, 9.18.0010.3071 (English), 3/20/2013 01:32:08, 5611008 bytes
       Driver: C:\Windows\system32\igdumdim64.dll, 9.18.0010.3071 (English), 3/20/2013 01:31:46, 8647680 bytes
       Driver: C:\Windows\system32\igdail64.dll, 3/20/2013 01:31:40, 117760 bytes
       Driver: C:\Windows\system32\Intel_OpenCL_ICD64.dll, 1.02.0011.0000 (English), 3/20/2013 01:25:46, 64000 bytes
       Driver: C:\Windows\system32\IntelOpenCL64.dll, 1.01.0000.1005 (English), 3/20/2013 01:33:48, 258560 bytes
       Driver: C:\Windows\system32\igdbcl64.dll, 6.14.0010.9139 (English), 3/20/2013 01:33:56, 322560 bytes
       Driver: C:\Windows\system32\igdrcl64.dll, 9.18.0010.3071 (English), 3/20/2013 01:34:14, 1758208 bytes
       Driver: C:\Windows\system32\igdfcl64.dll, 3/20/2013 01:32:46, 24283136 bytes
       Driver: C:\Windows\SysWow64\Intel_OpenCL_ICD32.dll, 1.02.0011.0000 (English), 3/20/2013 01:25:46, 60416 bytes
       Driver: C:\Windows\SysWow64\IntelOpenCL32.dll, 1.01.0000.1005 (English), 3/20/2013 01:33:08, 203264 bytes
       Driver: C:\Windows\SysWow64\igdbcl32.dll, 6.14.0010.9139 (English), 3/20/2013 01:33:10, 279040 bytes
       Driver: C:\Windows\SysWow64\igdrcl32.dll, 9.18.0010.3071 (English), 3/20/2013 01:33:32, 1631744 bytes
       Driver: C:\Windows\SysWow64\igdfcl32.dll, 3/20/2013 01:29:26, 19586560 bytes
       Driver: C:\Windows\system32\igfxCoIn_v3071.dll, 1.02.0030.0000 (English), 3/20/2013 01:37:44, 109056 bytes
         Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_8C3A&SUBSYS_1963103C&REV_04\3&11583659&0&B0
       Driver: n/a
         Name: AVT0BFS4 IDE Controller
    Device ID: PCI\VEN_13C1&DEV_1005&SUBSYS_23599ACD&REV_01\4&5D18F2DF&0
       Driver: n/a
         Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14
    Device ID: PCI\VEN_8086&DEV_8C14&SUBSYS_1963103C&REV_D5\3&11583659&0&E2
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 184704 bytes
         Name: Intel(R) USB 3.0 eXtensible Host Controller
    Device ID: PCI\VEN_8086&DEV_8C31&SUBSYS_1963103C&REV_05\3&11583659&0&A0
       Driver: C:\Windows\system32\DRIVERS\iusb3xhc.sys, 2.05.0000.0019 (English), 4/27/2013 02:24:56, 786416 bytes
         Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #1 - 8C10
    Device ID: PCI\VEN_8086&DEV_8C10&SUBSYS_1963103C&REV_D5\3&11583659&0&E0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 184704 bytes
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_1963103C&REV_0C\4&27B8B3D2&0&00E6
       Driver: n/a
         Name: Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D
    Device ID: PCI\VEN_8086&DEV_8C2D&SUBSYS_1963103C&REV_05\3&11583659&0&D0
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:11, 53248 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:11, 325120 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.18328 (English), 11/26/2013 21:41:37, 343040 bytes
         Name: Intel(R) 8 Series SATA AHCI Controller - 8C03
    Device ID: PCI\VEN_8086&DEV_8C03&SUBSYS_1963103C&REV_05\3&11583659&0&FA
       Driver: C:\Windows\system32\DRIVERS\msahci.sys, 6.01.7601.17514 (English), 11/20/2010 23:23:47, 31104 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (English), 7/13/2009 21:45:46, 48720 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/13/2009 21:52:21, 24128 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7601.18231 (English), 8/4/2013 22:25:45, 155584 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.18221
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WD Secure Source Filter,0x00200000,0,1,WDSecureSourceFilter.dll,4.01.0017.0000
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.16426
    DS Video Buffer Filter,0x00200000,1,1,DSBuffer_Video.ax,4.01.0017.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    Xvid MPEG-4 Video Decoder,0x00800002,1,1,xvid.ax,
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    Intel® AAC encoder,0x00200000,1,1,intelaac.dll,
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Intel® Mux Renderer,0x00200000,2,0,intelmux.dll,4.01.0017.0000
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17835
    Overlay Mixer2,0x00200000,1,1,,
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.18501
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.18501
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    WD Audio Filter,0x00200000,0,1,WDAudioFilter.dll,4.01.0017.0000
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    WDSource Filter,0x00200000,0,1,WDSourceFilter.dll,4.01.0017.0000
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    WD Silence Filter,0x00200000,0,1,WDSilenceFilter.dll,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    Intel®WiDi H264 encoder,0x00200000,1,1,h264HWEnc.dll,
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Audio Capture Sources:
    Internal Microphone Array (IDT ,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Stereo Mix (IDT High Definition,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713
    WDM Streaming Capture Devices:
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    MicIn4,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    MuxedIn1,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HP Truevision HD,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    Dock HpOut,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    LineOut,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Video Capture Sources:
    HP Truevision HD,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers / HP (IDT High Definit,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers / HP (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.7601.17713
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    Hi @soaren 
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I grasp that you are having a difficulty with the switchable graphics .  Here is a link to a document to assist you with this difficulty. Switchable Graphics on Notebooks Configured with Intel and ATI GPUs
    You may wish to view this post as they state it was resolved Switchable graphic.
    I hope this helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • My game keeps crashing on startup

    Every time i try to open the game, it crashes on startup :(
    Event log: 
    System
    Provider
    [ Name]
    Application Error
    EventID
    1000
    [ Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-09-29T14:02:43.000000000Z
    EventRecordID
    4222130
    Channel
    Application
    Computer
    Security
    EventData
    ACBSP.exe
    0.0.0.0
    4d5c55a3
    ACBSP.exe
    0.0.0.0
    4d5c55a3
    c0000094
    019299a4
    2654
    01cfdbee087b17c7
    C:\Program Files (x86)\Ubisoft\Assassin's Creed Brotherhood\ACBSP.exe
    C:\Program Files (x86)\Ubisoft\Assassin's Creed Brotherhood\ACBSP.exe
    477dd173-47e1-11e4-9417-240a641074f8

    MA
    Same as before.  The video driver and bink32.dll.  You need to contact the developer
    Microsoft (R) Windows Debugger Version 6.3.9600.17029 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Ken\AppData\Local\Temp\ACBSP.exe.3196.dmp]
    User Mini Dump File: Only registers, stack and portions of memory are available
    ************* Symbol Path validation summary **************
    Response Time (ms) Location
    Deferred srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Version 7601 (Service Pack 1) MP (8 procs) Free x86 compatible
    Product: WinNt, suite: SingleUserTS
    Machine Name:
    Debug session time: Tue Sep 30 10:59:38.000 2014 (UTC - 4:00)
    System Uptime: not available
    Process Uptime: 0 days 0:01:02.000
    This dump file has an exception of interest stored in it.
    The stored exception information can be accessed via .ecxr.
    (c7c.1ec0): Integer divide-by-zero - code c0000094 (first/second chance not available)
    eax=00000000 ebx=05e0f348 ecx=00000000 edx=00000000 esi=00000002 edi=00000000
    eip=76fa015d esp=05e0f2f8 ebp=05e0f394 iopl=0 nv up ei pl zr na pe nc
    cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00000246
    Processing initial command '!analyze -v;r;kv;lmtn;lmtsmn;.bugcheck'
    ntdll!NtWaitForMultipleObjects+0x15:
    76fa015d 83c404 add esp,4
    0:004> !analyze -v;r;kv;lmtn;lmtsmn;.bugcheck
    * Exception Analysis *
    *** WARNING: Unable to verify timestamp for nvd3dum.dll
    *** ERROR: Module load completed but symbols could not be loaded for nvd3dum.dll
    *** WARNING: Unable to verify timestamp for binkw32.dll
    *** ERROR: Module load completed but symbols could not be loaded for binkw32.dll
    FAULTING_IP:
    ACBSP+19299a4
    02c899a4 f7f1 div eax,ecx
    EXCEPTION_RECORD: ffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 02c899a4 (ACBSP+0x019299a4)
    ExceptionCode: c0000094 (Integer divide-by-zero)
    ExceptionFlags: 00000000
    NumberParameters: 0
    CONTEXT: 00000000 -- (.cxr 0x0;r)
    eax=00000000 ebx=05e0f348 ecx=00000000 edx=00000000 esi=00000002 edi=00000000
    eip=76fa015d esp=05e0f2f8 ebp=05e0f394 iopl=0 nv up ei pl zr na pe nc
    cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00000246
    ntdll!NtWaitForMultipleObjects+0x15:
    76fa015d 83c404 add esp,4
    PROCESS_NAME: ACBSP.exe
    ERROR_CODE: (NTSTATUS) 0xc0000094 - {EXCEPTION} Integer division by zero.
    EXCEPTION_CODE: (NTSTATUS) 0xc0000094 - {EXCEPTION} Integer division by zero.
    NTGLOBALFLAG: 0
    APPLICATION_VERIFIER_FLAGS: 0
    APP: acbsp.exe
    ANALYSIS_VERSION: 6.3.9600.17029 (debuggers(dbg).140219-1702) amd64fre
    FAULTING_THREAD: 00001ec0
    DEFAULT_BUCKET_ID: STATUS_INTEGER_DIVIDE_BY_ZERO
    PRIMARY_PROBLEM_CLASS: STATUS_INTEGER_DIVIDE_BY_ZERO
    BUGCHECK_STR: APPLICATION_FAULT_STATUS_INTEGER_DIVIDE_BY_ZERO
    LAST_CONTROL_TRANSFER: from 02b4e9c8 to 02c899a4
    STACK_TEXT:
    WARNING: Stack unwind information not available. Following frames may be wrong.
    05e0fb84 02b4e9c8 039c1780 03340718 00000001 ACBSP+0x19299a4
    05e0fbb8 02b4ecc7 039c1ae0 05e0fc88 033223c6 ACBSP+0x17ee9c8
    05e0fbd0 02b47e64 003c018c 003c0050 05e0fbe8 ACBSP+0x17eecc7
    05e0fc94 01377c62 003c0160 003c0160 0137b889 ACBSP+0x17e7e64
    05e0fccc 02aa6a40 003cb960 76fa2280 76fa22c0 ACBSP+0x17c62
    05e0fce4 02a41570 003cb960 00000e7f 00000002 ACBSP+0x1746a40
    05e0fcf4 02a3a56b 00000000 003cb960 05e0fd54 ACBSP+0x16e1570
    05e0fd60 74b8338a 01268e38 05e0fdac 76fb9f72 ACBSP+0x16da56b
    05e0fd6c 76fb9f72 01268e38 72ea49ca 00000000 kernel32!BaseThreadInitThunk+0xe
    05e0fdac 76fb9f45 02c8d301 01268e38 00000000 ntdll!__RtlUserThreadStart+0x70
    05e0fdc4 00000000 02c8d301 01268e38 00000000 ntdll!_RtlUserThreadStart+0x1b
    STACK_COMMAND: ~4s; .ecxr ; kb
    FOLLOWUP_IP:
    ACBSP+19299a4
    02c899a4 f7f1 div eax,ecx
    SYMBOL_STACK_INDEX: 0
    SYMBOL_NAME: acbsp+19299a4
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: ACBSP
    IMAGE_NAME: ACBSP.exe
    DEBUG_FLR_IMAGE_TIMESTAMP: 4d5c55a3
    FAILURE_BUCKET_ID: STATUS_INTEGER_DIVIDE_BY_ZERO_c0000094_ACBSP.exe!Unknown
    BUCKET_ID: APPLICATION_FAULT_STATUS_INTEGER_DIVIDE_BY_ZERO_acbsp+19299a4
    ANALYSIS_SOURCE: UM
    FAILURE_ID_HASH_STRING: um:status_integer_divide_by_zero_c0000094_acbsp.exe!unknown
    FAILURE_ID_HASH: {b3a60b24-248b-c568-72e7-b144eb1efb7b}
    Followup: MachineOwner
    eax=00000000 ebx=05e0f348 ecx=00000000 edx=00000000 esi=00000002 edi=00000000
    eip=76fa015d esp=05e0f2f8 ebp=05e0f394 iopl=0 nv up ei pl zr na pe nc
    cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00000246
    ntdll!NtWaitForMultipleObjects+0x15:
    76fa015d 83c404 add esp,4
    ChildEBP RetAddr Args to Child
    05e0f2f8 766c15f7 00000002 05e0f348 00000001 ntdll!NtWaitForMultipleObjects+0x15 (FPO: [5,0,0])
    05e0f394 74b819f8 05e0f348 05e0f3bc 00000000 KERNELBASE!WaitForMultipleObjectsEx+0x100 (FPO: [Non-Fpo])
    05e0f3dc 74b84200 00000002 fffde000 00000000 kernel32!WaitForMultipleObjectsExImplementation+0xe0 (FPO: [Non-Fpo])
    05e0f3f8 74ba80a4 00000002 05e0f42c 00000000 kernel32!WaitForMultipleObjects+0x18 (FPO: [Non-Fpo])
    05e0f464 74ba7f63 05e0f544 00000001 00000001 kernel32!WerpReportFaultInternal+0x186 (FPO: [Non-Fpo])
    05e0f478 74ba7858 05e0f544 00000001 05e0f514 kernel32!WerpReportFault+0x70 (FPO: [Non-Fpo])
    05e0f488 74ba77d7 05e0f544 00000001 0f2869ff kernel32!BasepReportFault+0x20 (FPO: [Non-Fpo])
    05e0f514 76ff74ff 00000000 76ff73dc 00000000 kernel32!UnhandledExceptionFilter+0x1af (FPO: [Non-Fpo])
    05e0f51c 76ff73dc 00000000 05e0fdac 76fac550 ntdll!__RtlUserThreadStart+0x62 (FPO: [SEH])
    05e0f530 76ff7281 00000000 00000000 00000000 ntdll!_EH4_CallFilterFunc+0x12 (FPO: [Uses EBP] [0,0,4])
    05e0f558 76fdb499 fffffffe 05e0fd9c 05e0f694 ntdll!_except_handler4+0x8e (FPO: [Non-Fpo])
    05e0f57c 76fdb46b 05e0f644 05e0fd9c 05e0f694 ntdll!ExecuteHandler2+0x26 (FPO: [Uses EBP] [5,3,1])
    05e0f5a0 76fdb40e 05e0f644 05e0fd9c 05e0f694 ntdll!ExecuteHandler+0x24 (FPO: [5,0,3])
    05e0f62c 76f90133 00e0f644 05e0f694 05e0f644 ntdll!RtlDispatchException+0x127 (FPO: [Non-Fpo])
    05e0f62c 02c899a4 00e0f644 05e0f694 05e0f644 ntdll!KiUserExceptionDispatcher+0xf (FPO: [2,0,0]) (CONTEXT @ 05e0f694)
    WARNING: Stack unwind information not available. Following frames may be wrong.
    05e0fb84 02b4e9c8 039c1780 03340718 00000001 ACBSP+0x19299a4
    05e0fbb8 02b4ecc7 039c1ae0 05e0fc88 033223c6 ACBSP+0x17ee9c8
    05e0fbd0 02b47e64 003c018c 003c0050 05e0fbe8 ACBSP+0x17eecc7
    05e0fc94 01377c62 003c0160 003c0160 0137b889 ACBSP+0x17e7e64
    05e0fccc 02aa6a40 003cb960 76fa2280 76fa22c0 ACBSP+0x17c62
    05e0fce4 02a41570 003cb960 00000e7f 00000002 ACBSP+0x1746a40
    05e0fcf4 02a3a56b 00000000 003cb960 05e0fd54 ACBSP+0x16e1570
    05e0fd60 74b8338a 01268e38 05e0fdac 76fb9f72 ACBSP+0x16da56b
    05e0fd6c 76fb9f72 01268e38 72ea49ca 00000000 kernel32!BaseThreadInitThunk+0xe (FPO: [Non-Fpo])
    05e0fdac 76fb9f45 02c8d301 01268e38 00000000 ntdll!__RtlUserThreadStart+0x70 (FPO: [Non-Fpo])
    05e0fdc4 00000000 02c8d301 01268e38 00000000 ntdll!_RtlUserThreadStart+0x1b (FPO: [Non-Fpo])
    start end module name
    00400000 00416000 XINPUT1_3 XINPUT1_3.dll Wed Apr 04 21:39:01 2007 (46145335)
    01360000 041b1000 ACBSP ACBSP.exe Wed Feb 16 17:54:27 2011 (4D5C55A3)
    10000000 10218000 nvspcap nvspcap.dll Tue Sep 16 22:06:53 2014 (5418ECBD)
    18000000 1803b000 binkw32 binkw32.dll Thu Nov 05 11:13:37 2009 (4AF2F9B1)
    535b0000 53856000 overlay overlay.dll Thu Sep 04 09:28:09 2014 (540868E9)
    55fd0000 561b5000 D3DX9_42 D3DX9_42.dll Sun Jul 26 22:40:59 2009 (4A6D13BB)
    561d0000 56362000 ubiorbitapi_r2 ubiorbitapi_r2.dll Thu Sep 04 09:28:00 2014 (540868E0)
    56370000 563ac000 ubiorbitapi_r2_loader ubiorbitapi_r2_loader.dll Tue Dec 07 10:21:34 2010 (4CFE50FE)
    596d0000 59700000 dinput8 dinput8.dll Mon Jul 13 21:05:05 2009 (4A5BD9C1)
    59e20000 59e92000 dsound dsound.dll Mon Jul 13 21:06:05 2009 (4A5BD9FD)
    5e510000 5f2ce000 nvd3dum nvd3dum.dll Mon May 19 19:04:37 2014 (537A8E05)
    66150000 6619c000 dxgi dxgi.dll Sun Jan 13 15:20:31 2013 (50F3170F)
    6c430000 6c466000 AudioSes AudioSes.dll Sat Nov 20 06:55:17 2010 (4CE7B725)
    6c5a0000 6c62d000 AcLayers AcLayers.dll Tue Oct 16 03:39:56 2012 (507D0F4C)
    6c630000 6c669000 MMDevAPI MMDevAPI.dll Sat Nov 20 07:01:22 2010 (4CE7B892)
    6cc30000 6cc37000 avrt avrt.dll Mon Jul 13 21:04:24 2009 (4A5BD998)
    6d0e0000 6d1cb000 dbghelp dbghelp.dll Sat Nov 20 06:57:48 2010 (4CE7B7BC)
    6d220000 6d315000 propsys propsys.dll Sat Nov 20 07:05:23 2010 (4CE7B983)
    6d320000 6d345000 powrprof powrprof.dll Mon Jul 13 21:10:36 2009 (4A5BDB0C)
    6d4f0000 6d502000 mpr mpr.dll Mon Jul 13 21:07:02 2009 (4A5BDA36)
    6d5e0000 6d5e6000 rasadhlp rasadhlp.dll Mon Jul 13 21:09:42 2009 (4A5BDAD6)
    6d5f0000 6d628000 FWPUCLNT FWPUCLNT.DLL Fri Oct 11 22:02:14 2013 (5258ADA6)
    6d630000 6d651000 mdnsNSP mdnsNSP.dll Wed Aug 31 01:44:44 2011 (4E5DCA4C)
    6d660000 6d684000 WLIDNSP WLIDNSP.DLL Tue Aug 18 14:28:20 2009 (4A8AF2C4)
    6d690000 6d69d000 wshbth wshbth.dll Sat Nov 20 05:00:16 2010 (4CE79C30)
    6d6a0000 6d6a8000 winrnr winrnr.dll Mon Jul 13 21:11:32 2009 (4A5BDB44)
    6d6b0000 6d6f4000 dnsapi dnsapi.dll Thu Mar 03 00:29:23 2011 (4D6F2733)
    6d700000 6d712000 pnrpnsp pnrpnsp.dll Mon Jul 13 21:10:14 2009 (4A5BDAF6)
    6d720000 6d730000 NapiNSP NapiNSP.dll Mon Jul 13 21:07:57 2009 (4A5BDA6D)
    6ece0000 6ecf0000 nlaapi nlaapi.dll Fri Jan 13 02:01:46 2012 (4F0FD6DA)
    6ed90000 6eda3000 dwmapi dwmapi.dll Mon Jul 13 21:06:15 2009 (4A5BDA07)
    6edb0000 6edb6000 d3d8thk d3d8thk.dll Mon Jul 13 21:04:40 2009 (4A5BD9A8)
    6edc0000 6ef83000 d3d9 d3d9.dll Sat Nov 20 06:57:39 2010 (4CE7B7B3)
    6f0f0000 6f13c000 apphelp apphelp.dll Sat Nov 20 06:55:42 2010 (4CE7B73E)
    700c0000 70140000 uxtheme uxtheme.dll Mon Jul 13 21:11:24 2009 (4A5BDB3C)
    70560000 70567000 winnsi winnsi.dll Mon Jul 13 21:11:31 2009 (4A5BDB43)
    70710000 7072c000 IPHLPAPI IPHLPAPI.DLL Sat Nov 20 07:00:25 2010 (4CE7B859)
    70a20000 70a25000 WSHTCPIP WSHTCPIP.DLL Mon Jul 13 21:11:54 2009 (4A5BDB5A)
    70a30000 70a6c000 mswsock mswsock.dll Sat Sep 07 22:04:46 2013 (522BDB3E)
    727d0000 72907000 nvSCPAPI nvSCPAPI.dll Mon May 19 19:06:06 2014 (537A8E5E)
    732f0000 73322000 winmm winmm.dll Sat Nov 20 07:08:34 2010 (4CE7BA42)
    74570000 745bf000 webio webio.dll Thu Nov 17 00:28:22 2011 (4EC49B76)
    745c0000 74618000 winhttp winhttp.dll Sat Nov 20 07:08:30 2010 (4CE7BA3E)
    74620000 74629000 hid hid.dll Mon Jul 13 21:05:48 2009 (4A5BD9EC)
    747e0000 74831000 winspool winspool.drv Sat Nov 20 07:08:43 2010 (4CE7BA4B)
    74840000 74849000 version version.dll Mon Jul 13 21:11:07 2009 (4A5BDB2B)
    74960000 7496c000 CRYPTBASE CRYPTBASE.dll Mon Jul 13 19:12:01 2009 (4A5BBF41)
    74970000 749d0000 sspicli sspicli.dll Sun Jul 06 21:39:16 2014 (53B9FA44)
    749d0000 749d4000 api_ms_win_downlevel_shlwapi_l1_1_0 api-ms-win-downlevel-shlwapi-l1-1-0.dll Sun Jan 13 16:17:03 2013 (50F3244F)
    749e0000 74a63000 clbcatq clbcatq.dll Mon Jul 13 21:04:49 2009 (4A5BD9B1)
    74a70000 74a74000 api_ms_win_downlevel_version_l1_1_0 api-ms-win-downlevel-version-l1-1-0.dll Sun Jan 13 16:11:07 2013 (50F322EB)
    74a80000 74a99000 sechost sechost.dll Mon Jul 13 21:10:28 2009 (4A5BDB04)
    74aa0000 74ac7000 cfgmgr32 cfgmgr32.dll Tue May 24 06:28:33 2011 (4DDB8851)
    74ad0000 74b70000 advapi32 advapi32.dll Wed Aug 28 21:48:26 2013 (521EA86A)
    74b70000 74c80000 kernel32 kernel32.dll Tue Mar 04 04:19:01 2014 (53159A85)
    74c80000 74e42000 wininet wininet.dll Mon Aug 18 16:46:34 2014 (53F2662A)
    74e50000 74eb0000 imm32 imm32.dll Sat Nov 20 07:08:51 2010 (4CE7BA53)
    74eb0000 75afa000 shell32 shell32.dll Tue Jun 24 21:39:39 2014 (53AA285B)
    75b00000 75b0a000 lpk lpk.dll Thu Jun 06 00:57:01 2013 (51B0169D)
    75b10000 75c00000 rpcrt4 rpcrt4.dll Sun Jul 13 21:40:58 2014 (53C3352A)
    75c00000 75cac000 msvcrt msvcrt.dll Fri Dec 16 02:45:38 2011 (4EEAF722)
    75cb0000 75cb6000 nsi nsi.dll Mon Jul 13 21:09:45 2009 (4A5BDAD9)
    75cc0000 75cc4000 api_ms_win_downlevel_user32_l1_1_0 api-ms-win-downlevel-user32-l1-1-0.dll Sun Jan 13 16:11:21 2013 (50F322F9)
    75cd0000 75d9c000 msctf msctf.dll Mon Jul 13 21:07:53 2009 (4A5BDA69)
    75da0000 75da3000 api_ms_win_downlevel_normaliz_l1_1_0 api-ms-win-downlevel-normaliz-l1-1-0.dll Sun Jan 13 16:17:02 2013 (50F3244E)
    75e00000 75e03000 normaliz normaliz.dll Mon Jul 13 21:09:40 2009 (4A5BDAD4)
    75e10000 75e9f000 oleaut32 oleaut32.dll Sat Aug 27 00:18:50 2011 (4E58702A)
    75ea0000 75fa0000 user32 user32.dll Sat Nov 20 07:08:57 2010 (4CE7BA59)
    75fa0000 760fc000 ole32 ole32.dll Sat Nov 20 07:05:03 2010 (4CE7B96F)
    76100000 76135000 ws2_32 ws2_32.dll Sat Nov 20 07:09:12 2010 (4CE7BA68)
    76140000 7614b000 profapi profapi.dll Mon Jul 13 19:12:01 2009 (4A5BBF41)
    76150000 761ed000 usp10 usp10.dll Thu Apr 24 22:04:57 2014 (5359C2C9)
    761f0000 761f5000 psapi psapi.dll Mon Jul 13 21:09:34 2009 (4A5BDACE)
    76200000 76212000 devobj devobj.dll Tue May 24 06:29:17 2011 (4DDB887D)
    76220000 76237000 userenv userenv.dll Sat Nov 20 07:08:08 2010 (4CE7BA28)
    76240000 7645b000 iertutil iertutil.dll Mon Aug 18 17:42:38 2014 (53F2734E)
    76460000 764b7000 shlwapi shlwapi.dll Sat Nov 20 07:06:58 2010 (4CE7B9E2)
    764c0000 76550000 gdi32 gdi32.dll Fri Aug 22 21:45:55 2014 (53F7F253)
    76560000 7658b000 imagehlp imagehlp.dll Fri Oct 18 21:37:08 2013 (5261E244)
    76590000 766b0000 crypt32 crypt32.dll Sat Oct 05 16:00:06 2013 (52506FC6)
    766b0000 766f7000 KERNELBASE KERNELBASE.dll Tue Mar 04 04:19:02 2014 (53159A86)
    76700000 7689d000 setupapi setupapi.dll Sat Nov 20 07:06:49 2010 (4CE7B9D9)
    768a0000 768a5000 api_ms_win_downlevel_advapi32_l1_1_0 api-ms-win-downlevel-advapi32-l1-1-0.dll Sun Jan 13 16:16:42 2013 (50F3243A)
    76ac0000 76aee000 wintrust wintrust.dll Tue Jul 09 00:52:48 2013 (51DB9720)
    76f50000 76f5c000 msasn1 msasn1.dll Sat Nov 20 07:02:17 2010 (4CE7B8C9)
    76f80000 77100000 ntdll ntdll.dll Wed Aug 28 21:50:31 2013 (521EA8E7)
    start end module name
    01360000 041b1000 ACBSP ACBSP.exe Wed Feb 16 17:54:27 2011 (4D5C55A3)
    6c5a0000 6c62d000 AcLayers AcLayers.dll Tue Oct 16 03:39:56 2012 (507D0F4C)
    74ad0000 74b70000 advapi32 advapi32.dll Wed Aug 28 21:48:26 2013 (521EA86A)
    768a0000 768a5000 api_ms_win_downlevel_advapi32_l1_1_0 api-ms-win-downlevel-advapi32-l1-1-0.dll Sun Jan 13 16:16:42 2013 (50F3243A)
    75da0000 75da3000 api_ms_win_downlevel_normaliz_l1_1_0 api-ms-win-downlevel-normaliz-l1-1-0.dll Sun Jan 13 16:17:02 2013 (50F3244E)
    749d0000 749d4000 api_ms_win_downlevel_shlwapi_l1_1_0 api-ms-win-downlevel-shlwapi-l1-1-0.dll Sun Jan 13 16:17:03 2013 (50F3244F)
    75cc0000 75cc4000 api_ms_win_downlevel_user32_l1_1_0 api-ms-win-downlevel-user32-l1-1-0.dll Sun Jan 13 16:11:21 2013 (50F322F9)
    74a70000 74a74000 api_ms_win_downlevel_version_l1_1_0 api-ms-win-downlevel-version-l1-1-0.dll Sun Jan 13 16:11:07 2013 (50F322EB)
    6f0f0000 6f13c000 apphelp apphelp.dll Sat Nov 20 06:55:42 2010 (4CE7B73E)
    6c430000 6c466000 AudioSes AudioSes.dll Sat Nov 20 06:55:17 2010 (4CE7B725)
    6cc30000 6cc37000 avrt avrt.dll Mon Jul 13 21:04:24 2009 (4A5BD998)
    18000000 1803b000 binkw32 binkw32.dll Thu Nov 05 11:13:37 2009 (4AF2F9B1)
    74aa0000 74ac7000 cfgmgr32 cfgmgr32.dll Tue May 24 06:28:33 2011 (4DDB8851)
    749e0000 74a63000 clbcatq clbcatq.dll Mon Jul 13 21:04:49 2009 (4A5BD9B1)
    76590000 766b0000 crypt32 crypt32.dll Sat Oct 05 16:00:06 2013 (52506FC6)
    74960000 7496c000 CRYPTBASE CRYPTBASE.dll Mon Jul 13 19:12:01 2009 (4A5BBF41)
    6edb0000 6edb6000 d3d8thk d3d8thk.dll Mon Jul 13 21:04:40 2009 (4A5BD9A8)
    6edc0000 6ef83000 d3d9 d3d9.dll Sat Nov 20 06:57:39 2010 (4CE7B7B3)
    55fd0000 561b5000 D3DX9_42 D3DX9_42.dll Sun Jul 26 22:40:59 2009 (4A6D13BB)
    6d0e0000 6d1cb000 dbghelp dbghelp.dll Sat Nov 20 06:57:48 2010 (4CE7B7BC)
    76200000 76212000 devobj devobj.dll Tue May 24 06:29:17 2011 (4DDB887D)
    596d0000 59700000 dinput8 dinput8.dll Mon Jul 13 21:05:05 2009 (4A5BD9C1)
    6d6b0000 6d6f4000 dnsapi dnsapi.dll Thu Mar 03 00:29:23 2011 (4D6F2733)
    59e20000 59e92000 dsound dsound.dll Mon Jul 13 21:06:05 2009 (4A5BD9FD)
    6ed90000 6eda3000 dwmapi dwmapi.dll Mon Jul 13 21:06:15 2009 (4A5BDA07)
    66150000 6619c000 dxgi dxgi.dll Sun Jan 13 15:20:31 2013 (50F3170F)
    6d5f0000 6d628000 FWPUCLNT FWPUCLNT.DLL Fri Oct 11 22:02:14 2013 (5258ADA6)
    764c0000 76550000 gdi32 gdi32.dll Fri Aug 22 21:45:55 2014 (53F7F253)
    74620000 74629000 hid hid.dll Mon Jul 13 21:05:48 2009 (4A5BD9EC)
    76240000 7645b000 iertutil iertutil.dll Mon Aug 18 17:42:38 2014 (53F2734E)
    76560000 7658b000 imagehlp imagehlp.dll Fri Oct 18 21:37:08 2013 (5261E244)
    74e50000 74eb0000 imm32 imm32.dll Sat Nov 20 07:08:51 2010 (4CE7BA53)
    70710000 7072c000 IPHLPAPI IPHLPAPI.DLL Sat Nov 20 07:00:25 2010 (4CE7B859)
    74b70000 74c80000 kernel32 kernel32.dll Tue Mar 04 04:19:01 2014 (53159A85)
    766b0000 766f7000 KERNELBASE KERNELBASE.dll Tue Mar 04 04:19:02 2014 (53159A86)
    75b00000 75b0a000 lpk lpk.dll Thu Jun 06 00:57:01 2013 (51B0169D)
    6d630000 6d651000 mdnsNSP mdnsNSP.dll Wed Aug 31 01:44:44 2011 (4E5DCA4C)
    6c630000 6c669000 MMDevAPI MMDevAPI.dll Sat Nov 20 07:01:22 2010 (4CE7B892)
    6d4f0000 6d502000 mpr mpr.dll Mon Jul 13 21:07:02 2009 (4A5BDA36)
    76f50000 76f5c000 msasn1 msasn1.dll Sat Nov 20 07:02:17 2010 (4CE7B8C9)
    75cd0000 75d9c000 msctf msctf.dll Mon Jul 13 21:07:53 2009 (4A5BDA69)
    75c00000 75cac000 msvcrt msvcrt.dll Fri Dec 16 02:45:38 2011 (4EEAF722)
    70a30000 70a6c000 mswsock mswsock.dll Sat Sep 07 22:04:46 2013 (522BDB3E)
    6d720000 6d730000 NapiNSP NapiNSP.dll Mon Jul 13 21:07:57 2009 (4A5BDA6D)
    6ece0000 6ecf0000 nlaapi nlaapi.dll Fri Jan 13 02:01:46 2012 (4F0FD6DA)
    75e00000 75e03000 normaliz normaliz.dll Mon Jul 13 21:09:40 2009 (4A5BDAD4)
    75cb0000 75cb6000 nsi nsi.dll Mon Jul 13 21:09:45 2009 (4A5BDAD9)
    76f80000 77100000 ntdll ntdll.dll Wed Aug 28 21:50:31 2013 (521EA8E7)
    5e510000 5f2ce000 nvd3dum nvd3dum.dll Mon May 19 19:04:37 2014 (537A8E05)
    727d0000 72907000 nvSCPAPI nvSCPAPI.dll Mon May 19 19:06:06 2014 (537A8E5E)
    10000000 10218000 nvspcap nvspcap.dll Tue Sep 16 22:06:53 2014 (5418ECBD)
    75fa0000 760fc000 ole32 ole32.dll Sat Nov 20 07:05:03 2010 (4CE7B96F)
    75e10000 75e9f000 oleaut32 oleaut32.dll Sat Aug 27 00:18:50 2011 (4E58702A)
    535b0000 53856000 overlay overlay.dll Thu Sep 04 09:28:09 2014 (540868E9)
    6d700000 6d712000 pnrpnsp pnrpnsp.dll Mon Jul 13 21:10:14 2009 (4A5BDAF6)
    6d320000 6d345000 powrprof powrprof.dll Mon Jul 13 21:10:36 2009 (4A5BDB0C)
    76140000 7614b000 profapi profapi.dll Mon Jul 13 19:12:01 2009 (4A5BBF41)
    6d220000 6d315000 propsys propsys.dll Sat Nov 20 07:05:23 2010 (4CE7B983)
    761f0000 761f5000 psapi psapi.dll Mon Jul 13 21:09:34 2009 (4A5BDACE)
    6d5e0000 6d5e6000 rasadhlp rasadhlp.dll Mon Jul 13 21:09:42 2009 (4A5BDAD6)
    75b10000 75c00000 rpcrt4 rpcrt4.dll Sun Jul 13 21:40:58 2014 (53C3352A)
    74a80000 74a99000 sechost sechost.dll Mon Jul 13 21:10:28 2009 (4A5BDB04)
    76700000 7689d000 setupapi setupapi.dll Sat Nov 20 07:06:49 2010 (4CE7B9D9)
    74eb0000 75afa000 shell32 shell32.dll Tue Jun 24 21:39:39 2014 (53AA285B)
    76460000 764b7000 shlwapi shlwapi.dll Sat Nov 20 07:06:58 2010 (4CE7B9E2)
    74970000 749d0000 sspicli sspicli.dll Sun Jul 06 21:39:16 2014 (53B9FA44)
    561d0000 56362000 ubiorbitapi_r2 ubiorbitapi_r2.dll Thu Sep 04 09:28:00 2014 (540868E0)
    56370000 563ac000 ubiorbitapi_r2_loader ubiorbitapi_r2_loader.dll Tue Dec 07 10:21:34 2010 (4CFE50FE)
    75ea0000 75fa0000 user32 user32.dll Sat Nov 20 07:08:57 2010 (4CE7BA59)
    76220000 76237000 userenv userenv.dll Sat Nov 20 07:08:08 2010 (4CE7BA28)
    76150000 761ed000 usp10 usp10.dll Thu Apr 24 22:04:57 2014 (5359C2C9)
    700c0000 70140000 uxtheme uxtheme.dll Mon Jul 13 21:11:24 2009 (4A5BDB3C)
    74840000 74849000 version version.dll Mon Jul 13 21:11:07 2009 (4A5BDB2B)
    74570000 745bf000 webio webio.dll Thu Nov 17 00:28:22 2011 (4EC49B76)
    745c0000 74618000 winhttp winhttp.dll Sat Nov 20 07:08:30 2010 (4CE7BA3E)
    74c80000 74e42000 wininet wininet.dll Mon Aug 18 16:46:34 2014 (53F2662A)
    732f0000 73322000 winmm winmm.dll Sat Nov 20 07:08:34 2010 (4CE7BA42)
    70560000 70567000 winnsi winnsi.dll Mon Jul 13 21:11:31 2009 (4A5BDB43)
    6d6a0000 6d6a8000 winrnr winrnr.dll Mon Jul 13 21:11:32 2009 (4A5BDB44)
    747e0000 74831000 winspool winspool.drv Sat Nov 20 07:08:43 2010 (4CE7BA4B)
    76ac0000 76aee000 wintrust wintrust.dll Tue Jul 09 00:52:48 2013 (51DB9720)
    6d660000 6d684000 WLIDNSP WLIDNSP.DLL Tue Aug 18 14:28:20 2009 (4A8AF2C4)
    76100000 76135000 ws2_32 ws2_32.dll Sat Nov 20 07:09:12 2010 (4CE7BA68)
    6d690000 6d69d000 wshbth wshbth.dll Sat Nov 20 05:00:16 2010 (4CE79C30)
    70a20000 70a25000 WSHTCPIP WSHTCPIP.DLL Mon Jul 13 21:11:54 2009 (4A5BDB5A)
    00400000 00416000 XINPUT1_3 XINPUT1_3.dll Wed Apr 04 21:39:01 2007 (46145335)
    Wanikiya and Dyami--Team Zigzag

Maybe you are looking for

  • How to set the color of ticks in JSlider

    Hi, Question about JSlider. I am trying to set various colors between the ticks. However, I have gone thro' the javadoc of JSlider but find no such API. How could I go this? Thanks in advance for any inputs and ideas. Wing

  • Cannot Cut and Paste From Excel

    I am trying to simply cut and paste from Excel into the Xcelsius spreadsheet. Even though the user manual indicates to copy from Excel and right click where you want to paste, the Paste and Paste Special functions are greyed out. It is almost like th

  • Cannot open SQL connection to liveCache LCA

    Hi All, when I'm trying to start liveCache I'm getting an error: "Cannot open SQL connection to liveCache LCA". Operational state is online. Kernel - 7.7.07 Next steps are successful: "LC10 -> liveCache monitoring -> Tools -> dbmcli :: a) sql_execute

  • Printing check

    Hi, This is regarding printing checks through F110. I has asked my technical cunsultant to copy RFFous_c to as Z program. Also attached to print program through FBZP and created smart form with Z name which is attached to FBZP in Paying company codes

  • Css stylesheets for web reports

    Does any one know how to open the css stylesheets used by BW3.0B so that they can be edited?