Sure.

Il giorno giovedì 20 febbraio 2020 19:01:31 UTC+1, DRC ha scritto:
>
> I don't understand why that would happen in NoMachine unless the root 
> visual for the X server wasn't a TrueColor visual.  Otherwise, that visual 
> should have already been hashed to a GLXFBConfig within the body of 
> VirtualGL's interposed version of glXChooseFBConfig(), or the visual will 
> be hashed to a GLXFBConfig within the body of VirtualGL's interposed 
> version of glXGetFBConfigAttrib().  In a "normal" (non-VirtualGL) GLX 
> environment, there is a 1:1 correspondence between GLXFBConfigs and 
> visuals.  In a VirtualGL environment, there is not, but the GLXFBConfig-->X 
> visual relationship is straightforward.  For every GLXFBConfig, VirtualGL 
> simply finds a "compatible" visual on the 2D X server, which means a visual 
> that matches the depth, class (TrueColor or DirectColor), bits per RGB, and 
> stereo properties of the GLXFBConfig's corresponding visual on the 3D X 
> server.  So there should be at least one GLXFBConfig that has the root 
> visual as a matching visual, unless that root visual is exotic somehow.
>
> Can you send me the output of xdpyinfo from the NoMachine X server and 
> '/opt/VirtualGL/bin/glxinfo -c' from the 3D X server?
> On 2/19/20 11:16 AM, Marcello Blancasio wrote:
>
> Well, I've run vglrun google-chrome in TurboVNC, again. This time I kept 
> __GLX_VENDOR_LIBRARY_NAME 
> cleared and *Chrome got WebGL hardware acceleration*!
>
> So I can reproduce the problem with NoMachine but I can't with TurboVNC.
>
> The reason that make me set __GLX_VENDOR_LIBRARY_NAME=nvidia is that I'd 
> like to use Mesa/llvmpipe for Gnome and Nvidia/VGL for Chrome but I 
> couldn't rely on the GLX_EXT_libglvnd extension because my version of 
> Xorg was too old.
>
> By the way, Chrome looks searching the array of GLXFB configs for 
> TurboVNC as well. But in this case the required visual id is found (0x21 
> being the id of the "dummy window" visual):
>
> [VGL 0xe6421b40] XCreateWindow (dpy=0x39632a26c800(:1) parent=0x000003af 
> x=0 y=0 width=1 height=1 depth=0 c_class=1 visual=0x00000000(0x00) 
> win=0x02c00002 ) 0.005960 ms
> [VGL 0xe6421b40] glXGetFBConfigs (dpy=0x39632a26c800(:1) screen=0 
> *nelements=359 ) 0.128031 ms
> [VGL 0xe6421b40] glXGetFBConfigAttrib (dpy=0x39632a26c800(:1) 
> config=0x39632a22aec0(0x135) attribute=32779(0x800b) *value=941(0x3ad) ) 
> 0.003815 ms
> [VGL 0xe6421b40] glXGetFBConfigAttrib (dpy=0x39632a26c800(:1) 
> config=0x39632a217030(0x136) attribute=32779(0x800b) *value=34(0x22) ) 
> 0.016928 ms
> [VGL 0xe6421b40] glXGetFBConfigAttrib (dpy=0x39632a26c800(:1) 
> config=0x39632a22aca0(0x137) attribute=32779(0x800b) *value=33(0x21) ) 
> 0.013113 ms
> [VGL 0xe6421b40] glXCreateWindow (dpy=0x39632a26c800(:1) 
> config=0x39632a22aca0(0x137) win=0x02c00002
>
> -
> Marcello.
>
> Il giorno martedì 18 febbraio 2020 19:45:12 UTC+1, DRC ha scritto: 
>>
>> Well, yes, it did help.  It solved one problem that was masking another 
>> problem, so now we can focus on the real issue.  You still haven't answered 
>> my question, though.  What prompted you to set __GLX_VENDOR_LIBRARY_NAME 
>> in the first place?  What problem did that solve, if any?  Or were you just 
>> trying random things in an attempt to make Chrome work?
>> Now, as to the visual vs. FB config matching issue, the next step is to 
>> figure out why you observe that issue but I don't.  Which versions of 
>> Chrome and TurboVNC did you test when you observed the failure? 
>>
>> VirtualGL 3.0 evolving (the code in the dev branch) now maps GLX FB 
>> configs with particular rendering attributes to 2D X server visuals in a 
>> round-robin fashion, and it front-loads this mapping in such a way that an 
>> application that hunts for a specific rendering attribute will have a high 
>> likelihood of finding a visual with an attached GLX FB config that has the 
>> desired attribute.  That should eliminate the need for VGL_DEFAULTFBCONFIG 
>> in almost all cases.  However, I certainly didn't consider the pathological 
>> case of an application that expects to find a GLX FB config with the same 
>> visual ID as the root visual, because in a VirtualGL environment, the 
>> visuals are on the 2D X server and the FB configs are on the 3D X server.  
>> The Chromium code could instead use glXGetFBConfigFromVisualSGIX(), which 
>> is fully supported in VirtualGL.
>>
>> There may be a way of working around this, but I need to be able to 
>> reproduce it first.
>>
>> DRC
>> On 2/18/20 10:35 AM, Marcello Blancasio wrote:
>>
>> Tried also env -u __GLX_VENDOR_LIBRARY_NAME vglrun google-chrome
>> and it didn't help.
>>
>> Log reported something went wrong in function CreateDummyWindow(Display* 
>> display):
>>
>> https://github.com/chromium/chromium/blob/master/ui/gl/gl_surface_glx.cc
>>
>> It looks that such dummy window inherits visual from parent (the root 
>> window), then the list of available GLXFBConfig 
>> is searched for one matching GLX_VISUAL_ID. No match is found and Chrome 
>> falls back to software rendering.
>>
>> Provided that Visuals and GLXFBconfigs come from different X server, is 
>> it possible they match somehow?
>>
>>
>> Il giorno lunedì 17 febbraio 2020 18:55:49 UTC+1, DRC ha scritto: 
>>>
>>> The other possible value is no value at all.  VirtualGL doesn't use 
>>> libGLX, so you shouldn't set that environment variable.
>>> On 2/14/20 4:07 PM, Marcello Blancasio wrote:
>>>
>>> I'm doing that to select nvidia dispatch in libGLX: it works fine with 
>>> glxinfo.
>>> The other possible value is "mesa" but it makes display :0 fallback to 
>>> glx indirect rendering.
>>>
>>> Il Ven 14 Feb 2020, 21:33 DRC <[email protected]> ha scritto:
>>>
>>>> Why are you setting __GLX_VENDOR_LIBRARY_NAME?  That seems to be the
>>>> source of the problem.
>>>>
>>>> On 2/14/20 12:59 PM, Marcello Blancasio wrote:
>>>> > # cat /etc/redhat-release
>>>> > CentOS Linux release 7.7.1908 (Core)
>>>> >
>>>> > # rpm -qa VirtualGL
>>>> > VirtualGL-2.6.3-20191024.x86_64
>>>> >
>>>> > # rpm -qa \*chrome\*
>>>> > google-chrome-stable-79.0.3945.130-1.x86_64
>>>> >
>>>> > # rpm -qa \*mesa\*
>>>> > mesa-libEGL-devel-18.3.4-5.el7.x86_64
>>>> > mesa-private-llvm-3.9.1-3.el7.x86_64
>>>> > mesa-libgbm-18.3.4-5.el7.x86_64
>>>> > mesa-dri-drivers-18.3.4-5.el7.x86_64
>>>> > mesa-libGLU-9.0.0-4.el7.x86_64
>>>> > mesa-libxatracker-18.3.4-5.el7.x86_64
>>>> > mesa-libGLES-devel-18.3.4-5.el7.x86_64
>>>> > mesa-filesystem-18.3.4-5.el7.x86_64
>>>> > mesa-libGL-18.3.4-5.el7.x86_64
>>>> > mesa-debuginfo-18.3.4-5.el7.x86_64
>>>> > mesa-libEGL-18.3.4-5.el7.x86_64
>>>> > mesa-libGLES-18.3.4-5.el7.x86_64
>>>> > mesa-khr-devel-18.3.4-5.el7.x86_64
>>>> > mesa-libglapi-18.3.4-5.el7.x86_64
>>>> > mesa-libGLU-debuginfo-9.0.0-4.el7.x86_64
>>>> > mesa-libGL-devel-18.3.4-5.el7.x86_64
>>>> >
>>>> > # rpm -qa \*nvidia\*
>>>> > yum-plugin-nvidia-1.0.2-1.el7.elrepo.noarch
>>>> > nvidia-x11-drv-libs-430.50-1.el7_7.elrepo.x86_64
>>>> > kmod-nvidia-430.50-1.el7_7.elrepo.x86_64
>>>> > nvidia-detect-430.40-1.el7.elrepo.x86_64
>>>> > nvidia-x11-drv-430.50-1.el7_7.elrepo.x86_64
>>>> >
>>>> > I get different errors for NoMachine and TruboVNC.
>>>> >
>>>> > TurboVNC:
>>>> > [VGL] ERROR: in VirtualWin--
>>>> > [VGL]    75: Could not clone X display connection
>>>> > [VGL] ERROR: in VirtualWin--
>>>> > [VGL]    75: Could not clone X display connection
>>>> > [13551:13:0214/185928.926089:ERROR:command_buffer_proxy_impl.cc(124)]
>>>> > ContextResult::kTransientFailure: Failed to send
>>>> > GpuChannelMsg_CreateCommandBuffer.
>>>> > [VGL] ERROR: in VirtualWin--
>>>> > [VGL]    75: Could not clone X display connection
>>>> > [13551:13:0214/185929.197750:ERROR:command_buffer_proxy_impl.cc(124)]
>>>> > ContextResult::kTransientFailure: Failed to send
>>>> > GpuChannelMsg_CreateCommandBuffer.
>>>> >
>>>> > NoMachine:
>>>> > [11871:11871:0214/185332.795246:ERROR:gl_surface_glx.cc(129)] Failed
>>>> > to get GLXConfig
>>>> > [11871:11871:0214/185332.795435:ERROR:gl_surface_glx.cc(475)]
>>>> > CreateDummyWindow(gfx::GetXDisplay()) failed
>>>> > [11871:11871:0214/185332.795463:ERROR:gl_initializer_x11.cc(148)]
>>>> > GLSurfaceGLX::InitializeOneOff failed.
>>>> > [11871:11871:0214/185332.816002:ERROR:viz_main_impl.cc(180)] Exiting
>>>> > GPU process due to errors during initialization
>>>> >
>>>> > On 13/02/2020 00:15, DRC wrote:
>>>> >> I was unable to reproduce the issue on CentOS 7 with an nVidia GPU 
>>>> or on
>>>> >> CentOS 8 with VMWare Tools.  Can you provide more details regarding 
>>>> your
>>>> >> system?
>>>> >>
>>>> >> DRC
>>>> >>
>>>> >> On 1/28/20 11:13 AM, Marcello Blancasio wrote:
>>>> >>> Hello,
>>>> >>>
>>>> >>> I'm not able to run recent Chrome with GPU acceleration (
>>>> >>> google-chrome-stable.x86_64, version 79.0.3945.130-1, installed from
>>>> >>> google-chrome repo):
>>>> >>>
>>>> >>> [6981:6981:0128/172712.708029:ERROR:gl_surface_glx.cc(129)] Failed 
>>>> to
>>>> >>> get GLXConfig
>>>> >>> [6981:6981:0128/172712.708168:ERROR:gl_surface_glx.cc(475)]
>>>> >>> CreateDummyWindow(gfx::GetXDisplay()) failed
>>>> >>> [6981:6981:0128/172712.708199:ERROR:gl_initializer_x11.cc(148)]
>>>> >>> GLSurfaceGLX::InitializeOneOff failed.
>>>> >>> [6981:6981:0128/172712.712314:ERROR:viz_main_impl.cc(180)] Exiting 
>>>> GPU
>>>> >>> process due to errors during initialization
>>>> >>> [7007:12:0128/172712.894210:ERROR:command_buffer_proxy_impl.cc(124)]
>>>> >>> ContextResult::kTransientFailure: Failed to send
>>>> >>> GpuChannelMsg_CreateCommandBuffer.
>>>> >>>
>>>> >>> Chrome succeeds to start but chrome://gpu reports "Software only" 
>>>> for
>>>> >>> WebGL/WebGL2.
>>>> >>>
>>>> >>> I also tried the workaround suggested here:
>>>> >>> https://github.com/VirtualGL/virtualgl/issues/73
>>>> >>>
>>>> >>> without success. I exported VGL_DEFAULTFBCONFIG=GLX_ALPHA_SIZE,8 to
>>>> >>> the environment but nothing changed.
>>>> >>>
>>>> >>> -
>>>> >>> M.
>>>> >
>>>> >
>>>>
>>>> -- 
>>>> You received this message because you are subscribed to the Google 
>>>> Groups "VirtualGL User Discussion/Support" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send 
>>>> an email to [email protected].
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/virtualgl-users/d09b6db3-d97a-17fa-d46d-6761fcc038d9%40virtualgl.org
>>>> .
>>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "VirtualGL User Discussion/Support" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to [email protected].
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/virtualgl-users/CAOoseGkfVR50AByhzrqy8TMohkiQM2hSjjAygSJEEOAUQQQ%2Bpg%40mail.gmail.com
>>>  
>>> <https://groups.google.com/d/msgid/virtualgl-users/CAOoseGkfVR50AByhzrqy8TMohkiQM2hSjjAygSJEEOAUQQQ%2Bpg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "VirtualGL User Discussion/Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected].
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/virtualgl-users/c09fd330-8fde-493c-bb29-77868d9f86d5%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/virtualgl-users/c09fd330-8fde-493c-bb29-77868d9f86d5%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>> -- 
> You received this message because you are subscribed to the Google Groups 
> "VirtualGL User Discussion/Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected] <javascript:>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/virtualgl-users/b33730e7-c8be-4028-8cb4-a689aeac022d%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/virtualgl-users/b33730e7-c8be-4028-8cb4-a689aeac022d%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"VirtualGL User Discussion/Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/virtualgl-users/57419be8-5678-43a2-b7c6-7ac467475a77%40googlegroups.com.
name of display:    :1003
version number:    11.0
vendor string:    The X.Org Foundation
vendor release number:    12005000
X.Org version: 1.20.5
maximum request size:  16777212 bytes
motion buffer size:  256
bitmap unit, bit order, padding:    32, LSBFirst, 32
image byte order:    LSBFirst
number of supported pixmap formats:    7
supported pixmap formats:
    depth 1, bits_per_pixel 1, scanline_pad 32
    depth 4, bits_per_pixel 8, scanline_pad 32
    depth 8, bits_per_pixel 8, scanline_pad 32
    depth 15, bits_per_pixel 16, scanline_pad 32
    depth 16, bits_per_pixel 16, scanline_pad 32
    depth 24, bits_per_pixel 32, scanline_pad 32
    depth 32, bits_per_pixel 32, scanline_pad 32
keycode range:    minimum 8, maximum 255
focus:  window 0x2400007, revert to Parent
number of extensions:    22
    BIG-REQUESTS
    Composite
    DAMAGE
    DOUBLE-BUFFER
    GLX
    Generic Event Extension
    MIT-SCREEN-SAVER
    MIT-SHM
    Present
    RANDR
    RECORD
    RENDER
    SHAPE
    SYNC
    X-Resource
    XC-MISC
    XFIXES
    XINERAMA
    XInputExtension
    XKEYBOARD
    XTEST
    XVideo
default screen number:    0
number of screens:    1

screen #0:
  dimensions:    1920x1017 pixels (508x269 millimeters)
  resolution:    96x96 dots per inch
  depths (8):    1, 4, 8, 15, 16, 24, 32, 24
  root window id:    0x114
  depth of root window:    24 planes
  number of colormaps:    minimum 1, maximum 1
  default colormap:    0x34
  default number of colormap cells:    256
  preallocated pixels:    black 0, white 16777215
  options:    backing-store WHEN MAPPED, save-unders NO
  largest cursor:    1920x1017
  current input event mask:    0xda4033
    KeyPressMask             KeyReleaseMask           EnterWindowMask          
    LeaveWindowMask          KeymapStateMask          StructureNotifyMask      
    SubstructureNotifyMask   SubstructureRedirectMask PropertyChangeMask       
    ColormapChangeMask       
  number of visuals:    72
  default visual id:  0x21
  visual:
    visual id:    0xcd
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xce
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xcf
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xd9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xda
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xdb
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xdc
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xdd
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xde
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xdf
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xe9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xea
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xeb
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xec
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xed
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xee
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xef
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf0
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf1
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf2
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf3
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf4
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf5
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf6
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf7
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf8
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xf9
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xfa
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xfb
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xfc
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xfd
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xfe
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xff
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x100
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x101
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x102
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x103
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x104
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x105
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x106
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x107
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x108
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x109
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10a
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10b
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x64
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10c
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10d
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10e
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x10f
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x110
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x111
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x112
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x21
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
name of display: :0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: NVIDIA Corporation
server glx version string: 1.4
server glx extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
    GLX_ARB_multisample, GLX_EXT_buffer_age, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, GLX_EXT_libglvnd, 
    GLX_EXT_stereo_tree, GLX_EXT_swap_control, GLX_EXT_swap_control_tear, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_NV_copy_buffer, GLX_NV_copy_image, GLX_NV_delay_before_swap, 
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, 
    GLX_NV_robustness_video_memory_purge, GLX_NV_swap_group, 
    GLX_NV_video_capture, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
    GLX_SGI_swap_control, GLX_SGI_video_sync
client glx vendor string: NVIDIA Corporation
client glx version string: 1.4
client glx extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_stereo_tree, GLX_EXT_swap_control, 
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap, 
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_copy_buffer, 
    GLX_NV_copy_image, GLX_NV_delay_before_swap, GLX_NV_float_buffer, 
    GLX_NV_multisample_coverage, GLX_NV_present_video, 
    GLX_NV_robustness_video_memory_purge, GLX_NV_swap_group, 
    GLX_NV_video_capture, GLX_NV_video_out, GLX_SGIX_fbconfig, 
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
GLX version: 1.4
GLX extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, GLX_EXT_stereo_tree, 
    GLX_EXT_swap_control, GLX_EXT_swap_control_tear, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_NV_copy_buffer, GLX_NV_copy_image, GLX_NV_delay_before_swap, 
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, 
    GLX_NV_robustness_video_memory_purge, GLX_NV_swap_group, 
    GLX_NV_video_capture, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
    GLX_SGI_swap_control, GLX_SGI_video_sync
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 1024 MB
    Total available memory: 1024 MB
    Currently available dedicated video memory: 841 MB
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: Quadro K600/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 430.50
OpenGL core profile shading language version string: 4.60 NVIDIA
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
    GL_AMD_multi_draw_indirect, GL_AMD_seamless_cubemap_per_texture, 
    GL_ARB_ES2_compatibility, GL_ARB_ES3_1_compatibility, 
    GL_ARB_ES3_2_compatibility, GL_ARB_ES3_compatibility, 
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_bindless_texture, 
    GL_ARB_blend_func_extended, GL_ARB_buffer_storage, GL_ARB_cl_event, 
    GL_ARB_clear_buffer_object, GL_ARB_clear_texture, GL_ARB_clip_control, 
    GL_ARB_color_buffer_float, GL_ARB_compressed_texture_pixel_storage, 
    GL_ARB_compute_shader, GL_ARB_compute_variable_group_size, 
    GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, 
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_cull_distance, 
    GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, 
    GL_ARB_depth_texture, GL_ARB_derivative_control, 
    GL_ARB_direct_state_access, GL_ARB_draw_buffers, 
    GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 
    GL_ARB_draw_indirect, GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 
    GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 
    GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 
    GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, 
    GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 
    GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 
    GL_ARB_geometry_shader4, GL_ARB_get_program_binary, 
    GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, GL_ARB_gpu_shader5, 
    GL_ARB_gpu_shader_fp64, GL_ARB_gpu_shader_int64, GL_ARB_half_float_pixel, 
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_indirect_parameters, 
    GL_ARB_instanced_arrays, GL_ARB_internalformat_query, 
    GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, 
    GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, GL_ARB_multi_bind, 
    GL_ARB_multi_draw_indirect, GL_ARB_multisample, GL_ARB_multitexture, 
    GL_ARB_occlusion_query, GL_ARB_occlusion_query2, 
    GL_ARB_parallel_shader_compile, GL_ARB_pipeline_statistics_query, 
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite, 
    GL_ARB_polygon_offset_clamp, GL_ARB_program_interface_query, 
    GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 
    GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 
    GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 
    GL_ARB_shader_ballot, GL_ARB_shader_bit_encoding, GL_ARB_shader_clock, 
    GL_ARB_shader_draw_parameters, GL_ARB_shader_group_vote, 
    GL_ARB_shader_image_load_store, GL_ARB_shader_image_size, 
    GL_ARB_shader_objects, GL_ARB_shader_precision, 
    GL_ARB_shader_storage_buffer_object, GL_ARB_shader_subroutine, 
    GL_ARB_shader_texture_image_samples, GL_ARB_shader_texture_lod, 
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack, 
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing, 
    GL_ARB_shadow, GL_ARB_sparse_buffer, GL_ARB_sparse_texture, 
    GL_ARB_spirv_extensions, GL_ARB_stencil_texturing, GL_ARB_sync, 
    GL_ARB_tessellation_shader, GL_ARB_texture_barrier, 
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object, 
    GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_buffer_range, 
    GL_ARB_texture_compression, GL_ARB_texture_compression_bptc, 
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add, 
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
    GL_ARB_texture_env_dot3, GL_ARB_texture_filter_anisotropic, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat, 
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two, 
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod, 
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui, 
    GL_ARB_texture_stencil8, GL_ARB_texture_storage, 
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, 
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, 
    GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_transpose_matrix, 
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra, 
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_64bit, 
    GL_ARB_vertex_attrib_binding, GL_ARB_vertex_buffer_object, 
    GL_ARB_vertex_program, GL_ARB_vertex_shader, 
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers, 
    GL_ATI_texture_float, GL_ATI_texture_mirror_once, 
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr, 
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color, 
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, 
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array, 
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access, 
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements, 
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample, 
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object, 
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4, 
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4, 
    GL_EXT_import_sync_object, GL_EXT_memory_object, GL_EXT_memory_object_fd, 
    GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, 
    GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, 
    GL_EXT_point_parameters, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
    GL_EXT_semaphore, GL_EXT_semaphore_fd, GL_EXT_separate_shader_objects, 
    GL_EXT_separate_specular_color, GL_EXT_shader_image_load_store, 
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, 
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array, 
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1, 
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc, 
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map, 
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, 
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, 
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer, 
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp, 
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_shared_exponent, 
    GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, 
    GL_EXT_transform_feedback2, GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, 
    GL_EXT_vertex_attrib_64bit, GL_EXT_window_rectangles, 
    GL_EXT_x11_sync_object, GL_IBM_rasterpos_clip, 
    GL_IBM_texture_mirrored_repeat, GL_KHR_blend_equation_advanced, 
    GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, 
    GL_KHR_parallel_shader_compile, GL_KHR_robust_buffer_access_behavior, 
    GL_KHR_robustness, GL_KTX_buffer_region, GL_NVX_conditional_render, 
    GL_NVX_gpu_memory_info, GL_NVX_nvenc_interop, GL_NV_ES1_1_compatibility, 
    GL_NV_ES3_1_compatibility, GL_NV_alpha_to_coverage_dither_control, 
    GL_NV_bindless_multi_draw_indirect, 
    GL_NV_bindless_multi_draw_indirect_count, GL_NV_bindless_texture, 
    GL_NV_blend_equation_advanced, GL_NV_blend_square, GL_NV_command_list, 
    GL_NV_compute_program5, GL_NV_conditional_render, 
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_deep_texture3D, 
    GL_NV_depth_buffer_float, GL_NV_depth_clamp, GL_NV_draw_texture, 
    GL_NV_draw_vulkan_image, GL_NV_explicit_multisample, GL_NV_feature_query, 
    GL_NV_fence, GL_NV_float_buffer, GL_NV_fog_distance, 
    GL_NV_fragment_program, GL_NV_fragment_program2, 
    GL_NV_fragment_program_option, GL_NV_framebuffer_multisample_coverage, 
    GL_NV_geometry_shader4, GL_NV_gpu_program4, GL_NV_gpu_program4_1, 
    GL_NV_gpu_program5, GL_NV_gpu_program5_mem_extended, 
    GL_NV_gpu_program_fp64, GL_NV_gpu_shader5, GL_NV_half_float, 
    GL_NV_internalformat_sample_query, GL_NV_light_max_exponent, 
    GL_NV_multisample_coverage, GL_NV_multisample_filter_hint, 
    GL_NV_occlusion_query, GL_NV_packed_depth_stencil, 
    GL_NV_parameter_buffer_object, GL_NV_parameter_buffer_object2, 
    GL_NV_path_rendering, GL_NV_pixel_data_range, GL_NV_point_sprite, 
    GL_NV_primitive_restart, GL_NV_query_resource, GL_NV_query_resource_tag, 
    GL_NV_register_combiners, GL_NV_register_combiners2, 
    GL_NV_robustness_video_memory_purge, GL_NV_shader_atomic_counters, 
    GL_NV_shader_atomic_float, GL_NV_shader_buffer_load, 
    GL_NV_shader_storage_buffer_object, GL_NV_shader_thread_group, 
    GL_NV_shader_thread_shuffle, GL_NV_texgen_reflection, 
    GL_NV_texture_barrier, GL_NV_texture_compression_vtc, 
    GL_NV_texture_env_combine4, GL_NV_texture_multisample, 
    GL_NV_texture_rectangle, GL_NV_texture_rectangle_compressed, 
    GL_NV_texture_shader, GL_NV_texture_shader2, GL_NV_texture_shader3, 
    GL_NV_transform_feedback, GL_NV_transform_feedback2, 
    GL_NV_uniform_buffer_unified_memory, GL_NV_vdpau_interop, 
    GL_NV_vdpau_interop2, GL_NV_vertex_array_range, GL_NV_vertex_array_range2, 
    GL_NV_vertex_attrib_integer_64bit, GL_NV_vertex_buffer_unified_memory, 
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2, 
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_NV_video_capture, 
    GL_OVR_multiview, GL_OVR_multiview2, GL_S3_s3tc, GL_SGIS_generate_mipmap, 
    GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow, 
    GL_SUN_slice_accum

OpenGL version string: 4.6.0 NVIDIA 430.50
OpenGL shading language version string: 4.60 NVIDIA
OpenGL context flags: (none)
OpenGL profile mask: (none)
OpenGL extensions:
    GL_AMD_multi_draw_indirect, GL_AMD_seamless_cubemap_per_texture, 
    GL_ARB_ES2_compatibility, GL_ARB_ES3_1_compatibility, 
    GL_ARB_ES3_2_compatibility, GL_ARB_ES3_compatibility, 
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_bindless_texture, 
    GL_ARB_blend_func_extended, GL_ARB_buffer_storage, GL_ARB_cl_event, 
    GL_ARB_clear_buffer_object, GL_ARB_clear_texture, GL_ARB_clip_control, 
    GL_ARB_color_buffer_float, GL_ARB_compatibility, 
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, 
    GL_ARB_compute_variable_group_size, GL_ARB_conditional_render_inverted, 
    GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_copy_image, 
    GL_ARB_cull_distance, GL_ARB_debug_output, GL_ARB_depth_buffer_float, 
    GL_ARB_depth_clamp, GL_ARB_depth_texture, GL_ARB_derivative_control, 
    GL_ARB_direct_state_access, GL_ARB_draw_buffers, 
    GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 
    GL_ARB_draw_indirect, GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 
    GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 
    GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 
    GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, 
    GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 
    GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 
    GL_ARB_geometry_shader4, GL_ARB_get_program_binary, 
    GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, GL_ARB_gpu_shader5, 
    GL_ARB_gpu_shader_fp64, GL_ARB_gpu_shader_int64, GL_ARB_half_float_pixel, 
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_indirect_parameters, 
    GL_ARB_instanced_arrays, GL_ARB_internalformat_query, 
    GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, 
    GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, GL_ARB_multi_bind, 
    GL_ARB_multi_draw_indirect, GL_ARB_multisample, GL_ARB_multitexture, 
    GL_ARB_occlusion_query, GL_ARB_occlusion_query2, 
    GL_ARB_parallel_shader_compile, GL_ARB_pipeline_statistics_query, 
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite, 
    GL_ARB_polygon_offset_clamp, GL_ARB_program_interface_query, 
    GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 
    GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 
    GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 
    GL_ARB_shader_ballot, GL_ARB_shader_bit_encoding, GL_ARB_shader_clock, 
    GL_ARB_shader_draw_parameters, GL_ARB_shader_group_vote, 
    GL_ARB_shader_image_load_store, GL_ARB_shader_image_size, 
    GL_ARB_shader_objects, GL_ARB_shader_precision, 
    GL_ARB_shader_storage_buffer_object, GL_ARB_shader_subroutine, 
    GL_ARB_shader_texture_image_samples, GL_ARB_shader_texture_lod, 
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack, 
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing, 
    GL_ARB_shadow, GL_ARB_sparse_buffer, GL_ARB_sparse_texture, 
    GL_ARB_spirv_extensions, GL_ARB_stencil_texturing, GL_ARB_sync, 
    GL_ARB_tessellation_shader, GL_ARB_texture_barrier, 
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object, 
    GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_buffer_range, 
    GL_ARB_texture_compression, GL_ARB_texture_compression_bptc, 
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add, 
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
    GL_ARB_texture_env_dot3, GL_ARB_texture_filter_anisotropic, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat, 
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two, 
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod, 
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui, 
    GL_ARB_texture_stencil8, GL_ARB_texture_storage, 
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, 
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, 
    GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_transpose_matrix, 
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra, 
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_64bit, 
    GL_ARB_vertex_attrib_binding, GL_ARB_vertex_buffer_object, 
    GL_ARB_vertex_program, GL_ARB_vertex_shader, 
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers, 
    GL_ATI_texture_float, GL_ATI_texture_mirror_once, 
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr, 
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color, 
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, 
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array, 
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access, 
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements, 
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample, 
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object, 
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4, 
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4, 
    GL_EXT_import_sync_object, GL_EXT_memory_object, GL_EXT_memory_object_fd, 
    GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, 
    GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, 
    GL_EXT_point_parameters, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
    GL_EXT_semaphore, GL_EXT_semaphore_fd, GL_EXT_separate_shader_objects, 
    GL_EXT_separate_specular_color, GL_EXT_shader_image_load_store, 
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, 
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array, 
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1, 
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc, 
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map, 
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, 
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, 
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer, 
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp, 
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_shared_exponent, 
    GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, 
    GL_EXT_transform_feedback2, GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, 
    GL_EXT_vertex_attrib_64bit, GL_EXT_window_rectangles, 
    GL_EXT_x11_sync_object, GL_IBM_rasterpos_clip, 
    GL_IBM_texture_mirrored_repeat, GL_KHR_blend_equation_advanced, 
    GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, 
    GL_KHR_parallel_shader_compile, GL_KHR_robust_buffer_access_behavior, 
    GL_KHR_robustness, GL_KTX_buffer_region, GL_NVX_conditional_render, 
    GL_NVX_gpu_memory_info, GL_NVX_nvenc_interop, GL_NV_ES1_1_compatibility, 
    GL_NV_ES3_1_compatibility, GL_NV_alpha_to_coverage_dither_control, 
    GL_NV_bindless_multi_draw_indirect, 
    GL_NV_bindless_multi_draw_indirect_count, GL_NV_bindless_texture, 
    GL_NV_blend_equation_advanced, GL_NV_blend_square, GL_NV_command_list, 
    GL_NV_compute_program5, GL_NV_conditional_render, 
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_deep_texture3D, 
    GL_NV_depth_buffer_float, GL_NV_depth_clamp, GL_NV_draw_texture, 
    GL_NV_draw_vulkan_image, GL_NV_explicit_multisample, GL_NV_feature_query, 
    GL_NV_fence, GL_NV_float_buffer, GL_NV_fog_distance, 
    GL_NV_fragment_program, GL_NV_fragment_program2, 
    GL_NV_fragment_program_option, GL_NV_framebuffer_multisample_coverage, 
    GL_NV_geometry_shader4, GL_NV_gpu_program4, GL_NV_gpu_program4_1, 
    GL_NV_gpu_program5, GL_NV_gpu_program5_mem_extended, 
    GL_NV_gpu_program_fp64, GL_NV_gpu_shader5, GL_NV_half_float, 
    GL_NV_internalformat_sample_query, GL_NV_light_max_exponent, 
    GL_NV_multisample_coverage, GL_NV_multisample_filter_hint, 
    GL_NV_occlusion_query, GL_NV_packed_depth_stencil, 
    GL_NV_parameter_buffer_object, GL_NV_parameter_buffer_object2, 
    GL_NV_path_rendering, GL_NV_pixel_data_range, GL_NV_point_sprite, 
    GL_NV_primitive_restart, GL_NV_query_resource, GL_NV_query_resource_tag, 
    GL_NV_register_combiners, GL_NV_register_combiners2, 
    GL_NV_robustness_video_memory_purge, GL_NV_shader_atomic_counters, 
    GL_NV_shader_atomic_float, GL_NV_shader_buffer_load, 
    GL_NV_shader_storage_buffer_object, GL_NV_shader_thread_group, 
    GL_NV_shader_thread_shuffle, GL_NV_texgen_reflection, 
    GL_NV_texture_barrier, GL_NV_texture_compression_vtc, 
    GL_NV_texture_env_combine4, GL_NV_texture_multisample, 
    GL_NV_texture_rectangle, GL_NV_texture_rectangle_compressed, 
    GL_NV_texture_shader, GL_NV_texture_shader2, GL_NV_texture_shader3, 
    GL_NV_transform_feedback, GL_NV_transform_feedback2, 
    GL_NV_uniform_buffer_unified_memory, GL_NV_vdpau_interop, 
    GL_NV_vdpau_interop2, GL_NV_vertex_array_range, GL_NV_vertex_array_range2, 
    GL_NV_vertex_attrib_integer_64bit, GL_NV_vertex_buffer_unified_memory, 
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2, 
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_NV_video_capture, 
    GL_OVR_multiview, GL_OVR_multiview2, GL_S3_s3tc, GL_SGIS_generate_mipmap, 
    GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow, 
    GL_SUN_slice_accum

OpenGL ES profile version string: OpenGL ES 3.2 NVIDIA 430.50
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:
    GL_ANDROID_extension_pack_es31a, GL_EXT_EGL_image_external_wrap_modes, 
    GL_EXT_base_instance, GL_EXT_blend_func_extended, GL_EXT_blend_minmax, 
    GL_EXT_buffer_storage, GL_EXT_clear_texture, GL_EXT_clip_control, 
    GL_EXT_clip_cull_distance, GL_EXT_color_buffer_float, 
    GL_EXT_color_buffer_half_float, GL_EXT_compressed_ETC1_RGB8_sub_texture, 
    GL_EXT_conservative_depth, GL_EXT_copy_image, GL_EXT_debug_label, 
    GL_EXT_discard_framebuffer, GL_EXT_disjoint_timer_query, 
    GL_EXT_draw_buffers_indexed, GL_EXT_draw_elements_base_vertex, 
    GL_EXT_draw_transform_feedback, GL_EXT_float_blend, GL_EXT_frag_depth, 
    GL_EXT_geometry_point_size, GL_EXT_geometry_shader, GL_EXT_gpu_shader5, 
    GL_EXT_map_buffer_range, GL_EXT_memory_object, GL_EXT_memory_object_fd, 
    GL_EXT_multi_draw_indirect, GL_EXT_multisample_compatibility, 
    GL_EXT_multisampled_render_to_texture, 
    GL_EXT_multisampled_render_to_texture2, GL_EXT_occlusion_query_boolean, 
    GL_EXT_polygon_offset_clamp, GL_EXT_primitive_bounding_box, 
    GL_EXT_render_snorm, GL_EXT_robustness, GL_EXT_sRGB, 
    GL_EXT_sRGB_write_control, GL_EXT_semaphore, GL_EXT_semaphore_fd, 
    GL_EXT_separate_shader_objects, GL_EXT_shader_group_vote, 
    GL_EXT_shader_implicit_conversions, GL_EXT_shader_integer_mix, 
    GL_EXT_shader_io_blocks, GL_EXT_shader_non_constant_global_initializers, 
    GL_EXT_shader_texture_lod, GL_EXT_shadow_samplers, GL_EXT_sparse_texture, 
    GL_EXT_tessellation_point_size, GL_EXT_tessellation_shader, 
    GL_EXT_texture_border_clamp, GL_EXT_texture_buffer, 
    GL_EXT_texture_compression_bptc, GL_EXT_texture_compression_dxt1, 
    GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 
    GL_EXT_texture_cube_map_array, GL_EXT_texture_filter_anisotropic, 
    GL_EXT_texture_format_BGRA8888, GL_EXT_texture_mirror_clamp_to_edge, 
    GL_EXT_texture_norm16, GL_EXT_texture_rg, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_storage, GL_EXT_texture_view, 
    GL_EXT_unpack_subimage, GL_EXT_window_rectangles, 
    GL_KHR_blend_equation_advanced, GL_KHR_context_flush_control, 
    GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 
    GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, GL_NV_bgr, 
    GL_NV_bindless_texture, GL_NV_blend_equation_advanced, 
    GL_NV_conditional_render, GL_NV_copy_buffer, GL_NV_copy_image, 
    GL_NV_draw_buffers, GL_NV_draw_instanced, GL_NV_draw_texture, 
    GL_NV_draw_vulkan_image, GL_NV_explicit_attrib_location, 
    GL_NV_fbo_color_attachments, GL_NV_framebuffer_blit, 
    GL_NV_framebuffer_multisample, GL_NV_generate_mipmap_sRGB, 
    GL_NV_gpu_shader5, GL_NV_image_formats, GL_NV_instanced_arrays, 
    GL_NV_internalformat_sample_query, GL_NV_non_square_matrices, 
    GL_NV_occlusion_query_samples, GL_NV_pack_subimage, GL_NV_packed_float, 
    GL_NV_packed_float_linear, GL_NV_path_rendering, 
    GL_NV_pixel_buffer_object, GL_NV_polygon_mode, GL_NV_read_buffer, 
    GL_NV_read_depth, GL_NV_read_depth_stencil, GL_NV_read_stencil, 
    GL_NV_sRGB_formats, GL_NV_shader_noperspective_interpolation, 
    GL_NV_shadow_samplers_array, GL_NV_shadow_samplers_cube, 
    GL_NV_texture_array, GL_NV_texture_barrier, GL_NV_texture_border_clamp, 
    GL_NV_texture_compression_latc, GL_NV_texture_compression_s3tc, 
    GL_NV_texture_compression_s3tc_update, GL_NV_timer_query, 
    GL_NV_viewport_array, GL_OES_compressed_ETC1_RGB8_texture, 
    GL_OES_copy_image, GL_OES_depth24, GL_OES_depth32, GL_OES_depth_texture, 
    GL_OES_depth_texture_cube_map, GL_OES_draw_buffers_indexed, 
    GL_OES_draw_elements_base_vertex, GL_OES_element_index_uint, 
    GL_OES_fbo_render_mipmap, GL_OES_geometry_point_size, 
    GL_OES_geometry_shader, GL_OES_get_program_binary, GL_OES_gpu_shader5, 
    GL_OES_mapbuffer, GL_OES_packed_depth_stencil, 
    GL_OES_primitive_bounding_box, GL_OES_rgb8_rgba8, GL_OES_sample_shading, 
    GL_OES_sample_variables, GL_OES_shader_image_atomic, 
    GL_OES_shader_io_blocks, GL_OES_shader_multisample_interpolation, 
    GL_OES_standard_derivatives, GL_OES_tessellation_point_size, 
    GL_OES_tessellation_shader, GL_OES_texture_border_clamp, 
    GL_OES_texture_buffer, GL_OES_texture_cube_map_array, 
    GL_OES_texture_float, GL_OES_texture_float_linear, 
    GL_OES_texture_half_float, GL_OES_texture_half_float_linear, 
    GL_OES_texture_npot, GL_OES_texture_stencil8, 
    GL_OES_texture_storage_multisample_2d_array, GL_OES_texture_view, 
    GL_OES_vertex_array_object, GL_OES_vertex_half_float, 
    GL_OES_viewport_array, GL_OVR_multiview, GL_OVR_multiview2, 
    GL_OVR_multiview_multisampled_render_to_texture

359 GLXFBConfigs:
    visual  x   bf lv rg d st  colorbuffer  ax dp st accumbuffer  ms  cav  drw
  id dep cl sp  sz l  ci b ro  r  g  b  a F bf th cl  r  g  b  a ns b eat  typ
------------------------------------------------------------------------------
0x135 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x136 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x137 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x138 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x139 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x13a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x13b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x13c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x13d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x13e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x13f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x140 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x141 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x142 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x143 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x144 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x145 24 tc  0  24  0 r  y  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x146 24 dc  0  24  0 r  y  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x147 24 tc  0  32  0 r  y  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x148 24 dc  0  32  0 r  y  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x149 24 tc  0  24  0 r  .  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x14a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x14b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x14c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x14d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x14e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x14f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x150 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x151 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x152 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x153 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x154 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x155 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x156 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x157 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x158 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x159 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x15a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x15b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x15c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x15d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x15e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x15f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x160 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x161 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x162 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x163 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x164 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x165 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x166 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x167 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x168 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x169 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x16a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x16b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x16c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x16d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x16e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x16f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x170 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x171 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x172 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x173 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x174 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x175 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x176 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x177 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x178 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x179 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x17a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x17b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x17c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x17d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x17e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x17f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x180 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x181 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x182 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x183 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x184 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x185 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x186 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x187 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x188 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x189 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x18a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x18b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x18c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x18d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x18e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x18f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x190 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x191 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x192 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x193 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x194 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x195 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x196 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x197 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x198 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x199 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x19a 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x19b 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x19c 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x19d 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x19e 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x19f 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x1a0 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x1a1 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a2 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a3 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a4 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a5 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a6 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a7 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a8 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1a9 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x1aa 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x1ab 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x1ac 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x1ad 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1ae 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1af 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b0 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b1 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b2 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b3 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b4 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x1b5 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x1b6 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x1b7 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x1b8 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x1b9 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1ba 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1bb 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1bc 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1bd 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1be 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1bf 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c0 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c1 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x1c2 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x1c3 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x1c4 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x1c5 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c6 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c7 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c8 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x1c9 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1ca 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1cb 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1cc 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x1cd 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x1ce 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x1cf 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d0 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d1 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d2 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d3 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d4 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x1d5 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x1d6 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x1d7 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x1d8 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x1d9 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x1da 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x1db 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x1dc 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x1dd 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x1de 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x1df 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e0 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e1 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e2 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e3 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e4 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x1e5 24 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x1e6 24 dc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x1e7 24 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x1e8 24 dc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x1e9 24 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x1ea 24 dc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x1eb 24 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x1ec 24 dc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x1ed 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x1ee 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x1ef 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  0 0 None PRW
0x1f0 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  0 0 None PAW
0x1f1 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x1f2 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x1f3 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  0 0 None PRW
0x1f4 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  0 0 None PAW
0x1f5 32 tc  0  24  0 r  y  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x1f6 32 tc  0  32  0 r  y  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x1f7 32 tc  0  24  0 r  .  .  8  8  8  0 .  4  0  0 16 16 16 16  0 0 None PRW
0x1f8 32 tc  0  32  0 r  .  .  8  8  8  8 .  4  0  0 16 16 16 16  0 0 None PAW
0x1f9 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x1fa 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x1fb 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x1fc 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x1fd 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  2 1 None P.W
0x1fe 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  2 1 None P.W
0x1ff 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  4 1 None P.W
0x200 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  4 1 None P.W
0x201 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x202 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x203 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x204 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x205 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  2 1 None P.W
0x206 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  2 1 None P.W
0x207 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  4 1 None P.W
0x208 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  4 1 None P.W
0x209 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x20a 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x20b 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x20c 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x20d 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x20e 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x20f 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x210 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x211 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x212 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x213 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x214 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x215 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x216 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x217 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x218 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x219 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x21a 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x21b 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x21c 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x21d 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x21e 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x21f 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x220 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x221 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x222 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x223 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x224 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x225 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x226 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x227 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16  8 1 None P.W
0x228 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16  8 1 None P.W
0x229 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x22a 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 16 1 None P.W
0x22b 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x22c 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 16 1 None P.W
0x22d 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x22e 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x22f 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x230 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x231 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x232 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x233 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16  8 1 None P.W
0x234 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16  8 1 None P.W
0x235 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x236 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 16 1 None P.W
0x237 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x238 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 16 1 None P.W
0x239 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x23a 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x23b 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 64 1 None P.W
0x23c 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 64 1 None P.W
0x23d 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x23e 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x23f 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 64 1 None P.W
0x240 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 64 1 None P.W
0x241 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x242 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x243 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  0 16 16 16 16 32 1 None P.W
0x244 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  0 16 16 16 16 32 1 None P.W
0x245 32 tc  0  24  0 r  y  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x246 32 tc  0  32  0 r  y  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x247 32 tc  0  24  0 r  .  .  8  8  8  0 .  4 24  8 16 16 16 16 32 1 None P.W
0x248 32 tc  0  32  0 r  .  .  8  8  8  8 .  4 24  8 16 16 16 16 32 1 None P.W
0x249  0 ??  0  16  0 r  y  .  5  6  5  0 .  4 16  0 16 16 16 16  0 0 None P..
0x24a  0 ??  0  16  0 r  .  .  5  6  5  0 .  4 16  0 16 16 16 16  0 0 None P..
0x24b  0 ??  0  16  0 r  y  .  5  6  5  0 .  4 24  0 16 16 16 16  0 0 None P..
0x24c  0 ??  0  16  0 r  .  .  5  6  5  0 .  4 24  0 16 16 16 16  0 0 None P..
0x24d  0 ??  0  16  0 r  y  .  5  6  5  0 .  4 24  8 16 16 16 16  0 0 None P..
0x24e  0 ??  0  16  0 r  .  .  5  6  5  0 .  4 24  8 16 16 16 16  0 0 None P..
0x24f  0 ??  0  16  0 r  y  .  5  6  5  0 .  4  0  0 16 16 16 16  0 0 None P..
0x250  0 ??  0  16  0 r  .  .  5  6  5  0 .  4  0  0 16 16 16 16  0 0 None P..
0x251  0 ??  0   0  0 r  .  .  0  0  0  0 .  4 16  0 16 16 16 16  0 0 None P..
0x252  0 ??  0   0  0 r  .  .  0  0  0  0 .  4 24  0 16 16 16 16  0 0 None P..
0x253  0 ??  0   0  0 r  .  .  0  0  0  0 .  4 24  8 16 16 16 16  0 0 None P..
0x254  0 ??  0  32  0 r  .  . 16 16  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x255  0 ??  0  32  0    .  . 16 16  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x256  0 ??  0  32  0 r  y  . 16 16  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x257  0 ??  0  32  0    y  . 16 16  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x258  0 ??  0  32  0 r  .  . 32  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x259  0 ??  0  32  0    .  . 32  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x25a  0 ??  0  32  0 r  y  . 32  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x25b  0 ??  0  32  0    y  . 32  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x25c  0 ??  0  64  0 r  .  . 16 16 16 16 f  4  0  0 16 16 16 16  0 0 None P..
0x25d  0 ??  0  64  0    .  . 16 16 16 16 f  4  0  0 16 16 16 16  0 0 None P..
0x25e  0 ??  0  64  0 r  y  . 16 16 16 16 f  4  0  0 16 16 16 16  0 0 None P..
0x25f  0 ??  0  64  0    y  . 16 16 16 16 f  4  0  0 16 16 16 16  0 0 None P..
0x260  0 ??  0 128  0 r  .  . 32 32 32 32 f  4  0  0 16 16 16 16  0 0 None P..
0x261  0 ??  0 128  0    .  . 32 32 32 32 f  4  0  0 16 16 16 16  0 0 None P..
0x262  0 ??  0 128  0 r  y  . 32 32 32 32 f  4  0  0 16 16 16 16  0 0 None P..
0x263  0 ??  0 128  0    y  . 32 32 32 32 f  4  0  0 16 16 16 16  0 0 None P..
0x264  0 ??  0  32  0 r  .  . 16 16  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x265  0 ??  0  32  0    .  . 16 16  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x266  0 ??  0  32  0 r  y  . 16 16  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x267  0 ??  0  32  0    y  . 16 16  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x268  0 ??  0  32  0 r  .  . 16 16  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x269  0 ??  0  32  0    .  . 16 16  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x26a  0 ??  0  32  0 r  y  . 16 16  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x26b  0 ??  0  32  0    y  . 16 16  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x26c  0 ??  0  32  0 r  .  . 32  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x26d  0 ??  0  32  0    .  . 32  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x26e  0 ??  0  32  0 r  y  . 32  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x26f  0 ??  0  32  0    y  . 32  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x270  0 ??  0  32  0 r  .  . 32  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x271  0 ??  0  32  0    .  . 32  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x272  0 ??  0  32  0 r  y  . 32  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x273  0 ??  0  32  0    y  . 32  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x274  0 ??  0  64  0 r  .  . 16 16 16 16 f  4 24  0 16 16 16 16  0 0 None P..
0x275  0 ??  0  64  0    .  . 16 16 16 16 f  4 24  0 16 16 16 16  0 0 None P..
0x276  0 ??  0  64  0 r  y  . 16 16 16 16 f  4 24  0 16 16 16 16  0 0 None P..
0x277  0 ??  0  64  0    y  . 16 16 16 16 f  4 24  0 16 16 16 16  0 0 None P..
0x278  0 ??  0  64  0 r  .  . 16 16 16 16 f  4 24  8 16 16 16 16  0 0 None P..
0x279  0 ??  0  64  0    .  . 16 16 16 16 f  4 24  8 16 16 16 16  0 0 None P..
0x27a  0 ??  0  64  0 r  y  . 16 16 16 16 f  4 24  8 16 16 16 16  0 0 None P..
0x27b  0 ??  0  64  0    y  . 16 16 16 16 f  4 24  8 16 16 16 16  0 0 None P..
0x27c  0 ??  0 128  0 r  .  . 32 32 32 32 f  4 24  0 16 16 16 16  0 0 None P..
0x27d  0 ??  0 128  0    .  . 32 32 32 32 f  4 24  0 16 16 16 16  0 0 None P..
0x27e  0 ??  0 128  0 r  y  . 32 32 32 32 f  4 24  0 16 16 16 16  0 0 None P..
0x27f  0 ??  0 128  0    y  . 32 32 32 32 f  4 24  0 16 16 16 16  0 0 None P..
0x280  0 ??  0 128  0 r  .  . 32 32 32 32 f  4 24  8 16 16 16 16  0 0 None P..
0x281  0 ??  0 128  0    .  . 32 32 32 32 f  4 24  8 16 16 16 16  0 0 None P..
0x282  0 ??  0 128  0 r  y  . 32 32 32 32 f  4 24  8 16 16 16 16  0 0 None P..
0x283  0 ??  0 128  0    y  . 32 32 32 32 f  4 24  8 16 16 16 16  0 0 None P..
0x284  0 ??  0  16  0 r  .  . 16  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x285  0 ??  0  16  0    .  . 16  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x286  0 ??  0  16  0 r  y  . 16  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x287  0 ??  0  16  0    y  . 16  0  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x288  0 ??  0  64  0 r  .  . 32 32  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x289  0 ??  0  64  0    .  . 32 32  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x28a  0 ??  0  64  0 r  y  . 32 32  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x28b  0 ??  0  64  0    y  . 32 32  0  0 f  4  0  0 16 16 16 16  0 0 None P..
0x28c  0 ??  0  16  0 r  .  . 16  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x28d  0 ??  0  16  0    .  . 16  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x28e  0 ??  0  16  0 r  y  . 16  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x28f  0 ??  0  16  0    y  . 16  0  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x290  0 ??  0  16  0 r  .  . 16  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x291  0 ??  0  16  0    .  . 16  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x292  0 ??  0  16  0 r  y  . 16  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x293  0 ??  0  16  0    y  . 16  0  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x294  0 ??  0  64  0 r  .  . 32 32  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x295  0 ??  0  64  0    .  . 32 32  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x296  0 ??  0  64  0 r  y  . 32 32  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x297  0 ??  0  64  0    y  . 32 32  0  0 f  4 24  0 16 16 16 16  0 0 None P..
0x298  0 ??  0  64  0 r  .  . 32 32  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x299  0 ??  0  64  0    .  . 32 32  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x29a  0 ??  0  64  0 r  y  . 32 32  0  0 f  4 24  8 16 16 16 16  0 0 None P..
0x29b  0 ??  0  64  0    y  . 32 32  0  0 f  4 24  8 16 16 16 16  0 0 None P..

Reply via email to