Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
st7789_mpy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
st7789_mpy
Commits
b3022817
Commit
b3022817
authored
Oct 24, 2021
by
russhughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chinese proverbs in chinese example
parent
d34d2199
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
520 additions
and
0 deletions
+520
-0
examples/T-DISPLAY/proverbs/NotoSansSC-Regular.otf
examples/T-DISPLAY/proverbs/NotoSansSC-Regular.otf
+0
-0
examples/T-DISPLAY/proverbs/makefont
examples/T-DISPLAY/proverbs/makefont
+5
-0
examples/T-DISPLAY/proverbs/proverbs.py
examples/T-DISPLAY/proverbs/proverbs.py
+80
-0
examples/T-DISPLAY/proverbs/proverbs_font.py
examples/T-DISPLAY/proverbs/proverbs_font.py
+435
-0
No files found.
examples/T-DISPLAY/proverbs/NotoSansSC-Regular.otf
0 → 100644
View file @
b3022817
File added
examples/T-DISPLAY/proverbs/makefont
0 → 100755
View file @
b3022817
#!/bin/sh
../../../utils/font2bitmap.py
\
-s
"万事起头难。熟能生巧。冰冻三尺,非一日之寒。三个臭皮匠,胜过诸葛亮。今日事,今日毕。师父领进门,修行在个人。一口吃不成胖子。欲速则不达。百闻不如一见。不入虎穴,焉得虎子。"
\
NotoSansSC-Regular.otf 30
>
proverbs_font.py
examples/T-DISPLAY/proverbs/proverbs.py
0 → 100644
View file @
b3022817
import
random
import
math
import
utime
from
machine
import
Pin
,
SPI
import
proverbs_font
as
font
import
st7789
def
color_wheel
(
WheelPos
):
"""returns a 565 color from the given position of the color wheel"""
WheelPos
=
(
255
-
WheelPos
)
%
255
if
WheelPos
<
85
:
return
st7789
.
color565
(
255
-
WheelPos
*
3
,
0
,
WheelPos
*
3
)
if
WheelPos
<
170
:
WheelPos
-=
85
return
st7789
.
color565
(
0
,
WheelPos
*
3
,
255
-
WheelPos
*
3
)
WheelPos
-=
170
return
st7789
.
color565
(
WheelPos
*
3
,
255
-
WheelPos
*
3
,
0
)
def
main
():
proverbs
=
[
"万事起头难"
,
"熟能生巧"
,
"冰冻三尺,非一日之寒"
,
"三个臭皮匠,胜过诸葛亮"
,
"今日事,今日毕"
,
"师父领进门,修行在个人"
,
"一口吃不成胖子"
,
"欲速则不达"
,
"百闻不如一见"
,
"不入虎穴,焉得虎子"
]
# initialize display
tft
=
st7789
.
ST7789
(
SPI
(
1
,
baudrate
=
30000000
,
sck
=
Pin
(
18
),
mosi
=
Pin
(
19
)),
135
,
240
,
reset
=
Pin
(
23
,
Pin
.
OUT
),
cs
=
Pin
(
5
,
Pin
.
OUT
),
dc
=
Pin
(
16
,
Pin
.
OUT
),
backlight
=
Pin
(
4
,
Pin
.
OUT
),
rotation
=
1
)
tft
.
init
()
line_height
=
font
.
HEIGHT
+
8
half_height
=
tft
.
height
()
//
2
half_width
=
tft
.
width
()
//
2
wheel
=
0
tft
.
fill
(
st7789
.
BLACK
)
while
True
:
for
proverb
in
proverbs
:
proverb_lines
=
proverb
.
split
(
','
)
half_lines_height
=
len
(
proverb_lines
)
*
line_height
//
2
tft
.
fill
(
st7789
.
BLACK
)
for
count
,
proverb_line
in
enumerate
(
proverb_lines
):
half_length
=
tft
.
write_len
(
font
,
proverb_line
)
//
2
tft
.
write
(
font
,
proverb_line
,
half_width
-
half_length
,
half_height
-
half_lines_height
+
count
*
line_height
,
color_wheel
(
wheel
))
wheel
+=
5
wheel
%=
256
# pause to slow down scrolling
utime
.
sleep
(
5
)
main
()
examples/T-DISPLAY/proverbs/proverbs_font.py
0 → 100644
View file @
b3022817
# -*- coding: utf-8 -*-
# Converted from NotoSansSC-Regular.otf using:
# ../../../utils/font2bitmap.py -s '万事起头难。熟能生巧。冰冻三尺,非一日之寒。三个臭皮匠,胜过诸葛亮。今日事,今日毕。师父领进门,修行在个人。一口吃不成胖子。欲速则不达。百闻不如一见。不入虎穴,焉得虎子。' NotoSansSC-Regular.otf 30
MAP
=
(
'皮口胜亮难成巧冰寒闻匠焉父起一生领入诸在百,之修个吃日穴今师不得'
'门虎速葛事。冻达尺行头非过则熟三毕人臭子欲如能进见胖万'
)
BPP
=
1
HEIGHT
=
29
MAX_WIDTH
=
30
_WIDTHS
=
\
b'
\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e
'
\
b'
\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e
'
\
b'
\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e
'
\
b'
\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e\x1e
'
OFFSET_WIDTH
=
2
_OFFSETS
=
\
b'
\x00\x00\x03\x66\x06\xcc\x0a\x32\x0d\x98\x10\xfe\x14\x64\x17\xca
'
\
b'
\x1b\x30\x1e\x96\x21\xfc\x25\x62\x28\xc8\x2c\x2e\x2f\x94\x32\xfa
'
\
b'
\x36\x60\x39\xc6\x3d\x2c\x40\x92\x43\xf8\x47\x5e\x4a\xc4\x4e\x2a
'
\
b'
\x51\x90\x54\xf6\x58\x5c\x5b\xc2\x5f\x28\x62\x8e\x65\xf4\x69\x5a
'
\
b'
\x6c\xc0\x70\x26\x73\x8c\x76\xf2\x7a\x58\x7d\xbe\x81\x24\x84\x8a
'
\
b'
\x87\xf0\x8b\x56\x8e\xbc\x92\x22\x95\x88\x98\xee\x9c\x54\x9f\xba
'
\
b'
\xa3\x20\xa6\x86\xa9\xec\xad\x52\xb0\xb8\xb4\x1e\xb7\x84\xba\xea
'
\
b'
\xbe\x50\xc1\xb6\xc5\x1c
'
_BITMAPS
=
\
b'
\x00\x01\x80\x00\x00\x06\x00\x00\x00\x18\x00\x00\x00\x60\x00\x07
'
\
b'
\xff\xff\xf0\x1f\xff\xff\x80\x60\x18\x0e\x01\x80\x60\x30\x06\x01
'
\
b'
\x80\xc0\x18\x06\x07\x00\x60\x18\x08\x01\x80\x60\x00\x0f\xff\xff
'
\
b'
\x80\x3f\xff\xfe\x00\xe7\x00\x38\x03\x8c\x00\xe0\x0e\x38\x07\x00
'
\
b'
\x30\x60\x18\x00\xc0\xc0\xe0\x03\x03\x87\x00\x0c\x07\x38\x00\x70
'
\
b'
\x0f\xc0\x01\x80\x1e\x00\x06\x01\xfe\x00\x38\x1f\x3e\x00\xc3\xf0
'
\
b'
\x7f\x07\x3f\x00\x3f\x08\x60\x00\x3c\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xff\xff\xc0\x3f\xff\xff\x00
'
\
b'
\xc0\x00\x0c\x03\x00\x00\x30\x0c\x00\x00\xc0\x30\x00\x03\x00\xc0
'
\
b'
\x00\x0c\x03\x00\x00\x30\x0c\x00\x00\xc0\x30\x00\x03\x00\xc0\x00
'
\
b'
\x0c\x03\x00\x00\x30\x0c\x00\x00\xc0\x30\x00\x03\x00\xc0\x00\x0c
'
\
b'
\x03\x00\x00\x30\x0c\x00\x00\xc0\x30\x00\x03\x00\xc0\x00\x0c\x03
'
\
b'
\x00\x00\x30\x0f\xff\xff\xc0\x3f\xff\xff\x00\xc0\x00\x0c\x03\x00
'
\
b'
\x00\x30\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x01\xc0\x07\xf8\x07
'
\
b'
\x00\x1f\xe1\x9c\x00\x61\x8e\x70\x01\x86\x31\xc0\x06\x18\xc7\x00
'
\
b'
\x18\x63\x1c\x00\x61\x8f\xff\xc1\xfe\x7f\xff\x07\xf9\x87\x00\x18
'
\
b'
\x66\x1c\x00\x61\xb0\x70\x01\x86\xc1\xc0\x06\x18\x07\x00\x18\x60
'
\
b'
\x1c\x00\x61\x80\x70\x01\xfe\x7f\xff\x07\xf9\xff\xfc\x18\x60\x1c
'
\
b'
\x00\x61\x80\x70\x01\x86\x01\xc0\x0c\x18\x07\x00\x30\x60\x1c\x00
'
\
b'
\xc1\x80\x70\x03\x06\x01\xc0\x0c\x1b\xff\xfe\x63\xef\xff\xf8\x8f
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x01\xc0\x00\x00\x03\x00\x00\x00\x0e
'
\
b'
\x00\x03\xff\xff\xff\x0f\xff\xff\xfc\x00\x00\x00\x00\x0f\xff\xfc
'
\
b'
\x00\x3f\xff\xf0\x00\xc0\x00\xc0\x03\x00\x03\x00\x0c\x00\x0c\x00
'
\
b'
\x3f\xff\xf0\x00\xff\xff\xc0\x00\x00\x00\x00\xff\xff\xff\xc3\xff
'
\
b'
\xff\xff\x0e\x00\x00\x1c\x38\x00\x00\x70\xe1\xff\xe1\xc0\x07\xff
'
\
b'
\x80\x00\x18\x0e\x00\x00\x60\x38\x00\x03\x80\xe0\x00\x0e\x03\x83
'
\
b'
\x00\x70\x0e\x0c\x03\x80\x38\x30\xfc\x00\x7f\x81\xc0\x01\xfe\x00
'
\
b'
\x00\x00\x00\x00\x00\xec\x00\x00\x03\x38\x00\x00\x0c\x60\x0f\xfc
'
\
b'
\x71\xc0\x3f\xf1\x82\x00\x01\xcf\xff\xc0\x06\x3f\xff\x08\x19\xc1
'
\
b'
\x80\x30\x67\x06\x00\xe1\xbc\x18\x01\xcf\xf0\x60\x03\x36\xff\xfc
'
\
b'
\x0e\xcb\xff\xf0\x1f\x0c\x18\x00\x3c\x30\x60\x00\xe0\xc1\x80\x03
'
\
b'
\x83\x06\x00\x0f\x0c\x18\x00\x3c\x3f\xff\x01\xf8\xff\xfc\x0e\x63
'
\
b'
\x06\x00\x30\xcc\x18\x01\xc2\x30\x60\x0e\x00\xc1\x80\x70\x03\xff
'
\
b'
\xf8\x80\x0f\xff\xe0\x00\x30\x00\x00\x00\xc0\x00\x00\x00\x00\x00
'
\
b'
\x00\x03\x90\x00\x00\x0e\xf0\x00\x00\x38\xf0\x00\x00\xe1\xe0\x00
'
\
b'
\x03\x81\x00\xff\xff\xff\x03\xff\xff\xfc\x0c\x00\x60\x00\x30\x01
'
\
b'
\x80\x00\xc0\x06\x08\x03\x00\x18\x30\x0f\xfc\x60\xc0\x3f\xf1\x87
'
\
b'
\x00\xc0\xc7\x18\x03\x03\x1c\xe0\x0c\x0c\x33\x00\x30\x30\xdc\x00
'
\
b'
\xc0\xc3\x60\x03\x07\x0f\x80\x0c\x1c\x3c\x00\x70\x70\x70\x01\xc1
'
\
b'
\x83\x81\x86\x7e\x1f\x06\x19\xf8\xec\x30\xe0\x07\x38\xc3\x80\x78
'
\
b'
\x73\x1c\x03\xc0\xfc\x30\x04\x01\xe0\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x0f\xff\xf8\x00\x3f\xff\xe7\xff\x06\x00\x1f
'
\
b'
\xfc\x38\x00\x03\x00\xc0\x00\x0c\x03\x00\x00\x30\x0c\x00\x00\xc0
'
\
b'
\x30\x00\x03\x01\xc0\x00\x0c\x06\x00\x00\x30\x1f\xff\x00\xc0\x7f
'
\
b'
\xfc\x03\x00\x00\x70\x0c\x00\x01\xc0\x30\x00\x07\x00\xc0\x00\x1c
'
\
b'
\x03\x18\x00\x60\x0f\xe0\x01\x83\xff\x00\x06\x1f\xc0\x00\x18\x70
'
\
b'
\x00\x00\x60\x00\x00\x03\x80\x00\x00\x0e\x00\x00\x00\x30\x00\x00
'
\
b'
\x7f\xc0\x00\x01\xfe\x00\x00\x00\x00\x00\x00\x18\x00\x00\x00\x60
'
\
b'
\x00\x80\x01\x80\x03\x80\x06\x00\x0f\x00\x18\x00\x0e\x00\x60\x00
'
\
b'
\x1c\x01\xc0\x80\x20\x07\x07\x00\x3f\xdc\x38\x00\xff\x71\xc0\x00
'
\
b'
\x0d\xee\x00\x00\x77\xf0\x00\x01\x9b\x80\x00\x06\x6c\x00\x0c\x19
'
\
b'
\xb0\x00\x70\xc6\x60\x01\x83\x19\x80\x0e\x1c\x63\x00\x30\x61\x8e
'
\
b'
\x01\xc3\x86\x18\x06\x1c\x18\x70\x38\xe0\x60\xf0\xc7\x81\x81\xe3
'
\
b'
\x0c\x06\x03\x00\x20\x18\x00\x00\x00\x60\x00\x00\x1f\x80\x00\x00
'
\
b'
\x3c\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x0c\x00\x03\xff\xff
'
\
b'
\xff\x0f\xff\xff\xfc\x38\x00\x00\x70\xe0\xc0\xc1\xc3\x83\x03\x07
'
\
b'
\x0f\xff\xff\xfc\x07\xff\xff\x80\x00\xc0\xc0\x00\x03\x03\x00\x01
'
\
b'
\xff\xff\xc0\x07\xff\xff\x00\x00\xc0\xc0\x00\x03\x03\x00\x0f\xff
'
\
b'
\xff\xfc\x3f\xff\xff\xf0\x01\x80\x60\x00\x0c\xc0\xe0\x00\xe7\xe1
'
\
b'
\xc0\x07\x03\xe3\xc0\x78\x01\x87\xc7\xc0\x00\x07\x0c\x3e\x00\x00
'
\
b'
\x00\xff\x80\x00\x00\x1f\xc0\x00\x00\x0f\xc0\x00\x00\x03\x00\x00
'
\
b'
\x00\x00\x00\x20\x00\x00\x00\xe1\xff\xfe\x01\x87\xff\xf8\x03\x00
'
\
b'
\x00\x60\x0c\x00\x01\x80\x00\x00\x06\x00\x00\x00\x18\x19\xff\xfc
'
\
b'
\x60\x67\xff\xf1\x81\x86\x03\x06\x06\x18\x0c\x18\x18\x7f\xf0\x60
'
\
b'
\x61\xff\xc1\x81\x86\x03\x06\x06\x18\x0c\x18\x18\x60\x30\x60\x61
'
\
b'
\xff\xc1\x81\x87\xff\x06\x06\x18\x0c\x18\x18\x60\x30\x60\x61\x8f
'
\
b'
\xf9\x81\xbf\xff\xe6\x06\x7c\x0c\x18\x18\x00\x30\x60\x60\x00\xc1
'
\
b'
\x81\x80\x00\x06\x06\x00\x01\xf8\x18\x00\x03\xc0\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x07\xff\xff\xfc\x1f\xff\xff\xf0\x60\x00\x00\x01\x80
'
\
b'
\x00\x00\x06\x00\x00\x80\x18\x00\xff\x00\x61\xff\xfc\x01\x87\xf0
'
\
b'
\x00\x06\x18\x00\x00\x18\x60\x00\x00\x61\x80\x00\x01\x87\xff\xfe
'
\
b'
\x06\x1f\xff\xf8\x18\x60\x18\x00\x61\x80\x60\x01\x86\x01\x80\x06
'
\
b'
\x18\x06\x00\x18\x60\x18\x00\x63\x80\x60\x01\x8c\x01\x80\x06\x70
'
\
b'
\x06\x00\x19\xc0\x18\x00\x66\x00\x60\x01\x80\x00\x00\x07\xff\xff
'
\
b'
\xfc\x1f\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x7f\xff\xff\x81\xff\xff\xfe\x00\x00\xc0\x00\x01
'
\
b'
\x83\x00\x00\x06\x0f\xfe\x00\x18\x3f\xf8\x00\x60\xc0\x00\x01\x83
'
\
b'
\x00\x00\xff\xff\xff\xc3\xff\xff\xff\x00\x60\x00\x00\x01\x80\x00
'
\
b'
\x00\x07\xff\xff\x00\x3f\xff\xfc\x00\xc0\x00\x00\x03\x00\x00\x00
'
\
b'
\x0f\xff\xff\x80\x3f\xff\xfe\x00\x00\x00\x18\x08\x00\x30\x60\x31
'
\
b'
\x8c\x61\x80\xc6\x30\xc6\x07\x18\x63\x18\x18\x61\x80\xe0\xe0\xc0
'
\
b'
\x3f\x01\x00\x00\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x01\xc0\x60
'
\
b'
\x00\x06\x03\xc0\x00\x38\x07\x80\x01\xc0\x0f\x00\x0e\x00\x1e\x00
'
\
b'
\x78\x00\x38\x03\xc0\x00\x70\x1e\x00\x00\xe0\xf1\x00\x31\xc1\x8c
'
\
b'
\x00\xc2\x00\x38\x07\x00\x00\x60\x18\x00\x01\xc0\xe0\x00\x03\x03
'
\
b'
\x00\x00\x0e\x1c\x00\x00\x1c\xe0\x00\x00\x3f\x00\x00\x00\xfc\x00
'
\
b'
\x00\x01\xe0\x00\x00\x0f\xc0\x00\x00\x7f\x80\x00\x07\xcf\x80\x00
'
\
b'
\x3c\x0f\x80\x07\xe0\x1f\x80\xfe\x00\x1f\xe3\xe0\x00\x1f\x0c\x00
'
\
b'
\x00\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x0f\xfe\x00\x60\x3f
'
\
b'
\xf8\x3f\xfc\x00\x60\xff\xf0\x01\x80\x18\x00\x06\x00\x60\x00\x18
'
\
b'
\x01\x80\x00\x60\x06\x00\x01\x83\xff\xe0\x06\x0f\xff\xbf\xf8\x00
'
\
b'
\xc0\xff\xe0\x03\x03\x81\x80\x0c\x0e\x00\x06\x30\x38\x00\x18\xc0
'
\
b'
\xe0\x00\x63\xfb\x80\x01\x8f\xee\x01\x06\x30\x38\x06\x18\xc0\xe0
'
\
b'
\x18\x73\x03\x80\xc1\xcc\x07\xff\x0d\xb0\x1f\xf8\x37\xc0\x00\x00
'
\
b'
\xcf\x80\x00\x03\x0f\xff\xff\x98\x0f\xff\xfc\x20\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x1f\xff\xff\xfe\x7f\xff\xff\xf8\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x40\xc0\x00\x01\x83\x00\x00\x06\x0c\x00\x00\x38\x30\x00\x00\xc0
'
\
b'
\xc0\x00\x07\x03\x00\x00\x1f\xff\xff\x80\x7f\xff\xfe\x03\x80\xc0
'
\
b'
\x00\x1c\x03\x00\x00\x70\x0c\x00\x03\x80\x30\x00\x04\x00\xc0\x00
'
\
b'
\x00\x03\x00\x00\x00\x0c\x00\x00\x7f\xff\xfc\x01\xff\xff\xf0\x00
'
\
b'
\x03\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03
'
\
b'
\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x3f\xff\xff
'
\
b'
\xf0\xff\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00
'
\
b'
\x07\x00\x00\x00\x18\x1f\xff\x00\xf0\x7f\xfc\x03\xe0\x06\x00\x1d
'
\
b'
\xc0\x30\x00\x63\x80\xc0\x03\x07\x3f\xfc\x1d\x0e\xff\xf0\xe6\x1b
'
\
b'
\x01\xc7\x0c\x4c\x67\x08\x38\x31\x9c\x00\x00\xc6\x70\x00\x03\x19
'
\
b'
\xc1\xff\x8c\x67\x07\xfe\x31\x9c\x00\x18\xc4\x70\x00\xc3\x31\xc0
'
\
b'
\x03\x0c\xc7\x00\x18\x33\x1c\x0c\xe0\xcc\x70\x3b\x00\x30\x00\x78
'
\
b'
\x01\xb0\x00\xe0\x06\xe0\x01\xc0\x30\xe0\x03\x83\x81\xc0\x06\x3c
'
\
b'
\x03\x80\x00\xe0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00
'
\
b'
\x00\x1c\x00\x00\x00\x38\x00\x00\x00\x70\x00\x00\x00\xe0\x00\x00
'
\
b'
\x01\xc0\x00\x00\x07\x00\x00\x00\x1e\x00\x00\x00\x78\x00\x00\x01
'
\
b'
\xf0\x00\x00\x06\xc0\x00\x00\x3b\x80\x00\x00\xe6\x00\x00\x07\x1c
'
\
b'
\x00\x00\x1c\x30\x00\x00\x60\xe0\x00\x03\x81\xc0\x00\x1c\x07\x00
'
\
b'
\x00\x70\x0e\x00\x03\x80\x1c\x00\x1c\x00\x70\x00\xe0\x00\xf0\x07
'
\
b'
\x80\x01\xe0\x7c\x00\x03\xc3\xc0\x00\x07\x0e\x00\x00\x0c\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x06\x00\x07\x00\x18\x0c\x0e\x00\x60
'
\
b'
\x70\x1c\x7f\xfb\x80\x39\xff\xec\x00\x60\x18\x70\x00\x00\x63\x80
'
\
b'
\x00\x01\x9c\x00\x00\x06\x70\x00\x0f\xff\xfe\x7f\x3f\xff\xf9\xfc
'
\
b'
\x01\xe0\x00\x30\x0f\x00\x00\xc0\x70\x00\x03\x07\xff\xe0\x0c\x7f
'
\
b'
\xff\x80\x37\xf0\x06\x00\xde\xc0\x18\x03\x23\x00\x60\x0c\x0f\xff
'
\
b'
\x80\x32\x3f\xfe\x00\xd8\xc0\x18\x03\xe3\x00\x60\x1f\x0c\x01\x80
'
\
b'
\x78\x30\x06\x03\xc0\xff\xf8\x04\x03\xff\xe0\x00\x0c\x01\x80\x00
'
\
b'
\x00\x00\x00\x03\x00\x00\x00\x1c\x00\x00\x00\x60\x00\x00\x01\x80
'
\
b'
\x00\x00\x0e\x00\x00\x3f\xff\xff\xf0\xff\xff\xff\xc0\x06\x00\x00
'
\
b'
\x00\x38\x0c\x00\x00\xc0\x30\x00\x07\x00\xc0\x00\x38\x03\x00\x00
'
\
b'
\xc0\x0c\x00\x07\x00\x30\x00\x3c\x7f\xff\x81\xf1\xff\xfe\x1e\xc0
'
\
b'
\x0c\x00\x33\x00\x30\x00\x8c\x00\xc0\x00\x30\x03\x00\x00\xc0\x0c
'
\
b'
\x00\x03\x00\x30\x00\x0c\x00\xc0\x00\x30\x03\x00\x00\xc0\x0c\x00
'
\
b'
\x03\x3f\xff\xf0\x0c\xff\xff\xc0\x30\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x03\xff\xff\xff\x0f\xff\xff\xfc\x00\x07
'
\
b'
\x00\x00\x00\x1c\x00\x00\x00\x60\x00\x00\x01\x80\x00\x07\xff\xff
'
\
b'
\x80\x1f\xff\xfe\x00\x70\x00\x18\x01\xc0\x00\x60\x07\x00\x01\x80
'
\
b'
\x1c\x00\x06\x00\x70\x00\x18\x01\xc0\x00\x60\x07\xff\xff\x80\x1f
'
\
b'
\xff\xfe\x00\x70\x00\x18\x01\xc0\x00\x60\x07\x00\x01\x80\x1c\x00
'
\
b'
\x06\x00\x70\x00\x18\x01\xc0\x00\x60\x07\xff\xff\x80\x1f\xff\xfe
'
\
b'
\x00\x70\x00\x18\x01\xc0\x00\x60\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x07\x80\x00\x00\x1f\x00\x00\x00\x7c\x00\x00\x00\xf0
'
\
b'
\x00\x00\x00\xc0\x00\x00\x07\x00\x00\x00\x18\x00\x00\x00\xc0\x00
'
\
b'
\x00\x0e\x00\x00\x00\x30\x00\x00\x00\x00\x60\x00\x00\x01\xc0\x00
'
\
b'
\x00\x03\x00\x00\x00\x0e\x00\x00\x00\x1c\x00\x00\x00\x40\x00\x1f
'
\
b'
\xff\xff\x80\x7f\xff\xff\x00\x00\x00\x38\x00\x00\x01\xc0\x00\x00
'
\
b'
\x0e\x00\x00\x00\x38\x00\x00\x01\xc0\x00\x00\x0e\x00\x00\x00\x70
'
\
b'
\x00\x00\x03\x80\x00\x00\x1c\x00\x00\x01\xe0\x00\x00\x0f\x00\x00
'
\
b'
\x00\x78\x00\x00\x03\x80\x00\x00\x3c\x00\x00\x07\xe0\x00\x00\x3f
'
\
b'
\x00\x00\x01\xcf\x00\x00\x0e\x0f\xff\xfc\x30\x0f\xff\xf0\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x60\x18\x00\x01\x80\xc0\x00\x0e\x03\x00
'
\
b'
\x00\x30\x1f\xfe\x01\xc0\xff\xf8\x06\x03\x80\x60\x18\x1f\x03\x00
'
\
b'
\xe0\xee\x1c\x07\x9f\x1c\xe0\x1e\x60\x3f\x00\xf9\x80\x78\x07\x66
'
\
b'
\x07\xf8\x1d\x98\xf8\xfc\x66\x7f\x80\xf8\x19\xb0\x38\x40\x66\x01
'
\
b'
\x80\x01\x98\x1c\x00\x06\x63\xc1\x80\x19\x8c\x0e\x00\x66\x00\xe0
'
\
b'
\x01\x98\x0f\x08\x06\x61\xf0\x70\x19\x8e\x03\x80\x60\x00\x3c\x01
'
\
b'
\x80\x07\xc0\x06\x00\xfc\x00\x18\x1f\xc0\x00\x60\x70\x00\x00\x00
'
\
b'
\x00\x00\x00\x01\x00\x00\x00\x0e\x00\x00\x00\x78\x00\x00\x01\xe0
'
\
b'
\x00\x00\x0f\xc0\x00\x00\x73\x80\x00\x03\x87\x80\x00\x3c\x0f\x00
'
\
b'
\x01\xe0\x1e\x00\x1f\x0c\x1e\x00\xf0\x30\x3c\x0f\x80\xc0\x7c\x38
'
\
b'
\x03\x00\x70\x00\x0c\x00\x40\x00\x30\x00\x00\x00\xc0\x00\x00\x03
'
\
b'
\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00
'
\
b'
\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00\x00
'
\
b'
\x00\x0c\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x03\x00\x00\x00\x1c\x00\x00\x00\x70\x00\x3f\xc1\x80\x00\xff\x0e
'
\
b'
\x00\x03\x0c\x3f\xff\x0c\x31\xff\xfc\x30\xc6\x00\x00\xc3\x38\x00
'
\
b'
\x03\x0d\xc0\x00\x0c\x37\x00\x00\x30\xcb\xff\xc0\xc3\x0f\xff\x03
'
\
b'
\x0c\x00\x78\x0c\x30\x03\xc0\x30\xc0\x1c\x00\xc3\x00\xe0\x03\x0c
'
\
b'
\x07\x00\x0f\xf0\x38\x00\x3f\xc1\xc0\x00\xc0\x0e\x00\x03\x00\x70
'
\
b'
\x01\x8c\x01\x80\x06\x00\x0e\x00\x18\x00\x30\x00\xe0\x00\xe0\x03
'
\
b'
\x00\x01\xff\xfc\x00\x03\xff\xe0\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x07\xff\xff\x80\x1f\xff\xfe\x00\x70\x00\x18\x01\xc0
'
\
b'
\x00\x60\x07\x00\x01\x80\x1c\x00\x06\x00\x70\x00\x18\x01\xc0\x00
'
\
b'
\x60\x07\x00\x01\x80\x1c\x00\x06\x00\x70\x00\x18\x01\xff\xff\xe0
'
\
b'
\x07\xff\xff\x80\x1c\x00\x06\x00\x70\x00\x18\x01\xc0\x00\x60\x07
'
\
b'
\x00\x01\x80\x1c\x00\x06\x00\x70\x00\x18\x01\xc0\x00\x60\x07\x00
'
\
b'
\x01\x80\x1c\x00\x06\x00\x7f\xff\xf8\x01\xff\xff\xe0\x07\x00\x01
'
\
b'
\x80\x1c\x00\x06\x00\x00\x00\x00\x00\x01\x80\x00\x00\x06\x00\x00
'
\
b'
\x00\x1c\x00\x00\x00\x30\x00\x00\x00\xe0\x00\x00\x01\x00\x00\x7f
'
\
b'
\xff\xff\x81\xff\xff\xfe\x06\x00\x00\x18\x18\x00\x00\x60\x60\x00
'
\
b'
\x01\x81\x80\x00\x06\x06\x00\x00\x18\x00\x70\x18\x00\x01\xc0\x60
'
\
b'
\x00\x06\x01\xc0\x00\x38\x03\x00\x00\xe0\x0c\x00\x03\x00\x38\x00
'
\
b'
\x1c\x00\x60\x00\x60\x01\xc0\x03\x80\x03\x80\x1c\x00\x06\x00\x70
'
\
b'
\x00\x1c\x03\x80\x00\x38\x1c\x00\x00\x70\xe0\x00\x01\xc1\x00\x00
'
\
b'
\x02\x00\x00\x00\x00\x00\x03\x80\x00\x00\x1c\x00\x00\x00\x78\x00
'
\
b'
\x00\x03\xf0\x00\x00\x1c\xe0\x00\x00\xe1\xc0\x00\x0f\x03\xc0\x00
'
\
b'
\x78\x07\x80\x03\xc4\x0f\x00\x3e\x38\x0f\x03\xe0\x78\x1f\x0f\x00
'
\
b'
\xf0\x1c\x30\x01\xe0\x20\x00\x01\x00\x00\x00\x00\x00\x01\xff\xff
'
\
b'
\xe0\x07\xff\xff\x80\x00\x00\x1c\x00\x00\x00\x70\x00\x00\x03\x80
'
\
b'
\x00\x00\x1c\x00\x00\x00\xe0\x00\x00\x03\x80\x00\x00\x1c\x00\x00
'
\
b'
\x00\xe0\x00\x00\x07\x00\x00\x00\x38\x00\x00\x00\x60\x00\x00\x00
'
\
b'
\x00\x00\x03\x00\x00\x00\x0c\x00\x00\x00\x33\xff\xfc\x00\xcf\xff
'
\
b'
\xf0\x63\x00\x60\x01\x8c\x01\x80\x06\x30\x06\x00\x18\xc7\xff\xe0
'
\
b'
\x63\x1f\xff\x81\x8c\x61\x86\x06\x31\x86\x18\x18\xc6\x18\x60\x63
'
\
b'
\x18\x61\x81\x8c\x61\x86\x06\x31\x86\x18\x18\xc6\x18\x60\x63\x18
'
\
b'
\x61\x81\x9c\x61\x86\x06\x61\x86\x18\x01\x86\x18\x60\x06\x18\x61
'
\
b'
\x80\x18\x61\x86\x00\xc1\x86\xf8\x03\x06\x19\xc0\x1c\x00\x60\x00
'
\
b'
\xe0\x01\x80\x07\x00\x06\x00\x0c\x00\x18\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x3f\xff\xff\xf0\xff\xff\xff\xc0\x00\x1c
'
\
b'
\x00\x00\x00\x70\x00\x00\x03\x80\x00\x00\x1c\x00\x00\x00\x70\x00
'
\
b'
\x00\x03\xc8\x00\x00\x1f\x70\x00\x00\xec\xe0\x00\x07\x31\xe0\x00
'
\
b'
\x38\xc3\xc0\x03\xc3\x07\x80\x1e\x0c\x07\x00\xf0\x30\x0f\x0f\x80
'
\
b'
\xc0\x1e\x38\x03\x00\x30\x40\x0c\x00\x00\x00\x30\x00\x00\x00\xc0
'
\
b'
\x00\x00\x03\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00
'
\
b'
\x00\x03\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x60\x00\x00\x01
'
\
b'
\x8f\xff\xe0\x0e\x3f\xff\x80\x70\xc0\x0e\x07\x83\x00\x38\x3c\x0f
'
\
b'
\xff\xe1\xc0\x3f\xff\x82\x0c\xc0\x0e\x00\x73\x00\x38\x03\x8f\xff
'
\
b'
\xe0\x1c\x3f\xff\x80\x70\x00\x00\x03\xc0\x00\x00\x1f\x3f\xff\xf1
'
\
b'
\xfc\xff\xff\xc7\x70\x00\x30\x19\xc0\x00\xc0\x07\x00\x03\x00\x1c
'
\
b'
\xff\xff\xc0\x73\xff\xff\x01\xc0\x00\xc0\x07\x0e\x03\x00\x1c\x1c
'
\
b'
\x0c\x00\x70\x38\x30\x01\xc0\x70\xc0\x07\x00\x03\x00\x1c\x00\xfc
'
\
b'
\x00\x70\x03\xe0\x00\x00\x00\x00\x04\x00\x00\x00\x38\x7f\xff\x80
'
\
b'
\x71\xff\xfe\x00\xe0\x00\x18\x01\x80\x00\x60\x07\x00\x01\x81\x80
'
\
b'
\x00\x06\x06\x00\x00\x18\x18\x00\x00\x60\x60\x00\x01\x81\x80\x00
'
\
b'
\x06\x06\x00\x00\x18\x18\x00\x00\x60\x60\x00\x01\x81\x80\x00\x06
'
\
b'
\x06\x00\x00\x18\x18\x00\x00\x60\x60\x00\x01\x81\x80\x00\x06\x06
'
\
b'
\x00\x00\x18\x18\x00\x00\x60\x60\x00\x01\x81\x80\x00\x06\x06\x00
'
\
b'
\x00\x18\x18\x00\x00\x60\x60\x00\x01\x81\x80\x00\xfe\x06\x00\x03
'
\
b'
\xf0\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xff\xf0
'
\
b'
\x00\x03\xff\xc0\x00\x0c\x00\x00\x00\x30\x00\x03\xff\xff\xfc\x0f
'
\
b'
\xff\xff\xf0\x30\x0c\x01\x80\xc0\x30\x06\x03\x00\xff\xb8\x0c\xff
'
\
b'
\xfc\x00\x33\xcc\x00\x80\xc0\x30\x06\x03\x00\xff\xf8\x0c\x03\xff
'
\
b'
\xc0\x30\x00\x00\x00\xc0\x00\x00\x03\x07\xfe\x00\x0c\x1f\xf8\x00
'
\
b'
\x30\x60\xe0\x01\xc1\x83\x80\x06\x06\x0e\x08\x18\x38\x38\x30\x60
'
\
b'
\xc0\xe0\xc3\x8f\x03\x83\x0c\xf8\x07\xfc\x33\x80\x1f\xe0\x00\x00
'
\
b'
\x00\x00\x00\x03\x00\x04\x00\x0c\x00\x38\x00\x30\x00\x70\xff\xff
'
\
b'
\xc0\xe3\xff\xff\x01\xc0\x0c\x00\x03\x00\x30\x00\x08\x00\xc0\x00
'
\
b'
\x01\xff\xfe\x00\x07\xff\xf8\x00\x18\x30\x60\xfc\x60\xc1\x83\xf1
'
\
b'
\x83\x06\x00\xc7\xff\xf8\x03\x1f\xff\xe0\x0c\x03\xe0\x00\x30\x0f
'
\
b'
\xc0\x00\xc0\x6f\xc0\x03\x03\x33\x80\x0c\x1c\xc7\x00\x31\xe3\x0e
'
\
b'
\x00\xcf\x0c\x1c\x03\x30\x30\x20\x1e\x00\xc0\x01\xfc\x03\x00\x0f
'
\
b'
\x3e\x00\x02\x70\x3f\xff\xf0\x80\x1f\xff\xc0\x00\x00\x00\x00\x18
'
\
b'
\x06\x00\x00\x60\x18\x00\xff\xff\xff\xc3\xff\xff\xff\x00\x18\x06
'
\
b'
\x00\x00\x60\x18\x00\x0f\xff\xfe\x00\x30\x00\x38\x00\xc0\x00\xe0
'
\
b'
\x03\x00\x03\x80\x0f\xff\xfe\x00\x30\x00\x38\x00\xc0\x00\xe0\x03
'
\
b'
\x00\x03\x80\x0f\xff\xfe\x00\x0e\x00\x00\x00\x7f\xff\xf8\x03\xff
'
\
b'
\xff\xe0\x1c\x06\x01\x80\xf0\x38\x06\x07\xc1\xf0\x38\x7b\x0e\xf8
'
\
b'
\xc0\xcc\xe0\xfb\x00\x37\x00\xcc\x00\xff\xfe\x30\x03\xff\xf8\xc0
'
\
b'
\x00\x00\x3f\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x03\x00\x00\x00
'
\
b'
\x0c\x00\x03\xff\xff\xff\x0f\xff\xff\xfc\x00\x03\x00\x00\x00\x0c
'
\
b'
\x00\x00\x7f\xff\xf8\x01\xff\xff\xe0\x06\x03\x01\x80\x18\x0c\x06
'
\
b'
\x00\x7f\xff\xf8\x01\xff\xff\xe0\x00\x03\x00\x00\x00\x0c\x00\x00
'
\
b'
\xff\xff\xf8\x03\xff\xff\xe0\x00\x03\x01\x80\xff\xff\xff\xe3\xff
'
\
b'
\xff\xff\x80\x00\xc0\x60\x00\x03\x01\x80\x00\x0c\x06\x00\xff\xff
'
\
b'
\xf8\x03\xff\xff\xe0\x00\x03\x01\x80\x00\x0c\x00\x00\x07\xf0\x00
'
\
b'
\x00\x0f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f
'
\
b'
\x80\x00\x00\xc7\x00\x00\x06\x0c\x00\x00\x18\x10\x00\x00\x60\x40
'
\
b'
\x00\x01\x83\x00\x00\x03\x1c\x00\x00\x07\xe0\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x1c\x00\x04\x00\x60\x00\x30\x01\x80\x00
'
\
b'
\xe0\x0e\x00\x01\xc7\xff\xff\x03\x1f\xff\xfc\x0e\x07\x00\x00\x18
'
\
b'
\x18\x00\x00\x60\x60\x00\x00\x03\x8c\x00\x00\x0c\x30\x00\x00\x70
'
\
b'
\xc0\x00\x01\x83\x00\x00\x0f\xff\xf8\x00\x3f\xff\xe0\x08\x00\xc0
'
\
b'
\x00\x70\x03\x00\x01\x80\x0c\x00\x0e\x0e\x31\x80\x30\x30\xc6\x00
'
\
b'
\xc1\xc3\x0c\x07\x06\x0c\x38\x18\x38\x30\x60\xe1\xc0\xc1\xc3\x06
'
\
b'
\x03\x03\x1c\x18\x0c\x0c\x00\x03\xf0\x00\x00\x07\x80\x00\x00\x00
'
\
b'
\x00\x00\x00\x0c\x00\x18\x00\x70\x00\x70\x01\xc0\x00\xe0\x07\x00
'
\
b'
\x01\x80\x1c\x00\x07\x00\x70\x00\x0c\xff\xff\xc0\x03\xff\xff\x00
'
\
b'
\x00\x18\x00\x00\x00\x60\x00\x00\x01\x80\x03\xf0\x0f\x00\x0f\xc0
'
\
b'
\x3e\x00\x03\x00\xdc\x00\x0c\x07\x38\x00\x30\x18\x70\x00\xc0\xe0
'
\
b'
\xe0\x03\x07\x01\xc0\x0c\x3c\x03\x00\x31\xe0\x0e\x00\xcf\x00\x1c
'
\
b'
\x03\x30\x00\x20\x3e\x00\x00\x01\xdc\x00\x00\x0e\x3e\x00\x02\x70
'
\
b'
\x3f\xff\xf0\x80\x3f\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x1f\xff\xff\x00\x7f\xff\xfc\x01\xc0\x00\x70\x07\x00\x01
'
\
b'
\xc0\x1c\x00\x07\x00\x70\x00\x1c\x01\xc0\x00\x70\x07\x00\x01\xc0
'
\
b'
\x1c\x00\x07\x00\x70\x00\x1c\x01\xff\xff\xf0\x07\xff\xff\xc0\x1c
'
\
b'
\x07\x00\x00\x70\x0c\x00\x01\x80\x30\x00\x06\x00\xe0\x00\x18\x01
'
\
b'
\x80\x00\x60\x07\x00\x03\x80\x0c\x00\x0e\x00\x38\x00\x30\x00\x70
'
\
b'
\x01\xc0\x00\xe0\x07\x00\x03\xc0\x18\x00\x07\x80\xe0\x00\x07\x87
'
\
b'
\x00\x00\x0f\x0c\x00\x00\x08\x00\x00\x00\x00\x02\x00\x00\x00\x1c
'
\
b'
\x00\x00\x00\xe1\xff\xfc\x07\x07\xff\xf0\x38\x00\x00\x01\xc0\x00
'
\
b'
\x00\x1e\x00\x00\x00\x30\x60\x00\x00\x03\x00\x00\x00\x1c\x00\x00
'
\
b'
\x00\xe3\xff\xfe\x07\x0f\xff\xf8\x3c\x00\x0c\x01\xf0\x00\x30\x0f
'
\
b'
\xc0\x00\xc0\x7b\x00\x03\x00\xcc\x00\x0c\x00\x30\x00\x30\x00\xc0
'
\
b'
\x00\xc0\x03\x00\x03\x00\x0c\x00\x0c\x00\x30\x00\x30\x00\xc0\x00
'
\
b'
\xc0\x03\x00\x03\x00\x0c\x00\x0c\x00\x30\x00\x30\x00\xc0\x1f\xc0
'
\
b'
\x03\x00\x7e\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x40\x30\x00\x03
'
\
b'
\xc0\xc0\x00\x07\xc3\x00\x00\x07\x8c\x00\x00\x06\x30\x00\x00\x08
'
\
b'
\xc0\x00\x30\x03\x00\x01\xf0\x0c\x00\x01\xf0\x30\x00\x01\xe0\xc0
'
\
b'
\x00\x01\x87\x00\x00\x00\x1c\x00\x00\x00\x60\x00\x3f\xff\xff\xf0
'
\
b'
\xff\xff\xff\xc0\x00\x38\x00\x00\x00\xc0\x00\x00\x07\x00\x00\x00
'
\
b'
\x19\x00\x00\x00\xef\x00\x00\x07\x0f\x00\x00\x38\x0f\x00\x03\xc0
'
\
b'
\x1e\x00\x1e\x00\x1c\x03\xf0\x00\x3c\x3f\x00\x00\x70\x60\x00\x00
'
\
b'
\x80\x00\x00\x00\x00\x06\x1c\x00\x00\x18\x70\x00\x00\x61\xc0\x00
'
\
b'
\x01\x87\x00\x00\x06\x1c\x00\x3f\xf8\x7f\xf0\xff\xe1\xff\xc0\x01
'
\
b'
\x87\x00\x00\x06\x1c\x00\x00\x18\x70\x00\x00\x61\xc0\x00\x01\x87
'
\
b'
\x00\x07\xfe\x1f\xfc\x1f\xf8\x7f\xf0\x00\x61\xc0\x00\x01\x87\x00
'
\
b'
\x00\x06\x1c\x00\x00\x18\x70\x00\x00\x61\xc0\x03\xff\x87\xff\x8f
'
\
b'
\xfe\x1f\xfe\x00\x18\x70\x00\x00\x61\xc0\x00\x01\x87\x00\x00\x06
'
\
b'
\x1c\x00\x00\x18\x70\x00\x00\x61\xc0\x00\x01\x87\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x03\x00\x60\x00\x0c\x01\xc0\x00\x30\x03\x80\x00\xc0
'
\
b'
\x07\x00\x03\x00\x0e\xff\xff\xc0\x03\xff\xff\x00\x00\x00\xc0\x00
'
\
b'
\x00\x03\x00\x00\x00\x0c\x00\x00\xc0\x30\x0f\xc3\x80\xc0\x3f\x06
'
\
b'
\x03\x00\x0c\x0c\x0c\x00\x30\x38\x30\x00\xc0\x60\xc0\x03\x01\x83
'
\
b'
\x00\x0c\x00\x0c\x00\x30\x00\x30\x00\xc0\x00\xc0\x03\x00\x07\x00
'
\
b'
\x0c\x03\xfc\x00\xf8\x07\xe0\x07\xf0\x00\x00\x38\xf8\x00\x39\xc0
'
\
b'
\xff\xff\xc2\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x01\x80\x00\x00\x06\x07\xff\xc0\x18\x1f\xff\x1c\x60\x60\x0c\x71
'
\
b'
\x81\x80\x31\xc6\x06\x38\xc7\x18\x18\xe3\x1c\x60\x63\x8c\x71\x81
'
\
b'
\x8e\x31\xc6\x06\x38\xc7\x18\x18\xe3\x1c\x60\x63\x8c\x71\x81\x8e
'
\
b'
\x31\xc6\x06\x38\xc7\x18\x18\xe3\x1c\x60\x63\x0c\x71\x81\x8c\x31
'
\
b'
\xc6\x06\x30\xc7\x18\x18\xc3\x1c\x60\x07\x00\x71\x80\x19\x00\x06
'
\
b'
\x00\xee\x00\x18\x03\x1c\x00\x60\x1c\x38\x01\x81\xe0\x70\x06\x0f
'
\
b'
\x00\xc3\xf8\x30\x00\x0f\xc0\x00\x00\x00\x00\x18\x01\x80\x00\x30
'
\
b'
\x06\x00\x3f\xfe\x18\x00\xff\xf8\x60\x00\x00\x01\x80\x03\xff\x3f
'
\
b'
\xf0\x08\x0c\xff\xc0\x20\x30\x63\x00\x80\xc1\x8c\x03\xff\x06\x30
'
\
b'
\x00\x01\xd8\xc0\x00\x03\xc3\x01\xff\xc7\x8c\x00\x1c\x0f\x30\x00
'
\
b'
\xc0\x7e\xc0\x0f\xf9\x9b\x43\xff\xee\x0c\x80\x30\x70\x36\x00\xc1
'
\
b'
\x80\xd8\x3f\x1c\x01\xe0\x78\x20\x07\x00\x00\x00\x00\x06\x00\x01
'
\
b'
\x80\x38\xc1\x87\x00\xc1\x86\x0c\x07\x06\x1c\x38\x18\x18\x30\x60
'
\
b'
\xc0\x60\xc1\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\xff\xff\xfc\x03\xff\xff\xf0\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x03\xff\xff\x00\x0f\xff\xfc\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x0f\xff\xff\xfc\x3f\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x00\x00\x0e\x00\xc0\x00\x38\x03\x00\x00\xe0\x0c\x0c\x03
'
\
b'
\x80\x30\xf8\x0f\xfc\xcf\x80\x3f\xf3\xf8\x00\xe0\x0f\x00\x03\x80
'
\
b'
\x30\x00\x0e\x00\xc0\x20\x38\x03\x00\xc0\xe0\x2c\x03\x03\x9f\xb0
'
\
b'
\x1c\x0f\xfc\xff\xe0\x7f\x01\xff\x80\xc0\x00\x00\x00\x00\xc0\x00
'
\
b'
\x00\x03\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x0f\xff\xff\xfc\x3f
'
\
b'
\xff\xff\xf0\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03
'
\
b'
\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x00\x00
'
\
b'
\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00\x00
'
\
b'
\x00\x0c\x00\x00\x00\x70\x00\x00\x01\xc0\x00\x00\x07\x00\x00\x00
'
\
b'
\x1e\x00\x00\x00\x78\x00\x00\x01\xe0\x00\x00\x0f\xc0\x00\x00\x3b
'
\
b'
\x00\x00\x00\xcc\x00\x00\x07\x38\x00\x00\x18\x60\x00\x00\xe1\xc0
'
\
b'
\x00\x03\x83\x00\x00\x1c\x0e\x00\x00\xe0\x1c\x00\x03\x80\x70\x00
'
\
b'
\x1c\x00\xe0\x00\xe0\x01\xc0\x0f\x00\x03\xc0\x78\x00\x07\x87\xc0
'
\
b'
\x00\x0f\x04\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70
'
\
b'
\x00\x00\x01\x80\x00\x07\xff\xff\x80\x1f\xff\xfe\x00\x60\x00\x38
'
\
b'
\x01\x80\x00\xe0\x07\xff\xff\x80\x1f\xff\xfe\x00\x60\x00\x38\x01
'
\
b'
\x80\x00\xe0\x07\xff\xff\x80\x1f\xff\xfe\x00\x60\x00\x38\x01\x80
'
\
b'
\x00\xe0\x07\xff\xff\x80\x1f\xff\xfe\x00\x00\x01\x80\x00\x00\xc3
'
\
b'
\x80\x00\x03\x03\x00\xff\xff\xff\xc3\xff\xff\xff\x00\x03\x60\x00
'
\
b'
\x00\x1c\xc0\x00\x01\xe3\xc0\x00\x1f\x03\xc0\x01\xf0\x07\xf0\x3f
'
\
b'
\x00\x07\xf0\xf0\x00\x01\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x1f\xff\xfe\x00\x7f\xff\xfc\x00\x00\x01\xe0\x00\x00\x0f
'
\
b'
\x00\x00\x00\xf0\x00\x00\x07\x80\x00\x00\x78\x00\x00\x03\xc0\x00
'
\
b'
\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00\x00\xff
'
\
b'
\xff\xff\xc3\xff\xff\xff\x00\x00\xc0\x00\x00\x03\x00\x00\x00\x0c
'
\
b'
\x00\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00\x00\x00\x0c\x00
'
\
b'
\x00\x00\x30\x00\x00\x00\xc0\x00\x00\x03\x00\x00\x03\xfc\x00\x00
'
\
b'
\x07\xe0\x00\x00\x00\x00\x00\x00\x00\x30\x00\x1d\xc0\xc0\x00\x63
'
\
b'
\x87\x00\x03\x07\x18\x00\x1c\x0e\x60\x00\xe0\x19\xff\xe7\x08\x2f
'
\
b'
\xff\x8c\x70\x30\x0c\x01\xc0\xc6\x30\x0f\x87\x18\xc0\x37\x18\x63
'
\
b'
\x01\xce\xe3\x9c\x0e\x1d\x0c\x60\x70\x30\x38\x03\xc0\x60\xe0\x1e
'
\
b'
\x01\xc3\x80\x2f\xfe\x0e\x00\x3f\xf0\x78\x00\xc0\xc1\xb0\x03\x03
'
\
b'
\x06\xc0\x0c\x0c\x3b\x00\x30\x30\xc6\x00\xc0\xc3\x18\x03\x03\x1c
'
\
b'
\x30\x0f\xfc\xe0\xe0\x3f\xf7\x01\xc0\xc0\x38\x03\x83\x00\x40\x04
'
\
b'
\x00\x00\x00\x00\x0e\x00\x00\x00\x38\x00\x00\x00\xc0\x00\x00\x03
'
\
b'
\x00\xff\xf0\x0c\x03\xff\xc0\x30\x0c\x07\x1f\xff\x30\x1c\x7f\xfc
'
\
b'
\xc0\x70\x18\x33\x01\xc0\x60\xcc\x07\x01\x83\x30\x1c\x0c\x1c\xc0
'
\
b'
\x70\x30\x73\x01\xc0\xc1\x8c\x07\x03\x06\x30\x1c\x18\x18\xc0\x70
'
\
b'
\x70\xe3\x01\xc0\xf3\x0c\x07\x01\xfc\x30\x1c\x01\xe0\xc0\x70\x03
'
\
b'
\x83\x01\xc0\x0f\x0c\x07\x00\x7e\x30\x1c\x03\x9c\xff\xf0\x1c\x33
'
\
b'
\xff\xc1\xe0\x0c\x07\x0f\x00\x30\x1c\x30\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x30\x06\x00\x00\xc0\x18\x00\x07\x70\x60\x40\x38\xc1\x87\x80
'
\
b'
\xc1\x86\xf8\x07\x07\x1f\x80\x3f\xfc\x70\x00\xff\xf9\x80\x03\x00
'
\
b'
\x66\x03\x80\x00\x18\x0c\x00\x00\x60\x30\x7f\xf1\xff\xc1\xff\xc7
'
\
b'
\xfe\x06\x03\x00\x00\x18\x0c\x60\x00\x7f\xf1\x80\x01\xff\xc6\x04
'
\
b'
\x06\x03\x18\x78\x18\x0c\x67\xc0\x60\x31\xfc\x01\xff\xc7\x80\x07
'
\
b'
\xff\x18\x00\x18\x0c\x60\x10\x60\x31\x80\x61\x80\xc6\x01\x86\x03
'
\
b'
\x18\x0c\x18\xfc\x7f\xf0\x63\xe0\xff\x80\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x18\x03\x83\x00\x70\x0e\x0c\x00\xe0\x38\x30\x01\xc0\xe0\xc0
'
\
b'
\x03\x03\x83\x00\x0c\xff\xff\xc0\x03\xff\xff\x00\x00\xe0\xc0\x00
'
\
b'
\x03\x83\x00\x00\x0e\x0c\x03\xf0\x38\x30\x0f\xc0\xe0\xc0\x03\x3f
'
\
b'
\xff\xf0\x0c\xff\xff\xc0\x30\x30\x30\x00\xc0\xc0\xc0\x03\x07\x03
'
\
b'
\x00\x0c\x18\x0c\x00\x30\xe0\x30\x00\xc3\x00\xc0\x03\x1c\x03\x00
'
\
b'
\x3e\x60\x0c\x01\xfc\x00\x00\x0e\x3c\x00\x02\x70\x3f\xff\xf0\x80
'
\
b'
\x3f\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
'
\
b'
\x00\x00\x7f\xff\xf0\x01\xff\xff\xc0\x07\x00\x03\x00\x1c\x00\x0c
'
\
b'
\x00\x70\x00\x30\x01\xc0\xc0\xc0\x07\x03\x03\x00\x1c\x1c\x0c\x00
'
\
b'
\x70\x70\x30\x01\xc1\xc0\xc0\x07\x07\x03\x00\x1c\x18\x0c\x00\x70
'
\
b'
\x60\x30\x01\xc1\x80\xc0\x07\x07\xc3\x00\x1c\x3f\x0c\x00\x70\xfc
'
\
b'
\x30\x00\x03\x70\x00\x00\x1d\xc0\x00\x00\xe7\x00\xc0\x07\x1c\x03
'
\
b'
\x00\x3c\x70\x0c\x03\xe1\xc0\x30\x7e\x03\xff\xc3\xe0\x0f\xfe\x04
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x01\xfe\x21\x86\x07\xf9
'
\
b'
\x86\x18\x18\x67\x18\xe0\x61\x8c\x63\x01\x86\x31\x8c\x06\x18\x66
'
\
b'
\x60\x18\x61\x99\x80\x7f\x84\x62\x01\xfe\x01\x80\x06\x19\xff\xfc
'
\
b'
\x18\x67\xff\xf0\x61\x80\x60\x01\x86\x01\x80\x06\x18\x06\x00\x18
'
\
b'
\x60\x18\x00\x7f\x80\x60\x01\xfe\xff\xff\x86\x1b\xff\xfe\x18\x60
'
\
b'
\x18\x00\x61\x80\x60\x01\x86\x01\x80\x0c\x18\x06\x00\x30\x60\x18
'
\
b'
\x00\xc1\x80\x60\x03\x06\x01\x80\x18\xf8\x06\x00\x21\xe0\x18\x00
'
\
b'
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xff\xff\xf0\xff
'
\
b'
\xff\xff\xc0\x03\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xc0
'
\
b'
\x00\x00\x03\x00\x00\x00\x0c\x00\x00\x00\x30\x00\x00\x00\xff\xfe
'
\
b'
\x00\x07\xff\xf8\x00\x1c\x00\x60\x00\x60\x01\x80\x01\x80\x06\x00
'
\
b'
\x06\x00\x18\x00\x38\x00\x60\x00\xc0\x01\x80\x03\x00\x0e\x00\x1c
'
\
b'
\x00\x38\x00\xe0\x00\xe0\x03\x80\x03\x00\x1c\x00\x0c\x00\xe0\x00
'
\
b'
\x30\x07\x00\x01\xc0\x78\x01\xfe\x00\xc0\x07\xf8\x00\x00\x00\x00
'
\
b'
\x00
'
WIDTHS
=
memoryview
(
_WIDTHS
)
OFFSETS
=
memoryview
(
_OFFSETS
)
BITMAPS
=
memoryview
(
_BITMAPS
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment