unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
@ 2014-01-11 22:01 Lars Andersen
  2014-01-12 16:04 ` Dmitry Antipov
  2014-01-12 17:26 ` bug#16420: Lars Andersen
  0 siblings, 2 replies; 16+ messages in thread
From: Lars Andersen @ 2014-01-11 22:01 UTC (permalink / raw)
  To: 16420

[-- Attachment #1: Type: text/plain, Size: 3135 bytes --]

Starting from emacs -Q:

(defface flycheck-warning
'((((supports :underline (:style wave)))
:underline (:style wave :color "DarkOrange"))
(t
:underline t :inherit warning))
"Flycheck face for warnings."
:package-version '(flycheck . "0.13")
:group 'flycheck-faces)

(let ((ov (make-overlay (point) (point-at-eol)))
(face 'flycheck-warning))
(overlay-put ov 'face face)) ;; C-x C-e this last form to reproduce

After evaluating this elisp, top reports 100% CPU utilization from X.
The face used here is a squiggly underline.  I tried using another face,
isearch-fail face and that overlay was drawn just fine.  I believe the
problem is isolated to this squiggly underline face.  At first I thought
the issue was with flyspell, or flycheck, but these are just examples of
modes that such a squiggly underline.

I am running arch linux, without any desktop environment (I just use Xmonad
and install
whatever else I might want).  The computer is a Dell Precision M4700.

In GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.8.2)
 of 2013-08-07 on -mnt-storage-buildroots-staging-x86_64-eric
Windowing system distributor `The X.Org Foundation', version 11.0.11405000
Configured using:
 `configure '--prefix=/usr' '--sysconfdir=/etc' '--libexecdir=/usr/lib'
 '--localstatedir=/var' '--with-x-toolkit=gtk3' '--with-xft'
 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector
 --param=ssp-buffer-size=4'
 'LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro'
 'CPPFLAGS=-D_FORTIFY_SOURCE=2''

Important settings:
  value of $LC_COLLATE: C
  value of $LC_TIME: en_DK.UTF-8
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix
  default enable-multibyte-characters: t

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev
gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util
mail-prsvr mail-utils help-mode easymenu debug time-date tooltip
ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd
fontset image regexp-opt fringe tabulated-list newcomment lisp-mode
register page menu-bar rfn-eshadow timer select scroll-bar mouse
jit-lock font-lock syntax facemenu font-core frame cham georgian
utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean
japanese hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
minibuffer loaddefs button faces cus-face macroexp files text-properties
overlay sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote make-network-process dbusbind
dynamic-setting system-font-setting font-render-setting move-toolbar gtk
x-toolkit x multi-tty emacs)

[-- Attachment #2: Type: text/html, Size: 4178 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-11 22:01 bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization Lars Andersen
@ 2014-01-12 16:04 ` Dmitry Antipov
  2014-01-12 16:30   ` Eli Zaretskii
  2014-01-12 17:26 ` bug#16420: Lars Andersen
  1 sibling, 1 reply; 16+ messages in thread
From: Dmitry Antipov @ 2014-01-12 16:04 UTC (permalink / raw)
  To: Lars Andersen; +Cc: 16420

On 01/12/2014 02:01 AM, Lars Andersen wrote:

> Starting from emacs -Q:
>
> (defface flycheck-warning
> '((((supports :underline (:style wave)))
> :underline (:style wave :color "DarkOrange"))
> (t
> :underline t :inherit warning))
> "Flycheck face for warnings."
> :package-version '(flycheck . "0.13")
> :group 'flycheck-faces)
> (let ((ov (make-overlay (point) (point-at-eol)))
> (face 'flycheck-warning))
> (overlay-put ov 'face face)) ;; C-x C-e this last form to reproduce

Note that C-x C-e has no visible effect until you evaluate first
'defface' form too.

IIUC Emacs itself is still responsible after C-x C-e; could you
please eval (overlays-in (point-min) (point-max)) immediately after?

> After evaluating this elisp, top reports 100% CPU utilization from X.

What about Emacs CPU utilization, and RSS of X and Emacs as well?

Dmitry






^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-12 16:04 ` Dmitry Antipov
@ 2014-01-12 16:30   ` Eli Zaretskii
  2014-01-12 17:53     ` Jan Djärv
  0 siblings, 1 reply; 16+ messages in thread
From: Eli Zaretskii @ 2014-01-12 16:30 UTC (permalink / raw)
  To: Dmitry Antipov; +Cc: expez, 16420

> Date: Sun, 12 Jan 2014 20:04:22 +0400
> From: Dmitry Antipov <dmantipov@yandex.ru>
> Cc: 16420@debbugs.gnu.org
> 
> On 01/12/2014 02:01 AM, Lars Andersen wrote:
> 
> > Starting from emacs -Q:
> >
> > (defface flycheck-warning
> > '((((supports :underline (:style wave)))
> > :underline (:style wave :color "DarkOrange"))
> > (t
> > :underline t :inherit warning))
> > "Flycheck face for warnings."
> > :package-version '(flycheck . "0.13")
> > :group 'flycheck-faces)
> > (let ((ov (make-overlay (point) (point-at-eol)))
> > (face 'flycheck-warning))
> > (overlay-put ov 'face face)) ;; C-x C-e this last form to reproduce
> 
> Note that C-x C-e has no visible effect until you evaluate first
> 'defface' form too.

Dmitry, can you reproduce this?  Because I can't, neither in Emacs
24.3 nor in the latest trunk.  But that's on MS-Windows; I don't have
access to a GUI session on Unix.

Anyway, if Emacs infloops, please attach the debugger and try to find
out where it loops by using the advice in etc/DEBUG.





^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-11 22:01 bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization Lars Andersen
  2014-01-12 16:04 ` Dmitry Antipov
@ 2014-01-12 17:26 ` Lars Andersen
  2014-01-12 18:08   ` bug#16420: Jan Djärv
  1 sibling, 1 reply; 16+ messages in thread
From: Lars Andersen @ 2014-01-12 17:26 UTC (permalink / raw)
  To: 16420

[-- Attachment #1: Type: text/plain, Size: 1033 bytes --]

(overlays-in (point-min) (point-max)) returns what you would expect:
#<overlay from 397 to 400 in *scratch*>

This was with a slightly altered example, I removed the overly long comment
as it took forever to draw.  100% cpu resources are used when the line is
being drawn, and it seems to be redrawn many times before it's finally
done.  Then all is well until something causes the line to be redrawn.

I'm not sure what 'RSS' means in this context, but I assumed you wanted a
screenshot of top:
http://imgur.com/Rv7Z5Ly

Unfortunately emacs isn't shown here, but X always takes the blame for the
resource use, never emacs.  I have tried interrupting whatever is going on
with C-g after toggling debug-on-error, but I'm unable to interrupt
anything in this manner.

FWIW I cannot reproduce this bug on any other computers either.  My desktop
computer runs an almost identical software stack but is unaffected.

I will try to attach a debugger, but my computer is quite unusable after
triggering this problem, so it may be difficult.

[-- Attachment #2: Type: text/html, Size: 1576 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-12 16:30   ` Eli Zaretskii
@ 2014-01-12 17:53     ` Jan Djärv
  2014-01-12 18:00       ` Eli Zaretskii
                         ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Jan Djärv @ 2014-01-12 17:53 UTC (permalink / raw)
  To: Eli Zaretskii, Dmitry Antipov; +Cc: expez, 16420

2014-01-12 17:30, Eli Zaretskii skrev:
>> Date: Sun, 12 Jan 2014 20:04:22 +0400
>> From: Dmitry Antipov <dmantipov@yandex.ru>
>> Cc: 16420@debbugs.gnu.org
>>
>> On 01/12/2014 02:01 AM, Lars Andersen wrote:
>>
>>> Starting from emacs -Q:
>>>
>>> (defface flycheck-warning
>>> '((((supports :underline (:style wave)))
>>> :underline (:style wave :color "DarkOrange"))
>>> (t
>>> :underline t :inherit warning))
>>> "Flycheck face for warnings."
>>> :package-version '(flycheck . "0.13")
>>> :group 'flycheck-faces)
>>> (let ((ov (make-overlay (point) (point-at-eol)))
>>> (face 'flycheck-warning))
>>> (overlay-put ov 'face face)) ;; C-x C-e this last form to reproduce
>>
>> Note that C-x C-e has no visible effect until you evaluate first
>> 'defface' form too.
>
> Dmitry, can you reproduce this?  Because I can't, neither in Emacs
> 24.3 nor in the latest trunk.  But that's on MS-Windows; I don't have
> access to a GUI session on Unix.
>

Can't reproduce on GNU/Linux, Gtk 3, emacs 24.3 or the trunk.  X is using 
about 1%, emacs less than that as it is idle.

	Jan D.







^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-12 17:53     ` Jan Djärv
@ 2014-01-12 18:00       ` Eli Zaretskii
  2014-01-12 18:03       ` Michael Heerdegen
  2014-01-13  5:45       ` Dmitry Antipov
  2 siblings, 0 replies; 16+ messages in thread
From: Eli Zaretskii @ 2014-01-12 18:00 UTC (permalink / raw)
  To: Jan Djärv; +Cc: dmantipov, expez, 16420

> Date: Sun, 12 Jan 2014 18:53:35 +0100
> From: Jan Djärv <jan.h.d@swipnet.se>
> CC: expez@expez.com, 16420@debbugs.gnu.org
> 
> Can't reproduce on GNU/Linux, Gtk 3, emacs 24.3 or the trunk.  X is using 
> about 1%, emacs less than that as it is idle.

Thanks, this matches what I see here.





^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-12 17:53     ` Jan Djärv
  2014-01-12 18:00       ` Eli Zaretskii
@ 2014-01-12 18:03       ` Michael Heerdegen
  2014-01-13  5:45       ` Dmitry Antipov
  2 siblings, 0 replies; 16+ messages in thread
From: Michael Heerdegen @ 2014-01-12 18:03 UTC (permalink / raw)
  To: Jan Djärv; +Cc: Dmitry Antipov, expez, 16420

Jan Djärv <jan.h.d@swipnet.se> writes:

> Can't reproduce on GNU/Linux, Gtk 3, emacs 24.3 or the trunk.  X is
> using about 1%, emacs less than that as it is idle.

Same here, can't reproduce.

My (emacs-version)

=>

GNU Emacs 24.3.50.1
(x86_64-unknown-linux-gnu, GTK+ Version 3.8.6)
of 2014-01-12 on drachen


Michael.





^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-12 17:26 ` bug#16420: Lars Andersen
@ 2014-01-12 18:08   ` Jan Djärv
  2014-01-12 18:27     ` bug#16420: Lars Andersen
  0 siblings, 1 reply; 16+ messages in thread
From: Jan Djärv @ 2014-01-12 18:08 UTC (permalink / raw)
  To: Lars Andersen, 16420

Hello.

2014-01-12 18:26, Lars Andersen skrev:
> (overlays-in (point-min) (point-max)) returns what you would expect:
> #<overlay from 397 to 400 in *scratch*>
>
> This was with a slightly altered example, I removed the overly long comment as
> it took forever to draw.  100% cpu resources are used when the line is being
> drawn, and it seems to be redrawn many times before it's finally done.  Then
> all is well until something causes the line to be redrawn.
>
> I'm not sure what 'RSS' means in this context, but I assumed you wanted a
> screenshot of top:
> http://imgur.com/Rv7Z5Ly

RSS is the RES column.  Does it grow?

>
> Unfortunately emacs isn't shown here, but X always takes the blame for the
> resource use, never emacs.  I have tried interrupting whatever is going on
> with C-g after toggling debug-on-error, but I'm unable to interrupt anything
> in this manner.
>
> FWIW I cannot reproduce this bug on any other computers either.  My desktop
> computer runs an almost identical software stack but is unaffected.
>
> I will try to attach a debugger, but my computer is quite unusable after
> triggering this problem, so it may be difficult.

This sounds like an X server bug.  As Emacs is not using much CPU it isn't 
inflooping and sending lots of X requests at least.

	Jan D.







^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-12 18:08   ` bug#16420: Jan Djärv
@ 2014-01-12 18:27     ` Lars Andersen
  2014-01-12 18:32       ` bug#16420: Eli Zaretskii
                         ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Lars Andersen @ 2014-01-12 18:27 UTC (permalink / raw)
  To: Jan Djärv; +Cc: 16420

[-- Attachment #1: Type: text/plain, Size: 1885 bytes --]

The RES column does not grow.  I'm dual booting on that computer, so I
tried reproducing the bug under Windows 7 without success.

At this point is there anything to be learned from attaching GDB, or is
this indeed someone else's problem at this point?  If I were to file this
bug elsewhere, I'd be happy to get any pointers as to what information I
should include in the report.

Lars

On Sun, Jan 12, 2014 at 7:08 PM, Jan Djärv <jan.h.d@swipnet.se> wrote:

> Hello.
>
> 2014-01-12 18:26, Lars Andersen skrev:
>
>> (overlays-in (point-min) (point-max)) returns what you would expect:
>> #<overlay from 397 to 400 in *scratch*>
>>
>> This was with a slightly altered example, I removed the overly long
>> comment as
>> it took forever to draw.  100% cpu resources are used when the line is
>> being
>> drawn, and it seems to be redrawn many times before it's finally done.
>>  Then
>> all is well until something causes the line to be redrawn.
>>
>> I'm not sure what 'RSS' means in this context, but I assumed you wanted a
>> screenshot of top:
>> http://imgur.com/Rv7Z5Ly
>>
>
> RSS is the RES column.  Does it grow?
>
>
>> Unfortunately emacs isn't shown here, but X always takes the blame for the
>> resource use, never emacs.  I have tried interrupting whatever is going on
>> with C-g after toggling debug-on-error, but I'm unable to interrupt
>> anything
>> in this manner.
>>
>> FWIW I cannot reproduce this bug on any other computers either.  My
>> desktop
>> computer runs an almost identical software stack but is unaffected.
>>
>> I will try to attach a debugger, but my computer is quite unusable after
>> triggering this problem, so it may be difficult.
>>
>
> This sounds like an X server bug.  As Emacs is not using much CPU it isn't
> inflooping and sending lots of X requests at least.
>
>         Jan D.
>
>
>

[-- Attachment #2: Type: text/html, Size: 2698 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-12 18:27     ` bug#16420: Lars Andersen
@ 2014-01-12 18:32       ` Eli Zaretskii
  2014-01-12 18:49       ` bug#16420: Jan Djärv
  2016-08-09  1:40       ` bug#16420: npostavs
  2 siblings, 0 replies; 16+ messages in thread
From: Eli Zaretskii @ 2014-01-12 18:32 UTC (permalink / raw)
  To: Lars Andersen; +Cc: 16420

> Date: Sun, 12 Jan 2014 19:27:07 +0100
> From: Lars Andersen <expez@expez.com>
> Cc: 16420@debbugs.gnu.org
> 
> At this point is there anything to be learned from attaching GDB, or is
> this indeed someone else's problem at this point?

If the CPU usage is in another program, not in Emacs, then attaching
GDB to Emacs will not tell you anything useful, no.





^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-12 18:27     ` bug#16420: Lars Andersen
  2014-01-12 18:32       ` bug#16420: Eli Zaretskii
@ 2014-01-12 18:49       ` Jan Djärv
  2016-08-09  1:40       ` bug#16420: npostavs
  2 siblings, 0 replies; 16+ messages in thread
From: Jan Djärv @ 2014-01-12 18:49 UTC (permalink / raw)
  To: Lars Andersen; +Cc: 16420

Hello.

2014-01-12 19:27, Lars Andersen skrev:
>
> The RES column does not grow.  I'm dual booting on that computer, so I tried
> reproducing the bug under Windows 7 without success.
>
> At this point is there anything to be learned from attaching GDB, or is this
> indeed someone else's problem at this point?  If I were to file this bug
> elsewhere, I'd be happy to get any pointers as to what information I should
> include in the report.

XOrg bugs are reported in the freedesktop bugzilla.  There is a link here:

http://www.x.org/wiki/

I suspect they might want to know the actual server version (xdpyinfo) and the 
X calls involved (see x_draw_underwave in xterm.c).
Including /var/log/Xorg.0.log is a good idea.

But if you have a newer Xorg version with the same driver (see Xorg.0.log, it 
is in there somewhere) that does not have the bug, or if there is a newer 
driver that works, it is probably fixed.

	Jan D.

>
> Lars
>
> On Sun, Jan 12, 2014 at 7:08 PM, Jan Djärv <jan.h.d@swipnet.se
> <mailto:jan.h.d@swipnet.se>> wrote:
>
>     Hello.
>
>     2014-01-12 18:26, Lars Andersen skrev:
>
>         (overlays-in (point-min) (point-max)) returns what you would expect:
>         #<overlay from 397 to 400 in *scratch*>
>
>         This was with a slightly altered example, I removed the overly long
>         comment as
>         it took forever to draw.  100% cpu resources are used when the line is
>         being
>         drawn, and it seems to be redrawn many times before it's finally done.
>           Then
>         all is well until something causes the line to be redrawn.
>
>         I'm not sure what 'RSS' means in this context, but I assumed you wanted a
>         screenshot of top:
>         http://imgur.com/Rv7Z5Ly
>
>
>     RSS is the RES column.  Does it grow?
>
>
>         Unfortunately emacs isn't shown here, but X always takes the blame for the
>         resource use, never emacs.  I have tried interrupting whatever is going on
>         with C-g after toggling debug-on-error, but I'm unable to interrupt
>         anything
>         in this manner.
>
>         FWIW I cannot reproduce this bug on any other computers either.  My
>         desktop
>         computer runs an almost identical software stack but is unaffected.
>
>         I will try to attach a debugger, but my computer is quite unusable after
>         triggering this problem, so it may be difficult.
>
>
>     This sounds like an X server bug.  As Emacs is not using much CPU it isn't
>     inflooping and sending lots of X requests at least.
>
>              Jan D.
>
>
>






^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-12 17:53     ` Jan Djärv
  2014-01-12 18:00       ` Eli Zaretskii
  2014-01-12 18:03       ` Michael Heerdegen
@ 2014-01-13  5:45       ` Dmitry Antipov
  2014-01-13  9:35         ` Lars Andersen
  2 siblings, 1 reply; 16+ messages in thread
From: Dmitry Antipov @ 2014-01-13  5:45 UTC (permalink / raw)
  To: Lars Andersen; +Cc: 16420

On 01/12/2014 09:53 PM, Jan Djärv wrote:

> 2014-01-12 17:30, Eli Zaretskii skrev:
>> Dmitry, can you reproduce this?  Because I can't, neither in Emacs
>> 24.3 nor in the latest trunk.  But that's on MS-Windows; I don't have
>> access to a GUI session on Unix.
>>
>
> Can't reproduce on GNU/Linux, Gtk 3, emacs 24.3 or the trunk.
> X is using about 1%, emacs less than that as it is idle.

+1 on GNU/Linux (default GTK3).

This looks like GTK or X server issue, so:

0) If possible, update your X server and relevant libraries. If you're
familiar with X server configuration, try to disable some features (e.g.
GLX, DRI and so).

1) Can you try a different X toolkit? If possible, try to rebuild
with '--with-x-toolkit=lucid' or '--with-x-toolkit=none'.

2) Can you try to run Emacs under xtruss
(http://www.chiark.greenend.org.uk/~sgtatham/xtruss) and collect
output?

Dmitry







^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-13  5:45       ` Dmitry Antipov
@ 2014-01-13  9:35         ` Lars Andersen
  2014-01-13 10:04           ` Dmitry Antipov
  0 siblings, 1 reply; 16+ messages in thread
From: Lars Andersen @ 2014-01-13  9:35 UTC (permalink / raw)
  To: Dmitry Antipov, 16420


[-- Attachment #1.1: Type: text/plain, Size: 1511 bytes --]

I am not familiar with X server configuration's but will try 0) if 1) and
2) aren't enough.  I did update everything, again. Arch linux is rolling
release, so I should now have the latest of everything.

I tried building emacs --with-x-toolkit=lucid and =no and this didn't
impact the problem.

I ran emacs under xtruss, the result is attached.  I did this using the
Emacs version originally referenced in this bug report (i.e
--with-x-toolkit=gtk).


On Mon, Jan 13, 2014 at 6:45 AM, Dmitry Antipov <dmantipov@yandex.ru> wrote:

> On 01/12/2014 09:53 PM, Jan Djärv wrote:
>
>  2014-01-12 17:30, Eli Zaretskii skrev:
>>
>>> Dmitry, can you reproduce this?  Because I can't, neither in Emacs
>>>
>>> 24.3 nor in the latest trunk.  But that's on MS-Windows; I don't have
>>> access to a GUI session on Unix.
>>>
>>>
>> Can't reproduce on GNU/Linux, Gtk 3, emacs 24.3 or the trunk.
>> X is using about 1%, emacs less than that as it is idle.
>>
>
> +1 on GNU/Linux (default GTK3).
>
> This looks like GTK or X server issue, so:
>
> 0) If possible, update your X server and relevant libraries. If you're
> familiar with X server configuration, try to disable some features (e.g.
> GLX, DRI and so).
>
> 1) Can you try a different X toolkit? If possible, try to rebuild
> with '--with-x-toolkit=lucid' or '--with-x-toolkit=none'.
>
> 2) Can you try to run Emacs under xtruss
> (http://www.chiark.greenend.org.uk/~sgtatham/xtruss) and collect
> output?
>
> Dmitry
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 2408 bytes --]

[-- Attachment #2: emacs.xtruss --]
[-- Type: application/octet-stream, Size: 115088 bytes --]

xtruss: click mouse in a window belonging to the client you want to trace
--- ButtonRelease(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=479, event-x=269, event-y=100, detail=1, state=0x0100, time=0x002AD2B9)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=480, event-x=269, event-y=101, detail=Normal, state=0x0000, time=0x002AD47A)
QueryPointer(window=w#01200017) = {root=w#000002CA, child=None, same-screen=True, root-x=1230, root-y=480, win-x=269, win-y=101, mask=0x0000}
TranslateCoordinates(src-window=w#01200017, dst-window=w#000002CA, src-x=269, src-y=101) = {same-screen=True, child=w#01200012, dst-x=1230, dst-y=480}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=481, event-x=269, event-y=102, detail=Normal, state=0x0000, time=0x002AD482)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=482, event-x=269, event-y=103, detail=Normal, state=0x0000, time=0x002AD48A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=484, event-x=269, event-y=105, detail=Normal, state=0x0000, time=0x002AD491)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=486, event-x=269, event-y=107, detail=Normal, state=0x0000, time=0x002AD499)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=487, event-x=269, event-y=108, detail=Normal, state=0x0000, time=0x002AD4A2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=489, event-x=269, event-y=110, detail=Normal, state=0x0000, time=0x002AD4A9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=491, event-x=269, event-y=112, detail=Normal, state=0x0000, time=0x002AD4B2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=493, event-x=269, event-y=114, detail=Normal, state=0x0000, time=0x002AD4BA)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=494, event-x=269, event-y=115, detail=Normal, state=0x0000, time=0x002AD4C1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=496, event-x=269, event-y=117, detail=Normal, state=0x0000, time=0x002AD4CA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=498, event-x=269, event-y=119, detail=Normal, state=0x0000, time=0x002AD4D1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=499, event-x=269, event-y=120, detail=Normal, state=0x0000, time=0x002AD4D9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=500, event-x=269, event-y=121, detail=Normal, state=0x0000, time=0x002AD4E1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1229, root-y=502, event-x=268, event-y=123, detail=Normal, state=0x0000, time=0x002AD4E9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1229, root-y=504, event-x=268, event-y=125, detail=Normal, state=0x0000, time=0x002AD4F2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=505, event-x=267, event-y=126, detail=Normal, state=0x0000, time=0x002AD4FA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=506, event-x=267, event-y=127, detail=Normal, state=0x0000, time=0x002AD501)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=507, event-x=266, event-y=128, detail=Normal, state=0x0000, time=0x002AD509)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=508, event-x=266, event-y=129, detail=Normal, state=0x0000, time=0x002AD511)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=509, event-x=266, event-y=130, detail=Normal, state=0x0000, time=0x002AD519)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=510, event-x=265, event-y=131, detail=Normal, state=0x0000, time=0x002AD521)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=511, event-x=265, event-y=132, detail=Normal, state=0x0000, time=0x002AD539)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=511, event-x=264, event-y=132, detail=Normal, state=0x0000, time=0x002AD559)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=513, event-x=264, event-y=134, detail=Normal, state=0x0000, time=0x002AD561)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=514, event-x=264, event-y=135, detail=Normal, state=0x0000, time=0x002AD579)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=515, event-x=264, event-y=136, detail=Normal, state=0x0000, time=0x002AD581)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=515, event-x=263, event-y=136, detail=Normal, state=0x0000, time=0x002AD591)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=516, event-x=263, event-y=137, detail=Normal, state=0x0000, time=0x002AD599)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=517, event-x=263, event-y=138, detail=Normal, state=0x0000, time=0x002AD5D1)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=517, event-x=262, event-y=138, detail=Normal, state=0x0000, time=0x002AD6F2)
NoOperation
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=516, event-x=262, event-y=137, detail=Normal, state=0x0000, time=0x002AD6FA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1222, root-y=515, event-x=261, event-y=136, detail=Normal, state=0x0000, time=0x002AD722)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1222, root-y=514, event-x=261, event-y=135, detail=Normal, state=0x0000, time=0x002AD73A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1222, root-y=513, event-x=261, event-y=134, detail=Normal, state=0x0000, time=0x002AD742)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=513, event-x=262, event-y=134, detail=Normal, state=0x0000, time=0x002AD74A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=512, event-x=262, event-y=133, detail=Normal, state=0x0000, time=0x002AD752)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=511, event-x=262, event-y=132, detail=Normal, state=0x0000, time=0x002AD75A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=511, event-x=263, event-y=132, detail=Normal, state=0x0000, time=0x002AD762)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=510, event-x=263, event-y=131, detail=Normal, state=0x0000, time=0x002AD76A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=509, event-x=263, event-y=130, detail=Normal, state=0x0000, time=0x002AD772)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=508, event-x=263, event-y=129, detail=Normal, state=0x0000, time=0x002AD77A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=507, event-x=263, event-y=128, detail=Normal, state=0x0000, time=0x002AD782)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=506, event-x=264, event-y=127, detail=Normal, state=0x0000, time=0x002AD78A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=505, event-x=264, event-y=126, detail=Normal, state=0x0000, time=0x002AD792)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=504, event-x=264, event-y=125, detail=Normal, state=0x0000, time=0x002AD7A2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=504, event-x=265, event-y=125, detail=Normal, state=0x0000, time=0x002AD7AA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=503, event-x=265, event-y=124, detail=Normal, state=0x0000, time=0x002AD7B2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=502, event-x=265, event-y=123, detail=Normal, state=0x0000, time=0x002AD7DA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=501, event-x=265, event-y=122, detail=Normal, state=0x0000, time=0x002AD7FA)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=500, event-x=265, event-y=121, detail=Normal, state=0x0000, time=0x002AD832)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=499, event-x=265, event-y=120, detail=Normal, state=0x0000, time=0x002AD84A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=497, event-x=265, event-y=118, detail=Normal, state=0x0000, time=0x002AD85A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=496, event-x=265, event-y=117, detail=Normal, state=0x0000, time=0x002AD86A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=494, event-x=265, event-y=115, detail=Normal, state=0x0000, time=0x002AD872)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=493, event-x=265, event-y=114, detail=Normal, state=0x0000, time=0x002AD87A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=492, event-x=264, event-y=113, detail=Normal, state=0x0000, time=0x002AD881)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=491, event-x=264, event-y=112, detail=Normal, state=0x0000, time=0x002AD88A)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=489, event-x=264, event-y=110, detail=Normal, state=0x0000, time=0x002AD892)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=488, event-x=263, event-y=109, detail=Normal, state=0x0000, time=0x002AD89A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=487, event-x=263, event-y=108, detail=Normal, state=0x0000, time=0x002AD8A1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=486, event-x=263, event-y=107, detail=Normal, state=0x0000, time=0x002AD8C2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=485, event-x=263, event-y=106, detail=Normal, state=0x0000, time=0x002AD8D2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=485, event-x=262, event-y=106, detail=Normal, state=0x0000, time=0x002AD8F2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1223, root-y=484, event-x=262, event-y=105, detail=Normal, state=0x0000, time=0x002AD8FA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=484, event-x=263, event-y=105, detail=Normal, state=0x0000, time=0x002AD9A2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1224, root-y=483, event-x=263, event-y=104, detail=Normal, state=0x0000, time=0x002AD9B9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=483, event-x=264, event-y=104, detail=Normal, state=0x0000, time=0x002AD9C2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=482, event-x=264, event-y=103, detail=Normal, state=0x0000, time=0x002AD9CA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=482, event-x=265, event-y=103, detail=Normal, state=0x0000, time=0x002AD9E1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=481, event-x=265, event-y=102, detail=Normal, state=0x0000, time=0x002AD9F2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=480, event-x=265, event-y=101, detail=Normal, state=0x0000, time=0x002ADA01)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=480, event-x=266, event-y=101, detail=Normal, state=0x0000, time=0x002ADA91)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
SetClipRectangles(gc=g#0120009F, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=95, width=918, height=19}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#0120009F, rectangles[0]={x=261, y=95, width=8, height=18})
ChangeGC(gc=g#0120009F, clip-mask=None)
QueryPointer(window=w#01200017) = {root=w#000002CA, child=None, same-screen=True, root-x=1227, root-y=480, win-x=266, win-y=101, mask=0x0000}
TranslateCoordinates(src-window=w#01200017, dst-window=w#000002CA, src-x=266, src-y=101) = {same-screen=True, child=w#01200012, dst-x=1227, dst-y=480}
--- LeaveNotify(root=w#000002CA, event=w#01200017, child=None, mode=Grab, same-screen=True, focus=False, root-x=1227, root-y=480, event-x=266, event-y=101, detail=Ancestor, state=0x0100, time=0x002ADE21)
--- EnterNotify(root=w#000002CA, event=w#01200012, child=None, mode=Grab, same-screen=True, focus=False, root-x=1227, root-y=480, event-x=266, event-y=179, detail=Inferior, state=0x0100, time=0x002ADE21)
--- PropertyNotify(window=w#01200012, atom=a#343, state=NewValue, time=0x002ADEC3)
--- FocusIn(event=w#01200012, mode=Normal, detail=Nonlinear)
--- SendEvent-generated ClientMessage(window=w#01200012, type=a#324, format=32, data=63:01:00:00:C2:DE:2A:00:40:6C:7C:00:F8:09:35:72:00:CD:7C:00)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
ChangeWindowAttributes(window=w#01200017, border-pixel=0x00000000)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
ClearArea(window=w#01200017, x=261, y=95, width=9, height=19, exposures=False)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
QueryPointer(window=w#01200012) = {root=w#000002CA, child=w#01200017, same-screen=True, root-x=1227, root-y=480, win-x=266, win-y=179, mask=0x0100}
SetInputFocus(focus=w#01200013, revert-to=Parent, time=0x002ADEC2)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
--- LeaveNotify(root=w#000002CA, event=w#01200012, child=None, mode=Ungrab, same-screen=True, focus=True, root-x=1227, root-y=480, event-x=266, event-y=179, detail=Inferior, state=0x0000, time=0x002ADEDC)
--- EnterNotify(root=w#000002CA, event=w#01200017, child=None, mode=Ungrab, same-screen=True, focus=True, root-x=1227, root-y=480, event-x=266, event-y=101, detail=Ancestor, state=0x0000, time=0x002ADEDC)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=481, event-x=266, event-y=102, detail=Normal, state=0x0000, time=0x002ADF41)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=482, event-x=266, event-y=103, detail=Normal, state=0x0000, time=0x002ADF59)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=482, event-x=267, event-y=103, detail=Normal, state=0x0000, time=0x002ADF62)
NoOperation
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=483, event-x=267, event-y=104, detail=Normal, state=0x0000, time=0x002ADFA2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=484, event-x=269, event-y=105, detail=Normal, state=0x0000, time=0x002ADFAA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=486, event-x=269, event-y=107, detail=Normal, state=0x0000, time=0x002ADFB2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1232, root-y=487, event-x=271, event-y=108, detail=Normal, state=0x0000, time=0x002ADFBA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1232, root-y=488, event-x=271, event-y=109, detail=Normal, state=0x0000, time=0x002ADFC1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1233, root-y=489, event-x=272, event-y=110, detail=Normal, state=0x0000, time=0x002ADFCA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1233, root-y=491, event-x=272, event-y=112, detail=Normal, state=0x0000, time=0x002ADFD2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1234, root-y=493, event-x=273, event-y=114, detail=Normal, state=0x0000, time=0x002ADFDA)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1235, root-y=496, event-x=274, event-y=117, detail=Normal, state=0x0000, time=0x002ADFE2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1235, root-y=498, event-x=274, event-y=119, detail=Normal, state=0x0000, time=0x002ADFE9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=501, event-x=275, event-y=122, detail=Normal, state=0x0000, time=0x002ADFF2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=504, event-x=275, event-y=125, detail=Normal, state=0x0000, time=0x002ADFFA)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=506, event-x=275, event-y=127, detail=Normal, state=0x0000, time=0x002AE001)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=508, event-x=275, event-y=129, detail=Normal, state=0x0000, time=0x002AE009)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=510, event-x=275, event-y=131, detail=Normal, state=0x0000, time=0x002AE011)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=511, event-x=275, event-y=132, detail=Normal, state=0x0000, time=0x002AE01A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=513, event-x=275, event-y=134, detail=Normal, state=0x0000, time=0x002AE021)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1236, root-y=514, event-x=275, event-y=135, detail=Normal, state=0x0000, time=0x002AE032)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1234, root-y=514, event-x=273, event-y=135, detail=Normal, state=0x0000, time=0x002AE092)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1233, root-y=514, event-x=272, event-y=135, detail=Normal, state=0x0000, time=0x002AE09A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1233, root-y=512, event-x=272, event-y=133, detail=Normal, state=0x0000, time=0x002AE0A1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1232, root-y=511, event-x=271, event-y=132, detail=Normal, state=0x0000, time=0x002AE0B2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1231, root-y=510, event-x=270, event-y=131, detail=Normal, state=0x0000, time=0x002AE0BA)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=510, event-x=269, event-y=131, detail=Normal, state=0x0000, time=0x002AE0D2)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=Normal, state=0x0000, time=0x002AE252)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=66, state=0x0000, time=0x002AE59A)
QueryPointer(window=w#01200017) = {root=w#000002CA, child=None, same-screen=True, root-x=1230, root-y=509, win-x=269, win-y=130, mask=0x0004}
TranslateCoordinates(src-window=w#01200017, dst-window=w#000002CA, src-x=269, src-y=130) = {same-screen=True, child=w#01200012, dst-x=1230, dst-y=509}
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=53, state=0x0004, time=0x002AE6FA)
--- KeyRelease(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=53, state=0x0004, time=0x002AE77A)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=26, state=0x0004, time=0x002AE9AA)
LookupColor(cmap=col#00000020, name="white") = {exact-red=0xFFFF, exact-green=0xFFFF, exact-blue=0xFFFF, visual-red=0xFFFF, visual-green=0xFFFF, visual-blue=0xFFFF}
AllocColor(cmap=col#00000020, red=0xFFFF, green=0xFFFF, blue=0xFFFF) = {pixel=0x00FFFFFF, red=0xFFFF, green=0xFFFF, blue=0xFFFF}
LookupColor(cmap=col#00000020, name="black") = {exact-red=0x0000, exact-green=0x0000, exact-blue=0x0000, visual-red=0x0000, visual-green=0x0000, visual-blue=0x0000}
AllocColor(cmap=col#00000020, red=0x0000, green=0x0000, blue=0x0000) = {pixel=0x00000000, red=0x0000, green=0x0000, blue=0x0000}
LookupColor(cmap=col#00000020, name="DarkOrange") = {exact-red=0xFFFF, exact-green=0x8C8C, exact-blue=0x0000, visual-red=0xFFFF, visual-green=0x8C8C, visual-blue=0x0000}
AllocColor(cmap=col#00000020, red=0xFFFF, green=0x8C8C, blue=0x0000) = {pixel=0x00FF8C00, red=0xFFFF, green=0x8C8C, blue=0x0000}
CreateGC(cid=g#01200170, drawable=wp#01200017, background=0x00FFFFFF, graphics-exposures=False)
QueryColors(cmap=col#00000020, pixels[0]=0x00000000, pixels[1]=0x00FFFFFF) = {colors[0]={red=0x0000, green=0x0000, blue=0x0000}, colors[1]={red=0x0000, green=0x0000, blue=0xFFFF}}
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=36, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=36, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=27, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- KeyRelease(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=66, state=0x0004, time=0x002AEA4A)
--- KeyRelease(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=509, event-x=269, event-y=130, detail=26, state=0x0000, time=0x002AEA4A)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=36, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=36, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=190, width=918, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=56)
ChangeGC(gc=g#01200150, clip-mask=None)
ClearArea(window=w#01200017, x=162, y=190, width=765, height=19, exposures=False)
SetClipRectangles(gc=g#01200018, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=0, y=190, width=936, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200151, foreground=0x00F2F2F2)
PolyFillRectangle(drawable=wp#01200017, gc=g#01200151, rectangles[0]={x=0, y=190, width=9, height=19})
ChangeGC(gc=g#01200018, clip-mask=None)
SetClipRectangles(gc=g#01200018, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=0, y=190, width=936, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200151, foreground=0x00F2F2F2)
PolyFillRectangle(drawable=wp#01200017, gc=g#01200151, rectangles[0]={x=927, y=190, width=11, height=19})
ChangeGC(gc=g#01200018, clip-mask=None)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=509, event-x=267, event-y=130, detail=Normal, state=0x0000, time=0x002BC4A2)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=510, event-x=267, event-y=131, detail=Normal, state=0x0000, time=0x002BC4D1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=517, event-x=267, event-y=138, detail=Normal, state=0x0000, time=0x002BC4D9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=531, event-x=266, event-y=152, detail=Normal, state=0x0000, time=0x002BC4E1)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=551, event-x=266, event-y=172, detail=Normal, state=0x0000, time=0x002BC4E9)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1231, root-y=578, event-x=270, event-y=199, detail=Normal, state=0x0000, time=0x002BC4F1)
--- LeaveNotify(root=w#000002CA, event=w#01200017, child=None, mode=Normal, same-screen=True, focus=True, root-x=1237, root-y=608, event-x=276, event-y=229, detail=Nonlinear, state=0x0000, time=0x002BC3B7)
--- LeaveNotify(root=w#000002CA, event=w#01200012, child=w#01200017, mode=Normal, same-screen=True, focus=True, root-x=1237, root-y=608, event-x=276, event-y=307, detail=NonlinearVirtual, state=0x0000, time=0x002BC3B7)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- PropertyNotify(window=w#01200012, atom=a#343, state=NewValue, time=0x002BD39B)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- FocusOut(event=w#01200012, mode=Normal, detail=Nonlinear)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- PropertyNotify(window=w#01200012, atom=a#343, state=NewValue, time=0x002BE36D)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
--- PropertyNotify(window=w#01200012, atom=a#343, state=NewValue, time=0x002C91F2)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=190, width=918, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=52)
ChangeGC(gc=g#01200150, clip-mask=None)
ClearArea(window=w#01200017, x=144, y=190, width=783, height=19, exposures=False)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=190, width=135, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=52)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=190, width=135, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=135, y=190, width=792, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=135, y=190, width=792, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200170, clip-mask=None)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=95, width=9, height=19}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#01200150, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200150, clip-mask=None)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=109, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200170, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200170, segments[0]={x1=260, y1=109, x2=262, y2=111}, segments[1]={x1=262, y1=111, x2=264, y2=109}, segments[2]={x1=264, y1=109, x2=266, y2=111}, segments[3]={x1=266, y1=111, x2=268, y2=109}, segments[4]={x1=268, y1=109, x2=270, y2=111}, ...)
SetClipRectangles(gc=g#01200170, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=95, width=675, height=19}, ordering=UnSorted)

^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-13  9:35         ` Lars Andersen
@ 2014-01-13 10:04           ` Dmitry Antipov
  2014-01-13 10:56             ` Lars Andersen
  0 siblings, 1 reply; 16+ messages in thread
From: Dmitry Antipov @ 2014-01-13 10:04 UTC (permalink / raw)
  To: Lars Andersen; +Cc: 16420

On 01/13/2014 01:35 PM, Lars Andersen wrote:

> I am not familiar with X server configuration's but will try 0) if 1) and 2) aren't enough.

Do you have some 3D effects (like h/w shading or transparency) enabled in window manager?
(I'm asking because xtruss reports a lot of UnknownExtensionRequest events). If this is so,
you can try to disable them somewhere in WM configuration file(s) without touching X at all.

Also try to run twm and Emacs as the only X client (just to cease to suspect WM).

Dmitry






^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization
  2014-01-13 10:04           ` Dmitry Antipov
@ 2014-01-13 10:56             ` Lars Andersen
  0 siblings, 0 replies; 16+ messages in thread
From: Lars Andersen @ 2014-01-13 10:56 UTC (permalink / raw)
  To: Dmitry Antipov, 16420


[-- Attachment #1.1: Type: text/plain, Size: 1028 bytes --]

I'm not sure how to disable any special effects for xmonad.  I haven't
taken any steps to enable any, but they might be enabled by default.

I logged in as root and ran 'startx'. root uses the system default setup
for X which consists of twm, xlock and xterm.  Attached is the result of
running xtruss on emacs under these conditions.  Unfortunately this didn't
seem to reduce the UnknownExtensionRequests


On Mon, Jan 13, 2014 at 11:04 AM, Dmitry Antipov <dmantipov@yandex.ru>wrote:

> On 01/13/2014 01:35 PM, Lars Andersen wrote:
>
>  I am not familiar with X server configuration's but will try 0) if 1) and
>> 2) aren't enough.
>>
>
> Do you have some 3D effects (like h/w shading or transparency) enabled in
> window manager?
> (I'm asking because xtruss reports a lot of UnknownExtensionRequest
> events). If this is so,
> you can try to disable them somewhere in WM configuration file(s) without
> touching X at all.
>
> Also try to run twm and Emacs as the only X client (just to cease to
> suspect WM).
>
> Dmitry
>
>

[-- Attachment #1.2: Type: text/html, Size: 1608 bytes --]

[-- Attachment #2: emacs.xtruss2 --]
[-- Type: application/octet-stream, Size: 152624 bytes --]

xtruss: click mouse in a window belonging to the client you want to trace
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
ChangeWindowAttributes(window=w#01200017, border-pixmap=p#0120001B)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
ChangeWindowAttributes(window=w#01200017, border-pixel=0x00000000)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
ClearArea(window=w#01200017, x=261, y=270, width=9, height=18, exposures=False)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
--- ButtonRelease(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1230, root-y=697, event-x=235, event-y=447, detail=1, state=0x0100, time=0x0006CFC7)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1228, root-y=697, event-x=233, event-y=447, detail=Normal, state=0x0000, time=0x0006D007)
NoOperation
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=698, event-x=232, event-y=448, detail=Normal, state=0x0000, time=0x0006D107)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1227, root-y=699, event-x=232, event-y=449, detail=Normal, state=0x0000, time=0x0006D10F)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1226, root-y=700, event-x=231, event-y=450, detail=Normal, state=0x0000, time=0x0006D137)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
QueryPointer(window=w#01200017) = {root=w#000002CA, child=None, same-screen=True, root-x=1226, root-y=700, win-x=231, win-y=450, mask=0x0000}
TranslateCoordinates(src-window=w#01200017, dst-window=w#000002CA, src-x=231, src-y=450) = {same-screen=True, child=w#0040005A, dst-x=1226, dst-y=700}
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1221, root-y=699, event-x=226, event-y=449, detail=Normal, state=0x0000, time=0x0006E796)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1209, root-y=695, event-x=214, event-y=445, detail=Normal, state=0x0000, time=0x0006E79E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1190, root-y=690, event-x=195, event-y=440, detail=Normal, state=0x0000, time=0x0006E7A6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1165, root-y=688, event-x=170, event-y=438, detail=Normal, state=0x0000, time=0x0006E7AE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1132, root-y=686, event-x=137, event-y=436, detail=Normal, state=0x0000, time=0x0006E7B6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1095, root-y=684, event-x=100, event-y=434, detail=Normal, state=0x0000, time=0x0006E7BE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1052, root-y=684, event-x=57, event-y=434, detail=Normal, state=0x0000, time=0x0006E7C6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1005, root-y=682, event-x=10, event-y=432, detail=Normal, state=0x0000, time=0x0006E7CE)
--- LeaveNotify(root=w#000002CA, event=w#01200017, child=None, mode=Normal, same-screen=True, focus=False, root-x=950, root-y=682, event-x=-45, event-y=432, detail=Nonlinear, state=0x0000, time=0x0006E6F9)
--- LeaveNotify(root=w#000002CA, event=w#01200012, child=w#01200017, mode=Normal, same-screen=True, focus=False, root-x=950, root-y=682, event-x=-45, event-y=510, detail=NonlinearVirtual, state=0x0000, time=0x0006E6F9)
--- FocusOut(event=w#01200013, mode=Normal, detail=Nonlinear)
--- FocusOut(event=w#01200012, mode=Normal, detail=NonlinearVirtual)
GetInputFocus = {focus=PointerRoot, revert-to=PointerRoot}
GetInputFocus = {focus=w#00C0000D, revert-to=PointerRoot}
ChangeWindowAttributes(window=w#01200017, border-pixmap=p#0120001B)
GetInputFocus = {focus=w#00C0000D, revert-to=PointerRoot}
GetInputFocus = {focus=w#00C0000D, revert-to=PointerRoot}
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
--- EnterNotify(root=w#000002CA, event=w#01200012, child=w#01200017, mode=Normal, same-screen=True, focus=False, root-x=1011, root-y=550, event-x=16, event-y=378, detail=NonlinearVirtual, state=0x0000, time=0x000776E8)
--- EnterNotify(root=w#000002CA, event=w#01200017, child=None, mode=Normal, same-screen=True, focus=False, root-x=1011, root-y=550, event-x=16, event-y=300, detail=Nonlinear, state=0x0000, time=0x000776E8)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1011, root-y=550, event-x=16, event-y=300, detail=Normal, state=0x0000, time=0x000776EF)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1084, root-y=545, event-x=89, event-y=295, detail=Normal, state=0x0000, time=0x000776F6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1151, root-y=534, event-x=156, event-y=284, detail=Normal, state=0x0000, time=0x000776FE)
--- FocusIn(event=w#01200012, mode=Normal, detail=Pointer)
--- FocusIn(event=w#01200017, mode=Normal, detail=Pointer)
ChangeWindowAttributes(window=w#01200012, cursor=None)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1206, root-y=521, event-x=211, event-y=271, detail=Normal, state=0x0000, time=0x00077706)
GetInputFocus = {focus=PointerRoot, revert-to=PointerRoot}
--- FocusOut(event=w#01200017, mode=Normal, detail=Pointer)
--- FocusOut(event=w#01200012, mode=Normal, detail=Pointer)
--- FocusIn(event=w#01200012, mode=Normal, detail=Nonlinear)
--- FocusIn(event=w#01200017, mode=Normal, detail=Pointer)
--- SendEvent-generated ClientMessage(window=w#01200012, type=a#320, format=32, data=41:01:00:00:E8:76:07:00:76:37:25:1F:5B:00:40:00:01:00:00:00)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
ChangeWindowAttributes(window=w#01200017, border-pixel=0x00000000)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1249, root-y=504, event-x=254, event-y=254, detail=Normal, state=0x0000, time=0x0007770E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1280, root-y=487, event-x=285, event-y=237, detail=Normal, state=0x0000, time=0x00077716)
ClearArea(window=w#01200017, x=261, y=270, width=9, height=18, exposures=False)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
QueryPointer(window=w#01200012) = {root=w#000002CA, child=w#01200017, same-screen=True, root-x=1280, root-y=487, win-x=285, win-y=315, mask=0x0000}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1301, root-y=470, event-x=306, event-y=220, detail=Normal, state=0x0000, time=0x0007771E)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1314, root-y=453, event-x=319, event-y=203, detail=Normal, state=0x0000, time=0x00077726)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
ChangeWindowAttributes(window=w#01200017, border-pixmap=p#0120001B)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1321, root-y=438, event-x=326, event-y=188, detail=Normal, state=0x0000, time=0x0007772E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1326, root-y=423, event-x=331, event-y=173, detail=Normal, state=0x0000, time=0x00077736)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1328, root-y=410, event-x=333, event-y=160, detail=Normal, state=0x0000, time=0x0007773E)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
ChangeWindowAttributes(window=w#01200017, border-pixel=0x00000000)
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
GetInputFocus = {focus=w#01200012, revert-to=PointerRoot}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1330, root-y=397, event-x=335, event-y=147, detail=Normal, state=0x0000, time=0x00077746)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1332, root-y=384, event-x=337, event-y=134, detail=Normal, state=0x0000, time=0x0007774E)
ClearArea(window=w#01200017, x=261, y=270, width=9, height=18, exposures=False)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
QueryPointer(window=w#01200012) = {root=w#000002CA, child=w#01200017, same-screen=True, root-x=1332, root-y=384, win-x=337, win-y=212, mask=0x0000}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1332, root-y=373, event-x=337, event-y=123, detail=Normal, state=0x0000, time=0x00077756)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1332, root-y=362, event-x=337, event-y=112, detail=Normal, state=0x0000, time=0x0007775E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1334, root-y=353, event-x=339, event-y=103, detail=Normal, state=0x0000, time=0x00077766)
SetInputFocus(focus=w#01200013, revert-to=Parent, time=0x000776E8)
--- FocusOut(event=w#01200017, mode=Normal, detail=Pointer)
--- FocusOut(event=w#01200012, mode=Normal, detail=Inferior)
--- FocusIn(event=w#01200013, mode=Normal, detail=Ancestor)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1334, root-y=346, event-x=339, event-y=96, detail=Normal, state=0x0000, time=0x0007776E)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
ChangeWindowAttributes(window=w#01200017, border-pixmap=p#0120001B)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1337, root-y=345, event-x=342, event-y=95, detail=Normal, state=0x0000, time=0x00077776)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1338, root-y=343, event-x=343, event-y=93, detail=Normal, state=0x0000, time=0x0007777E)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#012000AF, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=270, width=720, height=18}, ordering=UnSorted)
PolyRectangle(drawable=wp#01200017, gc=g#012000AF, rectangles[0]={x=261, y=270, width=8, height=17})
ChangeGC(gc=g#012000AF, clip-mask=None)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
ChangeWindowAttributes(window=w#01200017, border-pixel=0x00000000)
GetInputFocus = {focus=w#01200013, revert-to=Parent}
GetInputFocus = {focus=w#01200013, revert-to=Parent}
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1342, root-y=343, event-x=347, event-y=93, detail=Normal, state=0x0000, time=0x00077786)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1353, root-y=347, event-x=358, event-y=97, detail=Normal, state=0x0000, time=0x0007778E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1374, root-y=356, event-x=379, event-y=106, detail=Normal, state=0x0000, time=0x00077796)
ClearArea(window=w#01200017, x=261, y=270, width=9, height=18, exposures=False)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1407, root-y=375, event-x=412, event-y=125, detail=Normal, state=0x0000, time=0x0007779E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1440, root-y=394, event-x=445, event-y=144, detail=Normal, state=0x0000, time=0x000777A6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1475, root-y=417, event-x=480, event-y=167, detail=Normal, state=0x0000, time=0x000777AF)
ChangeWindowAttributes(window=w#01200017, cursor=cur#01200009)
ChangeWindowAttributes(window=w#01200017, cursor=cur#0120000A)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1508, root-y=440, event-x=513, event-y=190, detail=Normal, state=0x0000, time=0x000777B6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1541, root-y=463, event-x=546, event-y=213, detail=Normal, state=0x0000, time=0x000777BE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1570, root-y=484, event-x=575, event-y=234, detail=Normal, state=0x0000, time=0x000777C6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1593, root-y=501, event-x=598, event-y=251, detail=Normal, state=0x0000, time=0x000777CE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1614, root-y=516, event-x=619, event-y=266, detail=Normal, state=0x0000, time=0x000777D6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1629, root-y=531, event-x=634, event-y=281, detail=Normal, state=0x0000, time=0x000777DE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1636, root-y=538, event-x=641, event-y=288, detail=Normal, state=0x0000, time=0x000777E6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1638, root-y=545, event-x=643, event-y=295, detail=Normal, state=0x0000, time=0x000777EE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1638, root-y=546, event-x=643, event-y=296, detail=Normal, state=0x0000, time=0x000777F6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1637, root-y=547, event-x=642, event-y=297, detail=Normal, state=0x0000, time=0x000777FE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1635, root-y=547, event-x=640, event-y=297, detail=Normal, state=0x0000, time=0x00077806)
NoOperation
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1633, root-y=549, event-x=638, event-y=299, detail=Normal, state=0x0000, time=0x0007780E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1630, root-y=552, event-x=635, event-y=302, detail=Normal, state=0x0000, time=0x00077816)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1625, root-y=556, event-x=630, event-y=306, detail=Normal, state=0x0000, time=0x0007781E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1619, root-y=560, event-x=624, event-y=310, detail=Normal, state=0x0000, time=0x00077826)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1613, root-y=564, event-x=618, event-y=314, detail=Normal, state=0x0000, time=0x0007782E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1607, root-y=568, event-x=612, event-y=318, detail=Normal, state=0x0000, time=0x00077837)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1599, root-y=573, event-x=604, event-y=323, detail=Normal, state=0x0000, time=0x0007783E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1591, root-y=579, event-x=596, event-y=329, detail=Normal, state=0x0000, time=0x00077846)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1583, root-y=585, event-x=588, event-y=335, detail=Normal, state=0x0000, time=0x0007784E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1575, root-y=591, event-x=580, event-y=341, detail=Normal, state=0x0000, time=0x00077856)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1567, root-y=596, event-x=572, event-y=346, detail=Normal, state=0x0000, time=0x0007785E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1557, root-y=602, event-x=562, event-y=352, detail=Normal, state=0x0000, time=0x00077866)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1545, root-y=609, event-x=550, event-y=359, detail=Normal, state=0x0000, time=0x0007786E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1529, root-y=613, event-x=534, event-y=363, detail=Normal, state=0x0000, time=0x00077876)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1510, root-y=618, event-x=515, event-y=368, detail=Normal, state=0x0000, time=0x0007787E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1489, root-y=620, event-x=494, event-y=370, detail=Normal, state=0x0000, time=0x00077886)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1468, root-y=622, event-x=473, event-y=372, detail=Normal, state=0x0000, time=0x0007788E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1447, root-y=622, event-x=452, event-y=372, detail=Normal, state=0x0000, time=0x00077896)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1428, root-y=622, event-x=433, event-y=372, detail=Normal, state=0x0000, time=0x0007789E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1409, root-y=624, event-x=414, event-y=374, detail=Normal, state=0x0000, time=0x000778A6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1392, root-y=624, event-x=397, event-y=374, detail=Normal, state=0x0000, time=0x000778AE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1373, root-y=624, event-x=378, event-y=374, detail=Normal, state=0x0000, time=0x000778B6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1354, root-y=624, event-x=359, event-y=374, detail=Normal, state=0x0000, time=0x000778BE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1337, root-y=624, event-x=342, event-y=374, detail=Normal, state=0x0000, time=0x000778C6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1316, root-y=624, event-x=321, event-y=374, detail=Normal, state=0x0000, time=0x000778CE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1297, root-y=622, event-x=302, event-y=372, detail=Normal, state=0x0000, time=0x000778D6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1280, root-y=620, event-x=285, event-y=370, detail=Normal, state=0x0000, time=0x000778DE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1265, root-y=618, event-x=270, event-y=368, detail=Normal, state=0x0000, time=0x000778E6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1254, root-y=616, event-x=259, event-y=366, detail=Normal, state=0x0000, time=0x000778EE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1247, root-y=614, event-x=252, event-y=364, detail=Normal, state=0x0000, time=0x000778F6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1243, root-y=613, event-x=248, event-y=363, detail=Normal, state=0x0000, time=0x000778FE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1241, root-y=612, event-x=246, event-y=362, detail=Normal, state=0x0000, time=0x0007792E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1241, root-y=611, event-x=246, event-y=361, detail=Normal, state=0x0000, time=0x00077936)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1240, root-y=608, event-x=245, event-y=358, detail=Normal, state=0x0000, time=0x0007793E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1238, root-y=607, event-x=243, event-y=357, detail=Normal, state=0x0000, time=0x00077946)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1238, root-y=604, event-x=243, event-y=354, detail=Normal, state=0x0000, time=0x0007794E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=602, event-x=242, event-y=352, detail=Normal, state=0x0000, time=0x00077956)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=601, event-x=242, event-y=351, detail=Normal, state=0x0000, time=0x0007795E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=599, event-x=242, event-y=349, detail=Normal, state=0x0000, time=0x00077966)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=596, event-x=242, event-y=346, detail=Normal, state=0x0000, time=0x0007796E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=593, event-x=242, event-y=343, detail=Normal, state=0x0000, time=0x00077976)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=590, event-x=242, event-y=340, detail=Normal, state=0x0000, time=0x0007797E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=586, event-x=242, event-y=336, detail=Normal, state=0x0000, time=0x00077986)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=584, event-x=242, event-y=334, detail=Normal, state=0x0000, time=0x0007798E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=581, event-x=242, event-y=331, detail=Normal, state=0x0000, time=0x00077996)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=578, event-x=242, event-y=328, detail=Normal, state=0x0000, time=0x0007799E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=575, event-x=242, event-y=325, detail=Normal, state=0x0000, time=0x000779A6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1237, root-y=571, event-x=242, event-y=321, detail=Normal, state=0x0000, time=0x000779AE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1238, root-y=568, event-x=243, event-y=318, detail=Normal, state=0x0000, time=0x000779B6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1238, root-y=565, event-x=243, event-y=315, detail=Normal, state=0x0000, time=0x000779BE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1238, root-y=562, event-x=243, event-y=312, detail=Normal, state=0x0000, time=0x000779C6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1240, root-y=561, event-x=245, event-y=311, detail=Normal, state=0x0000, time=0x000779CE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1241, root-y=559, event-x=246, event-y=309, detail=Normal, state=0x0000, time=0x000779D6)
NoOperation
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1243, root-y=557, event-x=248, event-y=307, detail=Normal, state=0x0000, time=0x000779DE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1245, root-y=556, event-x=250, event-y=306, detail=Normal, state=0x0000, time=0x000779E6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1246, root-y=554, event-x=251, event-y=304, detail=Normal, state=0x0000, time=0x000779EE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1248, root-y=552, event-x=253, event-y=302, detail=Normal, state=0x0000, time=0x000779F6)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1249, root-y=551, event-x=254, event-y=301, detail=Normal, state=0x0000, time=0x000779FE)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1250, root-y=550, event-x=255, event-y=300, detail=Normal, state=0x0000, time=0x00077A06)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1250, root-y=549, event-x=255, event-y=299, detail=Normal, state=0x0000, time=0x00077A0E)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1250, root-y=548, event-x=255, event-y=298, detail=Normal, state=0x0000, time=0x00077A56)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1251, root-y=548, event-x=256, event-y=298, detail=Normal, state=0x0000, time=0x00077B76)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1252, root-y=548, event-x=257, event-y=298, detail=Normal, state=0x0000, time=0x00077B7E)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=37, state=0x0000, time=0x00077EE6)
QueryPointer(window=w#01200017) = {root=w#000002CA, child=None, same-screen=True, root-x=1252, root-y=548, win-x=257, win-y=298, mask=0x0004}
TranslateCoordinates(src-window=w#01200017, dst-window=w#000002CA, src-x=257, src-y=298) = {same-screen=True, child=w#0040005A, dst-x=1252, dst-y=548}
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=53, state=0x0004, time=0x000785B6)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120001A, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=612, width=720, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
ClearArea(window=w#01200017, x=18, y=612, width=711, height=18, exposures=False)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
--- KeyRelease(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=53, state=0x0004, time=0x00078646)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
--- KeyPress(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=26, state=0x0004, time=0x00078806)
LookupColor(cmap=col#00000020, name="white") = {exact-red=0xFFFF, exact-green=0xFFFF, exact-blue=0xFFFF, visual-red=0xFFFF, visual-green=0xFFFF, visual-blue=0xFFFF}
AllocColor(cmap=col#00000020, red=0xFFFF, green=0xFFFF, blue=0xFFFF) = {pixel=0x00FFFFFF, red=0xFFFF, green=0xFFFF, blue=0xFFFF}
LookupColor(cmap=col#00000020, name="black") = {exact-red=0x0000, exact-green=0x0000, exact-blue=0x0000, visual-red=0x0000, visual-green=0x0000, visual-blue=0x0000}
AllocColor(cmap=col#00000020, red=0x0000, green=0x0000, blue=0x0000) = {pixel=0x00000000, red=0x0000, green=0x0000, blue=0x0000}
LookupColor(cmap=col#00000020, name="DarkOrange") = {exact-red=0xFFFF, exact-green=0x8C8C, exact-blue=0x0000, visual-red=0xFFFF, visual-green=0x8C8C, visual-blue=0x0000}
AllocColor(cmap=col#00000020, red=0xFFFF, green=0x8C8C, blue=0x0000) = {pixel=0x00FF8C00, red=0xFFFF, green=0x8C8C, blue=0x0000}
CreateGC(cid=g#01200155, drawable=wp#01200017, background=0x00FFFFFF, graphics-exposures=False)
QueryColors(cmap=col#00000020, pixels[0]=0x00000000, pixels[1]=0x00FFFFFF) = {colors[0]={red=0x0000, green=0x0000, blue=0x0000}, colors[1]={red=0x0000, green=0x0000, blue=0xFFFF}}
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=36, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=36, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=27, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
--- KeyRelease(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=37, state=0x0004, time=0x000788B6)
--- KeyRelease(root=w#000002CA, event=w#01200013, child=None, same-screen=True, root-x=1252, root-y=548, event-x=258, event-y=377, detail=26, state=0x0000, time=0x000788B6)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=36, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=36, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=9, y=612, width=720, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=56)
ChangeGC(gc=g#0120011C, clip-mask=None)
ClearArea(window=w#01200017, x=162, y=612, width=567, height=18, exposures=False)
139:UnknownExtensionRequest4(bytes=24)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=144)
139:UnknownExtensionRequest10(bytes=64)
139:UnknownExtensionRequest7(bytes=8)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1250, root-y=548, event-x=255, event-y=298, detail=Normal, state=0x0000, time=0x00082A8F)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1249, root-y=549, event-x=254, event-y=299, detail=Normal, state=0x0000, time=0x00082B27)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1249, root-y=550, event-x=254, event-y=300, detail=Normal, state=0x0000, time=0x0008497D)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1247, root-y=555, event-x=252, event-y=305, detail=Normal, state=0x0000, time=0x00084985)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1240, root-y=568, event-x=245, event-y=318, detail=Normal, state=0x0000, time=0x0008498D)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1225, root-y=585, event-x=230, event-y=335, detail=Normal, state=0x0000, time=0x00084995)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1206, root-y=610, event-x=211, event-y=360, detail=Normal, state=0x0000, time=0x0008499D)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1181, root-y=639, event-x=186, event-y=389, detail=Normal, state=0x0000, time=0x000849A5)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1148, root-y=674, event-x=153, event-y=424, detail=Normal, state=0x0000, time=0x000849AD)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1113, root-y=711, event-x=118, event-y=461, detail=Normal, state=0x0000, time=0x000849B5)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1074, root-y=754, event-x=79, event-y=504, detail=Normal, state=0x0000, time=0x000849BD)
--- MotionNotify(root=w#000002CA, event=w#01200017, child=None, same-screen=True, root-x=1029, root-y=797, event-x=34, event-y=547, detail=Normal, state=0x0000, time=0x000849C5)
--- LeaveNotify(root=w#000002CA, event=w#01200017, child=None, mode=Normal, same-screen=True, focus=False, root-x=984, root-y=840, event-x=-11, event-y=590, detail=Nonlinear, state=0x0000, time=0x0008420B)
--- LeaveNotify(root=w#000002CA, event=w#01200012, child=w#01200017, mode=Normal, same-screen=True, focus=False, root-x=984, root-y=840, event-x=-11, event-y=668, detail=NonlinearVirtual, state=0x0000, time=0x0008420B)
--- FocusOut(event=w#01200013, mode=Normal, detail=Nonlinear)
--- FocusOut(event=w#01200012, mode=Normal, detail=NonlinearVirtual)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FFFFFF, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#01200155, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
ChangeGC(gc=g#01200155, foreground=0x00000000, clip-mask=None)
SetClipRectangles(gc=g#0120011C, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=477, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#01200155, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=252, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
ChangeGC(gc=g#01200155, clip-mask=None)
ChangeGC(gc=g#0120011C, clip-mask=None)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=270, width=9, height=18}, ordering=UnSorted)
139:UnknownExtensionRequest6(bytes=20)
139:UnknownExtensionRequest26(bytes=28)
139:UnknownExtensionRequest23(bytes=40)
SetClipRectangles(gc=g#0120001A, clip-x-origin=0, clip-y-origin=0, rectangles[0]={x=261, y=284, width=9, height=3}, ordering=UnSorted)
ChangeGC(gc=g#0120001A, foreground=0x00FF8C00)
PolySegment(drawable=wp#01200017, gc=g#0120001A, segments[0]={x1=260, y1=284, x2=262, y2=286}, segments[1]={x1=262, y1=286, x2=264, y2=284}, segments[2]={x1=264, y1=284, x2=266, y2=286}, segments[3]={x1=266, y1=286, x2=268, y2=284}, segments[4]={x1=268, y1=284, x2=270, y2=286}, ...)

^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#16420:
  2014-01-12 18:27     ` bug#16420: Lars Andersen
  2014-01-12 18:32       ` bug#16420: Eli Zaretskii
  2014-01-12 18:49       ` bug#16420: Jan Djärv
@ 2016-08-09  1:40       ` npostavs
  2 siblings, 0 replies; 16+ messages in thread
From: npostavs @ 2016-08-09  1:40 UTC (permalink / raw)
  To: Lars Andersen; +Cc: Jan Djärv, 16420

tags 16420 unreproducible
quit

Do you still hit this?  As far as I can tell from this thread, nobody
managed to reproduce or diagnose this.





^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2016-08-09  1:40 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-11 22:01 bug#16420: 24.3; Drawing an overlay causes 100% cpu utilization Lars Andersen
2014-01-12 16:04 ` Dmitry Antipov
2014-01-12 16:30   ` Eli Zaretskii
2014-01-12 17:53     ` Jan Djärv
2014-01-12 18:00       ` Eli Zaretskii
2014-01-12 18:03       ` Michael Heerdegen
2014-01-13  5:45       ` Dmitry Antipov
2014-01-13  9:35         ` Lars Andersen
2014-01-13 10:04           ` Dmitry Antipov
2014-01-13 10:56             ` Lars Andersen
2014-01-12 17:26 ` bug#16420: Lars Andersen
2014-01-12 18:08   ` bug#16420: Jan Djärv
2014-01-12 18:27     ` bug#16420: Lars Andersen
2014-01-12 18:32       ` bug#16420: Eli Zaretskii
2014-01-12 18:49       ` bug#16420: Jan Djärv
2016-08-09  1:40       ` bug#16420: npostavs

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).